diff --git a/.gitignore b/.gitignore index b492910cc1..dda2e0ecd9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,14 @@ # Directory for creating releases -release +/release/ # Configuration files config.inc.php config.header.inc.php config.footer.inc.php # Upload/save dirs -upload -save +/upload/ +/save/ # For setup script -config +/config/ # ctags tags # Editor files @@ -22,12 +22,12 @@ phpmyadmin.wpj .idea *.sw[op] # Locales -locale +/locale/ # Backups *~ # Javascript sources -sources +/sources/ # API documentation -apidoc +/apidoc/ # Demo server revision-info.php diff --git a/Documentation.html b/Documentation.html index 2ff0881ba0..ed6a5ca817 100644 --- a/Documentation.html +++ b/Documentation.html @@ -1934,14 +1934,12 @@ $cfg['TrustedProxies'] =
Maximum number of characters shown in any non-numeric field on browse view. Can be turned off by a toggle button on the browse page.
-
$cfg['ModifyDeleteAtLeft'] boolean - $cfg['ModifyDeleteAtRight'] boolean +
$cfg['RowActionLinks'] string
Defines the place where table row links (Edit, Inline edit, Copy, - Delete) would be put when - tables contents are displayed (you may have them displayed both at the - left and at the right). - "Left" and "right" are parsed as "top" + Delete) would be put when tables contents are displayed (you may + have them displayed at the left side, right side, both sides or nowhere). + "left" and "right" are parsed as "top" and "bottom" with vertical display mode.
$cfg['DefaultDisplay'] string
diff --git a/js/codemirror/LICENSE b/js/codemirror/LICENSE new file mode 100644 index 0000000000..3f7c0bb187 --- /dev/null +++ b/js/codemirror/LICENSE @@ -0,0 +1,19 @@ +Copyright (C) 2011 by Marijn Haverbeke + +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. diff --git a/js/codemirror/lib/codemirror.js b/js/codemirror/lib/codemirror.js new file mode 100644 index 0000000000..844c54a3ff --- /dev/null +++ b/js/codemirror/lib/codemirror.js @@ -0,0 +1,2035 @@ +// All functions that need access to the editor's state live inside +// the CodeMirror function. Below that, at the bottom of the file, +// some utilities are defined. + +// CodeMirror is the only global var we claim +var CodeMirror = (function() { + // This is the function that produces an editor instance. It's + // closure is used to store the editor state. + function CodeMirror(place, givenOptions) { + // Determine effective options based on given values and defaults. + var options = {}, defaults = CodeMirror.defaults; + for (var opt in defaults) + if (defaults.hasOwnProperty(opt)) + options[opt] = (givenOptions && givenOptions.hasOwnProperty(opt) ? givenOptions : defaults)[opt]; + + var targetDocument = options["document"]; + // The element in which the editor lives. + var wrapper = targetDocument.createElement("div"); + wrapper.className = "CodeMirror"; + // This mess creates the base DOM structure for the editor. + wrapper.innerHTML = + '
' + // Wraps and hides input textarea + '
' + + '
' + + '
' + // Set to the height of the text, causes scrolling + '
' + + '
' + // Moved around its parent to cover visible view + '
' + + // Provides positioning relative to (visible) text origin + '
' + + '
 
' + // Absolutely positioned blinky cursor + '
' + // This DIV contains the actual code + '
'; + if (place.appendChild) place.appendChild(wrapper); else place(wrapper); + // I've never seen more elegant code in my life. + var inputDiv = wrapper.firstChild, input = inputDiv.firstChild, + scroller = wrapper.lastChild, code = scroller.firstChild, + measure = code.firstChild, mover = measure.nextSibling, + gutter = mover.firstChild, gutterText = gutter.firstChild, + lineSpace = gutter.nextSibling.firstChild, + cursor = lineSpace.firstChild, lineDiv = cursor.nextSibling; + if (options.tabindex != null) input.tabindex = options.tabindex; + if (!options.gutter && !options.lineNumbers) gutter.style.display = "none"; + + // Delayed object wrap timeouts, making sure only one is active. blinker holds an interval. + var poll = new Delayed(), highlight = new Delayed(), blinker; + + // mode holds a mode API object. lines an array of Line objects + // (see Line constructor), work an array of lines that should be + // parsed, and history the undo history (instance of History + // constructor). + var mode, lines = [new Line("")], work, history = new History(), focused; + loadMode(); + // The selection. These are always maintained to point at valid + // positions. Inverted is used to remember that the user is + // selecting bottom-to-top. + var sel = {from: {line: 0, ch: 0}, to: {line: 0, ch: 0}, inverted: false}; + // Selection-related flags. shiftSelecting obviously tracks + // whether the user is holding shift. reducedSelection is a hack + // to get around the fact that we can't create inverted + // selections. See below. + var shiftSelecting, reducedSelection, lastDoubleClick; + // Variables used by startOperation/endOperation to track what + // happened during the operation. + var updateInput, changes, textChanged, selectionChanged, leaveInputAlone; + // Current visible range (may be bigger than the view window). + var showingFrom = 0, showingTo = 0, lastHeight = 0, curKeyId = null; + // editing will hold an object describing the things we put in the + // textarea, to help figure out whether something changed. + // bracketHighlighted is used to remember that a backet has been + // marked. + var editing, bracketHighlighted; + // Tracks the maximum line length so that the horizontal scrollbar + // can be kept static when scrolling. + var maxLine = ""; + + // Initialize the content. Somewhat hacky (delayed prepareInput) + // to work around browser issues. + operation(function(){setValue(options.value || ""); updateInput = false;})(); + setTimeout(prepareInput, 20); + + // Register our event handlers. + connect(scroller, "mousedown", operation(onMouseDown)); + // Gecko browsers fire contextmenu *after* opening the menu, at + // which point we can't mess with it anymore. Context menu is + // handled in onMouseDown for Gecko. + if (!gecko) connect(scroller, "contextmenu", operation(onContextMenu)); + connect(code, "dblclick", operation(onDblClick)); + connect(scroller, "scroll", function() {updateDisplay([]); if (options.onScroll) options.onScroll(instance);}); + connect(window, "resize", function() {updateDisplay(true);}); + connect(input, "keyup", operation(onKeyUp)); + connect(input, "keydown", operation(onKeyDown)); + connect(input, "keypress", operation(onKeyPress)); + connect(input, "focus", onFocus); + connect(input, "blur", onBlur); + + connect(scroller, "dragenter", function(e){e.stop();}); + connect(scroller, "dragover", function(e){e.stop();}); + connect(scroller, "drop", operation(onDrop)); + connect(scroller, "paste", function(){focusInput(); fastPoll();}); + connect(input, "paste", function(){fastPoll();}); + connect(input, "cut", function(){fastPoll();}); + + // IE throws unspecified error in certain cases, when + // trying to access activeElement before onload + var hasFocus; try { hasFocus = (targetDocument.activeElement == input); } catch(e) { } + if (hasFocus) onFocus(); + else onBlur(); + + function isLine(l) {return l >= 0 && l < lines.length;} + // The instance object that we'll return. Mostly calls out to + // local functions in the CodeMirror function. Some do some extra + // range checking and/or clipping. operation is used to wrap the + // call so that changes it makes are tracked, and the display is + // updated afterwards. + var instance = { + getValue: getValue, + setValue: operation(setValue), + getSelection: getSelection, + replaceSelection: operation(replaceSelection), + focus: function(){focusInput(); onFocus(); fastPoll();}, + setOption: function(option, value) { + options[option] = value; + if (option == "lineNumbers" || option == "gutter") gutterChanged(); + else if (option == "mode" || option == "indentUnit") loadMode(); + else if (option == "readOnly" && value == "nocursor") input.blur(); + }, + getOption: function(option) {return options[option];}, + undo: operation(undo), + redo: operation(redo), + indentLine: operation(function(n) {if (isLine(n)) indentLine(n, "smart");}), + historySize: function() {return {undo: history.done.length, redo: history.undone.length};}, + matchBrackets: operation(function(){matchBrackets(true);}), + getTokenAt: function(pos) { + pos = clipPos(pos); + return lines[pos.line].getTokenAt(mode, getStateBefore(pos.line), pos.ch); + }, + cursorCoords: function(start){ + if (start == null) start = sel.inverted; + return pageCoords(start ? sel.from : sel.to); + }, + charCoords: function(pos){return pageCoords(clipPos(pos));}, + coordsChar: function(coords) { + var off = eltOffset(lineSpace); + var line = clipLine(Math.min(lines.length - 1, showingFrom + Math.floor((coords.y - off.top) / lineHeight()))); + return clipPos({line: line, ch: charFromX(clipLine(line), coords.x - off.left)}); + }, + getSearchCursor: function(query, pos, caseFold) {return new SearchCursor(query, pos, caseFold);}, + markText: operation(function(a, b, c){return operation(markText(a, b, c));}), + setMarker: addGutterMarker, + clearMarker: removeGutterMarker, + setLineClass: operation(setLineClass), + lineInfo: lineInfo, + addWidget: function(pos, node, scroll) { + var pos = localCoords(clipPos(pos), true); + node.style.top = (showingFrom * lineHeight() + pos.yBot + paddingTop()) + "px"; + node.style.left = (pos.x + paddingLeft()) + "px"; + code.appendChild(node); + if (scroll) + scrollIntoView(pos.x, pos.yBot, pos.x + node.offsetWidth, pos.yBot + node.offsetHeight); + }, + + lineCount: function() {return lines.length;}, + getCursor: function(start) { + if (start == null) start = sel.inverted; + return copyPos(start ? sel.from : sel.to); + }, + somethingSelected: function() {return !posEq(sel.from, sel.to);}, + setCursor: operation(function(line, ch) { + if (ch == null && typeof line.line == "number") setCursor(line.line, line.ch); + else setCursor(line, ch); + }), + setSelection: operation(function(from, to) {setSelection(clipPos(from), clipPos(to || from));}), + getLine: function(line) {if (isLine(line)) return lines[line].text;}, + setLine: operation(function(line, text) { + if (isLine(line)) replaceRange(text, {line: line, ch: 0}, {line: line, ch: lines[line].text.length}); + }), + removeLine: operation(function(line) { + if (isLine(line)) replaceRange("", {line: line, ch: 0}, clipPos({line: line+1, ch: 0})); + }), + replaceRange: operation(replaceRange), + getRange: function(from, to) {return getRange(clipPos(from), clipPos(to));}, + + operation: function(f){return operation(f)();}, + refresh: function(){updateDisplay(true);}, + getInputField: function(){return input;}, + getWrapperElement: function(){return wrapper;} + }; + + function setValue(code) { + history = null; + var top = {line: 0, ch: 0}; + updateLines(top, {line: lines.length - 1, ch: lines[lines.length-1].text.length}, + splitLines(code), top, top); + history = new History(); + } + function getValue(code) { + var text = []; + for (var i = 0, l = lines.length; i < l; ++i) + text.push(lines[i].text); + return text.join("\n"); + } + + function onMouseDown(e) { + var ld = lastDoubleClick; lastDoubleClick = null; + // First, see if this is a click in the gutter + for (var n = e.target(); n != wrapper; n = n.parentNode) + if (n.parentNode == gutterText) { + if (options.onGutterClick) + options.onGutterClick(instance, indexOf(gutterText.childNodes, n) + showingFrom); + return e.stop(); + } + + if (gecko && e.button() == 3) onContextMenu(e); + if (e.button() != 1) return; + // For button 1, if it was clicked inside the editor + // (posFromMouse returning non-null), we have to adjust the + // selection. + var start = posFromMouse(e), last = start, going; + if (!start) {if (e.target() == scroller) e.stop(); return;} + + if (!focused) onFocus(); + e.stop(); + if (ld && +new Date - ld < 400) return selectLine(start.line); + + setCursor(start.line, start.ch, true); + // And then we have to see if it's a drag event, in which case + // the dragged-over text must be selected. + function end() { + focusInput(); + updateInput = true; + move(); up(); + } + function extend(e) { + var cur = posFromMouse(e, true); + if (cur && !posEq(cur, last)) { + if (!focused) onFocus(); + last = cur; + setSelectionUser(start, cur); + updateInput = false; + var visible = visibleLines(); + if (cur.line >= visible.to || cur.line < visible.from) + going = setTimeout(operation(function(){extend(e);}), 150); + } + } + + var move = connect(targetDocument, "mousemove", operation(function(e) { + clearTimeout(going); + e.stop(); + extend(e); + }), true); + var up = connect(targetDocument, "mouseup", operation(function(e) { + clearTimeout(going); + var cur = posFromMouse(e); + if (cur) setSelectionUser(start, cur); + e.stop(); + end(); + }), true); + } + function onDblClick(e) { + var pos = posFromMouse(e); + if (!pos) return; + selectWordAt(pos); + e.stop(); + lastDoubleClick = +new Date; + } + function onDrop(e) { + var pos = posFromMouse(e, true), files = e.e.dataTransfer.files; + if (!pos || options.readOnly) return; + if (files && files.length && window.FileReader && window.File) { + var n = files.length, text = Array(n), read = 0; + for (var i = 0; i < n; ++i) loadFile(files[i], i); + function loadFile(file, i) { + var reader = new FileReader; + reader.onload = function() { + text[i] = reader.result; + if (++read == n) replaceRange(text.join(""), clipPos(pos), clipPos(pos)); + }; + reader.readAsText(file); + } + } + else { + try { + var text = e.e.dataTransfer.getData("Text"); + if (text) replaceRange(text, pos, pos); + } + catch(e){} + } + } + function onKeyDown(e) { + if (!focused) onFocus(); + + var code = e.e.keyCode; + // Tries to detect ctrl on non-mac, cmd on mac. + var mod = (mac ? e.e.metaKey : e.e.ctrlKey) && !e.e.altKey, anyMod = e.e.ctrlKey || e.e.altKey || e.e.metaKey; + if (code == 16 || e.e.shiftKey) shiftSelecting = shiftSelecting || (sel.inverted ? sel.to : sel.from); + else shiftSelecting = null; + // First give onKeyEvent option a chance to handle this. + if (options.onKeyEvent && options.onKeyEvent(instance, addStop(e.e))) return; + + if (code == 33 || code == 34) {scrollPage(code == 34); return e.stop();} // page up/down + if (mod && ((code == 36 || code == 35) || // ctrl-home/end + mac && (code == 38 || code == 40))) { // cmd-up/down + scrollEnd(code == 36 || code == 38); return e.stop(); + } + if (mod && code == 65) {selectAll(); return e.stop();} // ctrl-a + if (!options.readOnly) { + if (!anyMod && code == 13) {return;} // enter + if (!anyMod && code == 9 && handleTab(e.e.shiftKey)) return e.stop(); // tab + if (mod && code == 90) {undo(); return e.stop();} // ctrl-z + if (mod && ((e.e.shiftKey && code == 90) || code == 89)) {redo(); return e.stop();} // ctrl-shift-z, ctrl-y + } + + // Key id to use in the movementKeys map. We also pass it to + // fastPoll in order to 'self learn'. We need this because + // reducedSelection, the hack where we collapse the selection to + // its start when it is inverted and a movement key is pressed + // (and later restore it again), shouldn't be used for + // non-movement keys. + curKeyId = (mod ? "c" : "") + code; + if (sel.inverted && movementKeys.hasOwnProperty(curKeyId)) { + var range = selRange(input); + if (range) { + reducedSelection = {anchor: range.start}; + setSelRange(input, range.start, range.start); + } + } + fastPoll(curKeyId); + } + function onKeyUp(e) { + if (options.onKeyEvent && options.onKeyEvent(instance, addStop(e.e))) return; + if (reducedSelection) { + reducedSelection = null; + updateInput = true; + } + if (e.e.keyCode == 16) shiftSelecting = null; + } + function onKeyPress(e) { + if (options.onKeyEvent && options.onKeyEvent(instance, addStop(e.e))) return; + if (options.electricChars && mode.electricChars) { + var ch = String.fromCharCode(e.e.charCode == null ? e.e.keyCode : e.e.charCode); + if (mode.electricChars.indexOf(ch) > -1) + setTimeout(operation(function() {indentLine(sel.to.line, "smart");}), 50); + } + var code = e.e.keyCode; + // Re-stop tab and enter. Necessary on some browsers. + if (code == 13) {if (!options.readOnly) handleEnter(); e.stop();} + else if (!e.e.ctrlKey && !e.e.altKey && !e.e.metaKey && code == 9 && options.tabMode != "default") e.stop(); + else fastPoll(curKeyId); + } + + function onFocus() { + if (options.readOnly == "nocursor") return; + if (!focused && options.onFocus) options.onFocus(instance); + focused = true; + slowPoll(); + if (wrapper.className.search(/\bCodeMirror-focused\b/) == -1) + wrapper.className += " CodeMirror-focused"; + restartBlink(); + } + function onBlur() { + if (focused && options.onBlur) options.onBlur(instance); + clearInterval(blinker); + shiftSelecting = null; + focused = false; + wrapper.className = wrapper.className.replace(" CodeMirror-focused", ""); + } + + // Replace the range from from to to by the strings in newText. + // Afterwards, set the selection to selFrom, selTo. + function updateLines(from, to, newText, selFrom, selTo) { + if (history) { + var old = []; + for (var i = from.line, e = to.line + 1; i < e; ++i) old.push(lines[i].text); + history.addChange(from.line, newText.length, old); + while (history.done.length > options.undoDepth) history.done.shift(); + } + updateLinesNoUndo(from, to, newText, selFrom, selTo); + } + function unredoHelper(from, to) { + var change = from.pop(); + if (change) { + var replaced = [], end = change.start + change.added; + for (var i = change.start; i < end; ++i) replaced.push(lines[i].text); + to.push({start: change.start, added: change.old.length, old: replaced}); + var pos = clipPos({line: change.start + change.old.length - 1, + ch: editEnd(replaced[replaced.length-1], change.old[change.old.length-1])}); + updateLinesNoUndo({line: change.start, ch: 0}, {line: end - 1, ch: lines[end-1].text.length}, change.old, pos, pos); + } + } + function undo() {unredoHelper(history.done, history.undone);} + function redo() {unredoHelper(history.undone, history.done);} + + function updateLinesNoUndo(from, to, newText, selFrom, selTo) { + var recomputeMaxLength = false, maxLineLength = maxLine.length; + for (var i = from.line; i < to.line; ++i) { + if (lines[i].text.length == maxLineLength) {recomputeMaxLength = true; break;} + } + + var nlines = to.line - from.line, firstLine = lines[from.line], lastLine = lines[to.line]; + // First adjust the line structure, taking some care to leave highlighting intact. + if (firstLine == lastLine) { + if (newText.length == 1) + firstLine.replace(from.ch, to.ch, newText[0]); + else { + lastLine = firstLine.split(to.ch, newText[newText.length-1]); + var spliceargs = [from.line + 1, nlines]; + firstLine.replace(from.ch, firstLine.text.length, newText[0]); + for (var i = 1, e = newText.length - 1; i < e; ++i) spliceargs.push(new Line(newText[i])); + spliceargs.push(lastLine); + lines.splice.apply(lines, spliceargs); + } + } + else if (newText.length == 1) { + firstLine.replace(from.ch, firstLine.text.length, newText[0] + lastLine.text.slice(to.ch)); + lines.splice(from.line + 1, nlines); + } + else { + var spliceargs = [from.line + 1, nlines - 1]; + firstLine.replace(from.ch, firstLine.text.length, newText[0]); + lastLine.replace(0, to.ch, newText[newText.length-1]); + for (var i = 1, e = newText.length - 1; i < e; ++i) spliceargs.push(new Line(newText[i])); + lines.splice.apply(lines, spliceargs); + } + + + for (var i = from.line, e = i + newText.length; i < e; ++i) { + var l = lines[i].text; + if (l.length > maxLineLength) { + maxLine = l; maxLineLength = l.length; + recomputeMaxLength = false; + } + } + if (recomputeMaxLength) { + maxLineLength = 0; + for (var i = 0, e = lines.length; i < e; ++i) { + var l = lines[i].text; + if (l.length > maxLineLength) { + maxLineLength = l.length; maxLine = l; + } + } + } + + // Add these lines to the work array, so that they will be + // highlighted. Adjust work lines if lines were added/removed. + var newWork = [], lendiff = newText.length - nlines - 1; + for (var i = 0, l = work.length; i < l; ++i) { + var task = work[i]; + if (task < from.line) newWork.push(task); + else if (task > to.line) newWork.push(task + lendiff); + } + if (newText.length) newWork.push(from.line); + work = newWork; + startWorker(100); + // Remember that these lines changed, for updating the display + changes.push({from: from.line, to: to.line + 1, diff: lendiff}); + textChanged = {from: from, to: to, text: newText}; + + // Update the selection + function updateLine(n) {return n <= Math.min(to.line, to.line + lendiff) ? n : n + lendiff;} + setSelection(selFrom, selTo, updateLine(sel.from.line), updateLine(sel.to.line)); + + // Make sure the scroll-size div has the correct height. + code.style.height = (lines.length * lineHeight() + 2 * paddingTop()) + "px"; + } + + function replaceRange(code, from, to) { + from = clipPos(from); + if (!to) to = from; else to = clipPos(to); + code = splitLines(code); + function adjustPos(pos) { + if (posLess(pos, from)) return pos; + if (!posLess(to, pos)) return end; + var line = pos.line + code.length - (to.line - from.line) - 1; + var ch = pos.ch; + if (pos.line == to.line) + ch += code[code.length-1].length - (to.ch - (to.line == from.line ? from.ch : 0)); + return {line: line, ch: ch}; + } + var end; + replaceRange1(code, from, to, function(end1) { + end = end1; + return {from: adjustPos(sel.from), to: adjustPos(sel.to)}; + }); + return end; + } + function replaceSelection(code, collapse) { + replaceRange1(splitLines(code), sel.from, sel.to, function(end) { + if (collapse == "end") return {from: end, to: end}; + else if (collapse == "start") return {from: sel.from, to: sel.from}; + else return {from: sel.from, to: end}; + }); + } + function replaceRange1(code, from, to, computeSel) { + var endch = code.length == 1 ? code[0].length + from.ch : code[code.length-1].length; + var newSel = computeSel({line: from.line + code.length - 1, ch: endch}); + updateLines(from, to, code, newSel.from, newSel.to); + } + + function getRange(from, to) { + var l1 = from.line, l2 = to.line; + if (l1 == l2) return lines[l1].text.slice(from.ch, to.ch); + var code = [lines[l1].text.slice(from.ch)]; + for (var i = l1 + 1; i < l2; ++i) code.push(lines[i].text); + code.push(lines[l2].text.slice(0, to.ch)); + return code.join("\n"); + } + function getSelection() { + return getRange(sel.from, sel.to); + } + + var pollingFast = false; // Ensures slowPoll doesn't cancel fastPoll + function slowPoll() { + if (pollingFast) return; + poll.set(2000, function() { + startOperation(); + readInput(); + if (focused) slowPoll(); + endOperation(); + }); + } + function fastPoll(keyId) { + var missed = false; + pollingFast = true; + function p() { + startOperation(); + var changed = readInput(); + if (changed == "moved" && keyId) movementKeys[keyId] = true; + if (!changed && !missed) {missed = true; poll.set(80, p);} + else {pollingFast = false; slowPoll();} + endOperation(); + } + poll.set(20, p); + } + + // Inspects the textarea, compares its state (content, selection) + // to the data in the editing variable, and updates the editor + // content or cursor if something changed. + function readInput() { + if (leaveInputAlone) return; + var changed = false, text = input.value, sr = selRange(input); + if (!sr) return false; + var changed = editing.text != text, rs = reducedSelection; + var moved = changed || sr.start != editing.start || sr.end != (rs ? editing.start : editing.end); + if (!moved && !rs) return false; + if (changed) { + shiftSelecting = reducedSelection = null; + if (options.readOnly) {updateInput = true; return "changed";} + } + + // Compute selection start and end based on start/end offsets in textarea + function computeOffset(n, startLine) { + var pos = 0; + for (;;) { + var found = text.indexOf("\n", pos); + if (found == -1 || (text.charAt(found-1) == "\r" ? found - 1 : found) >= n) + return {line: startLine, ch: n - pos}; + ++startLine; + pos = found + 1; + } + } + var from = computeOffset(sr.start, editing.from), + to = computeOffset(sr.end, editing.from); + // Here we have to take the reducedSelection hack into account, + // so that you can, for example, press shift-up at the start of + // your selection and have the right thing happen. + if (rs) { + from = sr.start == rs.anchor ? to : from; + to = shiftSelecting ? sel.to : sr.start == rs.anchor ? from : to; + if (!posLess(from, to)) { + reducedSelection = null; + sel.inverted = false; + var tmp = from; from = to; to = tmp; + } + } + + // In some cases (cursor on same line as before), we don't have + // to update the textarea content at all. + if (from.line == to.line && from.line == sel.from.line && from.line == sel.to.line && !shiftSelecting) + updateInput = false; + + // Magic mess to extract precise edited range from the changed + // string. + if (changed) { + var start = 0, end = text.length, len = Math.min(end, editing.text.length); + var c, line = editing.from, nl = -1; + while (start < len && (c = text.charAt(start)) == editing.text.charAt(start)) { + ++start; + if (c == "\n") {line++; nl = start;} + } + var ch = nl > -1 ? start - nl : start, endline = editing.to - 1, edend = editing.text.length; + for (;;) { + c = editing.text.charAt(edend); + if (c == "\n") endline--; + if (text.charAt(end) != c) {++end; ++edend; break;} + if (edend <= start || end <= start) break; + --end; --edend; + } + var nl = editing.text.lastIndexOf("\n", edend - 1), endch = nl == -1 ? edend : edend - nl - 1; + updateLines({line: line, ch: ch}, {line: endline, ch: endch}, splitLines(text.slice(start, end)), from, to); + if (line != endline || from.line != line) updateInput = true; + } + else setSelection(from, to); + + editing.text = text; editing.start = sr.start; editing.end = sr.end; + return changed ? "changed" : moved ? "moved" : false; + } + + // Set the textarea content and selection range to match the + // editor state. + function prepareInput() { + var text = []; + var from = Math.max(0, sel.from.line - 1), to = Math.min(lines.length, sel.to.line + 2); + for (var i = from; i < to; ++i) text.push(lines[i].text); + text = input.value = text.join(lineSep); + var startch = sel.from.ch, endch = sel.to.ch; + for (var i = from; i < sel.from.line; ++i) + startch += lineSep.length + lines[i].text.length; + for (var i = from; i < sel.to.line; ++i) + endch += lineSep.length + lines[i].text.length; + editing = {text: text, from: from, to: to, start: startch, end: endch}; + setSelRange(input, startch, reducedSelection ? startch : endch); + } + function focusInput() { + if (options.readOnly != "nocursor") input.focus(); + } + + function scrollCursorIntoView() { + var cursor = localCoords(sel.inverted ? sel.from : sel.to); + return scrollIntoView(cursor.x, cursor.y, cursor.x, cursor.yBot); + } + function scrollIntoView(x1, y1, x2, y2) { + var pl = paddingLeft(), pt = paddingTop(), lh = lineHeight(); + y1 += pt; y2 += pt; x1 += pl; x2 += pl; + var screen = scroller.clientHeight, screentop = scroller.scrollTop, scrolled = false, result = true; + if (y1 < screentop) {scroller.scrollTop = Math.max(0, y1 - 2*lh); scrolled = true;} + else if (y2 > screentop + screen) {scroller.scrollTop = y2 + lh - screen; scrolled = true;} + + var screenw = scroller.clientWidth, screenleft = scroller.scrollLeft; + if (x1 < screenleft) { + if (x1 < 50) x1 = 0; + scroller.scrollLeft = Math.max(0, x1 - 10); + scrolled = true; + } + else if (x2 > screenw + screenleft) { + scroller.scrollLeft = x2 + 10 - screenw; + scrolled = true; + if (x2 > code.clientWidth) result = false; + } + if (scrolled && options.onScroll) options.onScroll(instance); + return result; + } + + function visibleLines() { + var lh = lineHeight(), top = scroller.scrollTop - paddingTop(); + return {from: Math.min(lines.length, Math.max(0, Math.floor(top / lh))), + to: Math.min(lines.length, Math.ceil((top + scroller.clientHeight) / lh))}; + } + // Uses a set of changes plus the current scroll position to + // determine which DOM updates have to be made, and makes the + // updates. + function updateDisplay(changes) { + if (!scroller.clientWidth) { + showingFrom = showingTo = 0; + return; + } + // First create a range of theoretically intact lines, and punch + // holes in that using the change info. + var intact = changes === true ? [] : [{from: showingFrom, to: showingTo, domStart: 0}]; + for (var i = 0, l = changes.length || 0; i < l; ++i) { + var change = changes[i], intact2 = [], diff = change.diff || 0; + for (var j = 0, l2 = intact.length; j < l2; ++j) { + var range = intact[j]; + if (change.to <= range.from) + intact2.push({from: range.from + diff, to: range.to + diff, domStart: range.domStart}); + else if (range.to <= change.from) + intact2.push(range); + else { + if (change.from > range.from) + intact2.push({from: range.from, to: change.from, domStart: range.domStart}) + if (change.to < range.to) + intact2.push({from: change.to + diff, to: range.to + diff, + domStart: range.domStart + (change.to - range.from)}); + } + } + intact = intact2; + } + + // Then, determine which lines we'd want to see, and which + // updates have to be made to get there. + var visible = visibleLines(); + var from = Math.min(showingFrom, Math.max(visible.from - 3, 0)), + to = Math.min(lines.length, Math.max(showingTo, visible.to + 3)), + updates = [], domPos = 0, domEnd = showingTo - showingFrom, pos = from, changedLines = 0; + + for (var i = 0, l = intact.length; i < l; ++i) { + var range = intact[i]; + if (range.to <= from) continue; + if (range.from >= to) break; + if (range.domStart > domPos || range.from > pos) { + updates.push({from: pos, to: range.from, domSize: range.domStart - domPos, domStart: domPos}); + changedLines += range.from - pos; + } + pos = range.to; + domPos = range.domStart + (range.to - range.from); + } + if (domPos != domEnd || pos != to) { + changedLines += Math.abs(to - pos); + updates.push({from: pos, to: to, domSize: domEnd - domPos, domStart: domPos}); + } + + if (!updates.length) return; + lineDiv.style.display = "none"; + // If more than 30% of the screen needs update, just do a full + // redraw (which is quicker than patching) + if (changedLines > (visible.to - visible.from) * .3) + refreshDisplay(from = Math.max(visible.from - 10, 0), to = Math.min(visible.to + 7, lines.length)); + // Otherwise, only update the stuff that needs updating. + else + patchDisplay(updates); + lineDiv.style.display = ""; + + // Position the mover div to align with the lines it's supposed + // to be showing (which will cover the visible display) + var different = from != showingFrom || to != showingTo || lastHeight != scroller.clientHeight; + showingFrom = from; showingTo = to; + mover.style.top = (from * lineHeight()) + "px"; + if (different) { + lastHeight = scroller.clientHeight; + code.style.height = (lines.length * lineHeight() + 2 * paddingTop()) + "px"; + updateGutter(); + } + + var textWidth = stringWidth(maxLine); + lineSpace.style.width = textWidth > scroller.clientWidth ? textWidth + "px" : ""; + + // Since this is all rather error prone, it is honoured with the + // only assertion in the whole file. + if (lineDiv.childNodes.length != showingTo - showingFrom) + throw new Error("BAD PATCH! " + JSON.stringify(updates) + " size=" + (showingTo - showingFrom) + + " nodes=" + lineDiv.childNodes.length); + updateCursor(); + } + + function refreshDisplay(from, to) { + var html = [], start = {line: from, ch: 0}, inSel = posLess(sel.from, start) && !posLess(sel.to, start); + for (var i = from; i < to; ++i) { + var ch1 = null, ch2 = null; + if (inSel) { + ch1 = 0; + if (sel.to.line == i) {inSel = false; ch2 = sel.to.ch;} + } + else if (sel.from.line == i) { + if (sel.to.line == i) {ch1 = sel.from.ch; ch2 = sel.to.ch;} + else {inSel = true; ch1 = sel.from.ch;} + } + html.push(lines[i].getHTML(ch1, ch2, true)); + } + lineDiv.innerHTML = html.join(""); + } + function patchDisplay(updates) { + // Slightly different algorithm for IE (badInnerHTML), since + // there .innerHTML on PRE nodes is dumb, and discards + // whitespace. + var sfrom = sel.from.line, sto = sel.to.line, off = 0, + scratch = badInnerHTML && targetDocument.createElement("div"); + for (var i = 0, e = updates.length; i < e; ++i) { + var rec = updates[i]; + var extra = (rec.to - rec.from) - rec.domSize; + var nodeAfter = lineDiv.childNodes[rec.domStart + rec.domSize + off] || null; + if (badInnerHTML) + for (var j = Math.max(-extra, rec.domSize); j > 0; --j) + lineDiv.removeChild(nodeAfter ? nodeAfter.previousSibling : lineDiv.lastChild); + else if (extra) { + for (var j = Math.max(0, extra); j > 0; --j) + lineDiv.insertBefore(targetDocument.createElement("pre"), nodeAfter); + for (var j = Math.max(0, -extra); j > 0; --j) + lineDiv.removeChild(nodeAfter ? nodeAfter.previousSibling : lineDiv.lastChild); + } + var node = lineDiv.childNodes[rec.domStart + off], inSel = sfrom < rec.from && sto >= rec.from; + for (var j = rec.from; j < rec.to; ++j) { + var ch1 = null, ch2 = null; + if (inSel) { + ch1 = 0; + if (sto == j) {inSel = false; ch2 = sel.to.ch;} + } + else if (sfrom == j) { + if (sto == j) {ch1 = sel.from.ch; ch2 = sel.to.ch;} + else {inSel = true; ch1 = sel.from.ch;} + } + if (badInnerHTML) { + scratch.innerHTML = lines[j].getHTML(ch1, ch2, true); + lineDiv.insertBefore(scratch.firstChild, nodeAfter); + } + else { + node.innerHTML = lines[j].getHTML(ch1, ch2, false); + node.className = lines[j].className || ""; + node = node.nextSibling; + } + } + off += extra; + } + } + + function updateGutter() { + if (!options.gutter && !options.lineNumbers) return; + var hText = mover.offsetHeight, hEditor = scroller.clientHeight; + gutter.style.height = (hText - hEditor < 2 ? hEditor : hText) + "px"; + var html = []; + for (var i = showingFrom; i < showingTo; ++i) { + var marker = lines[i].gutterMarker; + var text = options.lineNumbers ? i + options.firstLineNumber : null; + if (marker && marker.text) + text = marker.text.replace("%N%", text != null ? text : ""); + else if (text == null) + text = "\u00a0"; + html.push((marker && marker.style ? '
' : "
"), text, "
"); + } + gutter.style.display = "none"; + gutterText.innerHTML = html.join(""); + var minwidth = String(lines.length).length, firstNode = gutterText.firstChild, val = eltText(firstNode), pad = ""; + while (val.length + pad.length < minwidth) pad += "\u00a0"; + if (pad) firstNode.insertBefore(targetDocument.createTextNode(pad), firstNode.firstChild); + gutter.style.display = ""; + lineSpace.style.marginLeft = gutter.offsetWidth + "px"; + } + function updateCursor() { + var head = sel.inverted ? sel.from : sel.to, lh = lineHeight(); + var x = charX(head.line, head.ch) + "px", y = (head.line - showingFrom) * lh + "px"; + inputDiv.style.top = (head.line * lh - scroller.scrollTop) + "px"; + if (posEq(sel.from, sel.to)) { + cursor.style.top = y; cursor.style.left = x; + cursor.style.display = ""; + } + else cursor.style.display = "none"; + } + + function setSelectionUser(from, to) { + var sh = shiftSelecting && clipPos(shiftSelecting); + if (sh) { + if (posLess(sh, from)) from = sh; + else if (posLess(to, sh)) to = sh; + } + setSelection(from, to); + } + // Update the selection. Last two args are only used by + // updateLines, since they have to be expressed in the line + // numbers before the update. + function setSelection(from, to, oldFrom, oldTo) { + if (posEq(sel.from, from) && posEq(sel.to, to)) return; + if (posLess(to, from)) {var tmp = to; to = from; from = tmp;} + + var startEq = posEq(sel.to, to), endEq = posEq(sel.from, from); + if (posEq(from, to)) sel.inverted = false; + else if (startEq && !endEq) sel.inverted = true; + else if (endEq && !startEq) sel.inverted = false; + + // Some ugly logic used to only mark the lines that actually did + // see a change in selection as changed, rather than the whole + // selected range. + if (oldFrom == null) {oldFrom = sel.from.line; oldTo = sel.to.line;} + if (posEq(from, to)) { + if (!posEq(sel.from, sel.to)) + changes.push({from: oldFrom, to: oldTo + 1}); + } + else if (posEq(sel.from, sel.to)) { + changes.push({from: from.line, to: to.line + 1}); + } + else { + if (!posEq(from, sel.from)) { + if (from.line < oldFrom) + changes.push({from: from.line, to: Math.min(to.line, oldFrom) + 1}); + else + changes.push({from: oldFrom, to: Math.min(oldTo, from.line) + 1}); + } + if (!posEq(to, sel.to)) { + if (to.line < oldTo) + changes.push({from: Math.max(oldFrom, from.line), to: oldTo + 1}); + else + changes.push({from: Math.max(from.line, oldTo), to: to.line + 1}); + } + } + sel.from = from; sel.to = to; + selectionChanged = true; + } + function setCursor(line, ch, user) { + var pos = clipPos({line: line, ch: ch || 0}); + (user ? setSelectionUser : setSelection)(pos, pos); + } + + function clipLine(n) {return Math.max(0, Math.min(n, lines.length-1));} + function clipPos(pos) { + if (pos.line < 0) return {line: 0, ch: 0}; + if (pos.line >= lines.length) return {line: lines.length-1, ch: lines[lines.length-1].text.length}; + var ch = pos.ch, linelen = lines[pos.line].text.length; + if (ch == null || ch > linelen) return {line: pos.line, ch: linelen}; + else if (ch < 0) return {line: pos.line, ch: 0}; + else return pos; + } + + function scrollPage(down) { + var linesPerPage = Math.floor(scroller.clientHeight / lineHeight()), head = sel.inverted ? sel.from : sel.to; + setCursor(head.line + (Math.max(linesPerPage - 1, 1) * (down ? 1 : -1)), head.ch, true); + } + function scrollEnd(top) { + var pos = top ? {line: 0, ch: 0} : {line: lines.length - 1, ch: lines[lines.length-1].text.length}; + setSelectionUser(pos, pos); + } + function selectAll() { + var endLine = lines.length - 1; + setSelection({line: 0, ch: 0}, {line: endLine, ch: lines[endLine].text.length}); + } + function selectWordAt(pos) { + var line = lines[pos.line].text; + var start = pos.ch, end = pos.ch; + while (start > 0 && /\w/.test(line.charAt(start - 1))) --start; + while (end < line.length && /\w/.test(line.charAt(end))) ++end; + setSelectionUser({line: pos.line, ch: start}, {line: pos.line, ch: end}); + } + function selectLine(line) { + setSelectionUser({line: line, ch: 0}, {line: line, ch: lines[line].text.length}); + } + function handleEnter() { + replaceSelection("\n", "end"); + if (options.enterMode != "flat") + indentLine(sel.from.line, options.enterMode == "keep" ? "prev" : "smart"); + } + function handleTab(shift) { + shiftSelecting = null; + switch (options.tabMode) { + case "default": + return false; + case "indent": + for (var i = sel.from.line, e = sel.to.line; i <= e; ++i) indentLine(i, "smart"); + break; + case "classic": + if (posEq(sel.from, sel.to)) { + if (shift) indentLine(sel.from.line, "smart"); + else replaceSelection("\t", "end"); + break; + } + case "shift": + for (var i = sel.from.line, e = sel.to.line; i <= e; ++i) indentLine(i, shift ? "subtract" : "add"); + break; + } + return true; + } + + function indentLine(n, how) { + if (how == "smart") { + if (!mode.indent) how = "prev"; + else var state = getStateBefore(n); + } + + var line = lines[n], curSpace = line.indentation(), curSpaceString = line.text.match(/^\s*/)[0], indentation; + if (how == "prev") { + if (n) indentation = lines[n-1].indentation(); + else indentation = 0; + } + else if (how == "smart") indentation = mode.indent(state, line.text.slice(curSpaceString.length)); + else if (how == "add") indentation = curSpace + options.indentUnit; + else if (how == "subtract") indentation = curSpace - options.indentUnit; + indentation = Math.max(0, indentation); + var diff = indentation - curSpace; + + if (!diff) { + if (sel.from.line != n && sel.to.line != n) return; + var indentString = curSpaceString; + } + else { + var indentString = "", pos = 0; + if (options.indentWithTabs) + for (var i = Math.floor(indentation / tabSize); i; --i) {pos += tabSize; indentString += "\t";} + while (pos < indentation) {++pos; indentString += " ";} + } + + replaceRange(indentString, {line: n, ch: 0}, {line: n, ch: curSpaceString.length}); + } + + function loadMode() { + mode = CodeMirror.getMode(options, options.mode); + for (var i = 0, l = lines.length; i < l; ++i) + lines[i].stateAfter = null; + work = [0]; + startWorker(); + } + function gutterChanged() { + var visible = options.gutter || options.lineNumbers; + gutter.style.display = visible ? "" : "none"; + if (visible) updateGutter(); + else lineDiv.parentNode.style.marginLeft = 0; + } + + function markText(from, to, className) { + from = clipPos(from); to = clipPos(to); + var accum = []; + function add(line, from, to, className) { + var line = lines[line], mark = line.addMark(from, to, className); + mark.line = line; + accum.push(mark); + } + if (from.line == to.line) add(from.line, from.ch, to.ch, className); + else { + add(from.line, from.ch, null, className); + for (var i = from.line + 1, e = to.line; i < e; ++i) + add(i, 0, null, className); + add(to.line, 0, to.ch, className); + } + changes.push({from: from.line, to: to.line + 1}); + return function() { + var start, end; + for (var i = 0; i < accum.length; ++i) { + var mark = accum[i], found = indexOf(lines, mark.line); + mark.line.removeMark(mark); + if (found > -1) { + if (start == null) start = found; + end = found; + } + } + if (start != null) changes.push({from: start, to: end + 1}); + }; + } + + function addGutterMarker(line, text, className) { + if (typeof line == "number") line = lines[clipLine(line)]; + line.gutterMarker = {text: text, style: className}; + updateGutter(); + return line; + } + function removeGutterMarker(line) { + if (typeof line == "number") line = lines[clipLine(line)]; + line.gutterMarker = null; + updateGutter(); + } + function setLineClass(line, className) { + if (typeof line == "number") { + var no = line; + line = lines[clipLine(line)]; + } + else { + var no = indexOf(lines, line); + if (no == -1) return null; + } + if (line.className != className) { + line.className = className; + changes.push({from: no, to: no + 1}); + } + return line; + } + + function lineInfo(line) { + if (typeof line == "number") { + var n = line; + line = lines[line]; + if (!line) return null; + } + else { + var n = indexOf(lines, line); + if (n == -1) return null; + } + var marker = line.gutterMarker; + return {line: n, text: line.text, markerText: marker && marker.text, markerClass: marker && marker.style}; + } + + function stringWidth(str) { + measure.innerHTML = "
x
"; + measure.firstChild.firstChild.firstChild.nodeValue = str; + return measure.firstChild.firstChild.offsetWidth || 10; + } + // These are used to go from pixel positions to character + // positions, taking varying character widths into account. + function charX(line, pos) { + if (pos == 0) return 0; + measure.innerHTML = "
" + lines[line].getHTML(null, null, false, pos) + "
"; + return measure.firstChild.firstChild.offsetWidth; + } + function charFromX(line, x) { + if (x <= 0) return 0; + var lineObj = lines[line], text = lineObj.text; + function getX(len) { + measure.innerHTML = "
" + lineObj.getHTML(null, null, false, len) + "
"; + return measure.firstChild.firstChild.offsetWidth; + } + var from = 0, fromX = 0, to = text.length, toX; + // Guess a suitable upper bound for our search. + var estimated = Math.min(to, Math.ceil(x / stringWidth("x"))); + for (;;) { + var estX = getX(estimated); + if (estX <= x && estimated < to) estimated = Math.min(to, Math.ceil(estimated * 1.2)); + else {toX = estX; to = estimated; break;} + } + if (x > toX) return to; + // Try to guess a suitable lower bound as well. + estimated = Math.floor(to * 0.8); estX = getX(estimated); + if (estX < x) {from = estimated; fromX = estX;} + // Do a binary search between these bounds. + for (;;) { + if (to - from <= 1) return (toX - x > x - fromX) ? from : to; + var middle = Math.ceil((from + to) / 2), middleX = getX(middle); + if (middleX > x) {to = middle; toX = middleX;} + else {from = middle; fromX = middleX;} + } + } + + function localCoords(pos, inLineWrap) { + var lh = lineHeight(), line = pos.line - (inLineWrap ? showingFrom : 0); + return {x: charX(pos.line, pos.ch), y: line * lh, yBot: (line + 1) * lh}; + } + function pageCoords(pos) { + var local = localCoords(pos, true), off = eltOffset(lineSpace); + return {x: off.left + local.x, y: off.top + local.y, yBot: off.top + local.yBot}; + } + + function lineHeight() { + var nlines = lineDiv.childNodes.length; + if (nlines) return (lineDiv.offsetHeight / nlines) || 1; + measure.innerHTML = "
x
"; + return measure.firstChild.offsetHeight || 1; + } + function paddingTop() {return lineSpace.offsetTop;} + function paddingLeft() {return lineSpace.offsetLeft;} + + function posFromMouse(e, liberal) { + var offW = eltOffset(scroller, true), x = e.e.clientX, y = e.e.clientY; + // This is a mess of a heuristic to try and determine whether a + // scroll-bar was clicked or not, and to return null if one was + // (and !liberal). + if (!liberal && (x - offW.left > scroller.clientWidth || y - offW.top > scroller.clientHeight)) + return null; + var offL = eltOffset(lineSpace, true); + var line = showingFrom + Math.floor((y - offL.top) / lineHeight()); + return clipPos({line: line, ch: charFromX(clipLine(line), x - offL.left)}); + } + function onContextMenu(e) { + var pos = posFromMouse(e); + if (!pos || window.opera) return; // Opera is difficult. + if (posEq(sel.from, sel.to) || posLess(pos, sel.from) || !posLess(pos, sel.to)) + setCursor(pos.line, pos.ch); + + var oldCSS = input.style.cssText; + input.style.cssText = "position: fixed; width: 30px; height: 30px; top: " + (e.pageY() - 1) + + "px; left: " + (e.pageX() - 1) + "px; z-index: 1000; background: white; " + + "border-width: 0; outline: none; overflow: hidden;"; + var val = input.value = getSelection(); + focusInput(); + setSelRange(input, 0, input.value.length); + leaveInputAlone = true; + function rehide() { + if (input.value != val) operation(replaceSelection)(input.value, "end"); + input.style.cssText = oldCSS; + leaveInputAlone = false; + prepareInput(); + slowPoll(); + } + + if (gecko) { + e.stop() + var mouseup = connect(window, "mouseup", function() { + mouseup(); + setTimeout(rehide, 20); + }, true); + } + else { + setTimeout(rehide, 50); + } + } + + // Cursor-blinking + function restartBlink() { + clearInterval(blinker); + var on = true; + cursor.style.visibility = ""; + blinker = setInterval(function() { + cursor.style.visibility = (on = !on) ? "" : "hidden"; + }, 650); + } + + var matching = {"(": ")>", ")": "(<", "[": "]>", "]": "[<", "{": "}>", "}": "{<"}; + function matchBrackets(autoclear) { + var head = sel.inverted ? sel.from : sel.to, line = lines[head.line], pos = head.ch - 1; + var match = (pos >= 0 && matching[line.text.charAt(pos)]) || matching[line.text.charAt(++pos)]; + if (!match) return; + var ch = match.charAt(0), forward = match.charAt(1) == ">", d = forward ? 1 : -1, st = line.styles; + for (var off = pos + 1, i = 0, e = st.length; i < e; i+=2) + if ((off -= st[i].length) <= 0) {var style = st[i+1]; break;} + + var stack = [line.text.charAt(pos)], re = /[(){}[\]]/; + function scan(line, from, to) { + if (!line.text) return; + var st = line.styles, pos = forward ? 0 : line.text.length - 1, cur; + for (var i = forward ? 0 : st.length - 2, e = forward ? st.length : -2; i != e; i += 2*d) { + var text = st[i]; + if (st[i+1] != null && st[i+1] != style) {pos += d * text.length; continue;} + for (var j = forward ? 0 : text.length - 1, te = forward ? text.length : -1; j != te; j += d, pos+=d) { + if (pos >= from && pos < to && re.test(cur = text.charAt(j))) { + var match = matching[cur]; + if (match.charAt(1) == ">" == forward) stack.push(cur); + else if (stack.pop() != match.charAt(0)) return {pos: pos, match: false}; + else if (!stack.length) return {pos: pos, match: true}; + } + } + } + } + for (var i = head.line, e = forward ? Math.min(i + 50, lines.length) : Math.max(-1, i - 50); i != e; i+=d) { + var line = lines[i], first = i == head.line; + var found = scan(line, first && forward ? pos + 1 : 0, first && !forward ? pos : line.text.length); + if (found) { + var style = found.match ? "CodeMirror-matchingbracket" : "CodeMirror-nonmatchingbracket"; + var one = markText({line: head.line, ch: pos}, {line: head.line, ch: pos+1}, style), + two = markText({line: i, ch: found.pos}, {line: i, ch: found.pos + 1}, style); + var clear = operation(function(){one(); two();}); + if (autoclear) setTimeout(clear, 800); + else bracketHighlighted = clear; + break; + } + } + } + + // Finds the line to start with when starting a parse. Tries to + // find a line with a stateAfter, so that it can start with a + // valid state. If that fails, it returns the line with the + // smallest indentation, which tends to need the least context to + // parse correctly. + function findStartLine(n) { + var minindent, minline; + for (var search = n, lim = n - 40; search > lim; --search) { + if (search == 0) return 0; + var line = lines[search-1]; + if (line.stateAfter) return search; + var indented = line.indentation(); + if (minline == null || minindent > indented) { + minline = search; + minindent = indented; + } + } + return minline; + } + function getStateBefore(n) { + var start = findStartLine(n), state = start && lines[start-1].stateAfter; + if (!state) state = startState(mode); + else state = copyState(mode, state); + for (var i = start; i < n; ++i) { + var line = lines[i]; + line.highlight(mode, state); + line.stateAfter = copyState(mode, state); + } + if (!lines[n].stateAfter) work.push(n); + return state; + } + function highlightWorker() { + var end = +new Date + options.workTime; + var didSomething = false; + while (work.length) { + if (!lines[showingFrom].stateAfter) var task = showingFrom; + else var task = work.pop(); + if (task >= lines.length) continue; + didSomething = true; + var start = findStartLine(task), state = start && lines[start-1].stateAfter; + if (state) state = copyState(mode, state); + else state = startState(mode); + + var unchanged = 0; + for (var i = start, l = lines.length; i < l; ++i) { + var line = lines[i], hadState = line.stateAfter; + if (+new Date > end) { + work.push(i); + startWorker(options.workDelay); + changes.push({from: task, to: i}); + return; + } + var changed = line.highlight(mode, state); + line.stateAfter = copyState(mode, state); + if (changed || !hadState) unchanged = 0; + else if (++unchanged > 3) break; + } + changes.push({from: task, to: i}); + } + if (didSomething && options.onHighlightComplete) + options.onHighlightComplete(instance); + } + function startWorker(time) { + if (!work.length) return; + highlight.set(time, operation(highlightWorker)); + } + + // Operations are used to wrap changes in such a way that each + // change won't have to update the cursor and display (which would + // be awkward, slow, and error-prone), but instead updates are + // batched and then all combined and executed at once. + function startOperation() { + updateInput = null; changes = []; textChanged = selectionChanged = false; + } + function endOperation() { + var reScroll = false; + if (selectionChanged) reScroll = !scrollCursorIntoView(); + if (changes.length) updateDisplay(changes); + else if (selectionChanged) updateCursor(); + if (reScroll) scrollCursorIntoView(); + if (selectionChanged) restartBlink(); + + // updateInput can be set to a boolean value to force/prevent an + // update. + if (!leaveInputAlone && (updateInput === true || (updateInput !== false && selectionChanged))) + prepareInput(); + + if (selectionChanged && options.matchBrackets) + setTimeout(operation(function() { + if (bracketHighlighted) {bracketHighlighted(); bracketHighlighted = null;} + matchBrackets(false); + }), 20); + var tc = textChanged; // textChanged can be reset by cursoractivity callback + if (selectionChanged && options.onCursorActivity) + options.onCursorActivity(instance); + if (tc && options.onChange && instance) + options.onChange(instance, tc); + } + var nestedOperation = 0; + function operation(f) { + return function() { + if (!nestedOperation++) startOperation(); + try {var result = f.apply(this, arguments);} + finally {if (!--nestedOperation) endOperation();} + return result; + }; + } + + function SearchCursor(query, pos, caseFold) { + this.atOccurrence = false; + if (caseFold == null) caseFold = typeof query == "string" && query == query.toLowerCase(); + + if (pos && typeof pos == "object") pos = clipPos(pos); + else pos = {line: 0, ch: 0}; + this.pos = {from: pos, to: pos}; + + // The matches method is filled in based on the type of query. + // It takes a position and a direction, and returns an object + // describing the next occurrence of the query, or null if no + // more matches were found. + if (typeof query != "string") // Regexp match + this.matches = function(reverse, pos) { + if (reverse) { + var line = lines[pos.line].text.slice(0, pos.ch), match = line.match(query), start = 0; + while (match) { + var ind = line.indexOf(match[0]); + start += ind; + line = line.slice(ind + 1); + var newmatch = line.match(query); + if (newmatch) match = newmatch; + else break; + start++; + } + } + else { + var line = lines[pos.line].text.slice(pos.ch), match = line.match(query), + start = match && pos.ch + line.indexOf(match[0]); + } + if (match) + return {from: {line: pos.line, ch: start}, + to: {line: pos.line, ch: start + match[0].length}, + match: match}; + }; + else { // String query + if (caseFold) query = query.toLowerCase(); + var fold = caseFold ? function(str){return str.toLowerCase();} : function(str){return str;}; + var target = query.split("\n"); + // Different methods for single-line and multi-line queries + if (target.length == 1) + this.matches = function(reverse, pos) { + var line = fold(lines[pos.line].text), len = query.length, match; + if (reverse ? (pos.ch >= len && (match = line.lastIndexOf(query, pos.ch - len)) != -1) + : (match = line.indexOf(query, pos.ch)) != -1) + return {from: {line: pos.line, ch: match}, + to: {line: pos.line, ch: match + len}}; + }; + else + this.matches = function(reverse, pos) { + var ln = pos.line, idx = (reverse ? target.length - 1 : 0), match = target[idx], line = fold(lines[ln].text); + var offsetA = (reverse ? line.indexOf(match) + match.length : line.lastIndexOf(match)); + if (reverse ? offsetA >= pos.ch || offsetA != match.length + : offsetA <= pos.ch || offsetA != line.length - match.length) + return; + for (;;) { + if (reverse ? !ln : ln == lines.length - 1) return; + line = fold(lines[ln += reverse ? -1 : 1].text); + match = target[reverse ? --idx : ++idx]; + if (idx > 0 && idx < target.length - 1) { + if (line != match) return; + else continue; + } + var offsetB = (reverse ? line.lastIndexOf(match) : line.indexOf(match) + match.length); + if (reverse ? offsetB != line.length - match.length : offsetB != match.length) + return; + var start = {line: pos.line, ch: offsetA}, end = {line: ln, ch: offsetB}; + return {from: reverse ? end : start, to: reverse ? start : end}; + } + }; + } + } + + SearchCursor.prototype = { + findNext: function() {return this.find(false);}, + findPrevious: function() {return this.find(true);}, + + find: function(reverse) { + var self = this, pos = clipPos(reverse ? this.pos.from : this.pos.to); + function savePosAndFail(line) { + var pos = {line: line, ch: 0}; + self.pos = {from: pos, to: pos}; + self.atOccurrence = false; + return false; + } + + for (;;) { + if (this.pos = this.matches(reverse, pos)) { + this.atOccurrence = true; + return this.pos.match || true; + } + if (reverse) { + if (!pos.line) return savePosAndFail(0); + pos = {line: pos.line-1, ch: lines[pos.line-1].text.length}; + } + else { + if (pos.line == lines.length - 1) return savePosAndFail(lines.length); + pos = {line: pos.line+1, ch: 0}; + } + } + }, + + from: function() {if (this.atOccurrence) return copyPos(this.pos.from);}, + to: function() {if (this.atOccurrence) return copyPos(this.pos.to);} + }; + + return instance; + } // (end of function CodeMirror) + + // The default configuration options. + CodeMirror.defaults = { + value: "", + mode: null, + indentUnit: 2, + indentWithTabs: false, + tabMode: "classic", + enterMode: "indent", + electricChars: true, + onKeyEvent: null, + lineNumbers: false, + gutter: false, + firstLineNumber: 1, + readOnly: false, + onChange: null, + onCursorActivity: null, + onGutterClick: null, + onHighlightComplete: null, + onFocus: null, onBlur: null, onScroll: null, + matchBrackets: false, + workTime: 100, + workDelay: 200, + undoDepth: 40, + tabindex: null, + document: window.document + }; + + // Known modes, by name and by MIME + var modes = {}, mimeModes = {}; + CodeMirror.defineMode = function(name, mode) { + if (!CodeMirror.defaults.mode && name != "null") CodeMirror.defaults.mode = name; + modes[name] = mode; + }; + CodeMirror.defineMIME = function(mime, spec) { + mimeModes[mime] = spec; + }; + CodeMirror.getMode = function(options, spec) { + if (typeof spec == "string" && mimeModes.hasOwnProperty(spec)) + spec = mimeModes[spec]; + if (typeof spec == "string") + var mname = spec, config = {}; + else if (spec != null) + var mname = spec.name, config = spec; + var mfactory = modes[mname]; + if (!mfactory) { + if (window.console) console.warn("No mode " + mname + " found, falling back to plain text."); + return CodeMirror.getMode(options, "text/plain"); + } + return mfactory(options, config || {}); + } + CodeMirror.listModes = function() { + var list = []; + for (var m in modes) + if (modes.propertyIsEnumerable(m)) list.push(m); + return list; + }; + CodeMirror.listMIMEs = function() { + var list = []; + for (var m in mimeModes) + if (mimeModes.propertyIsEnumerable(m)) list.push(m); + return list; + }; + + CodeMirror.fromTextArea = function(textarea, options) { + if (!options) options = {}; + options.value = textarea.value; + if (!options.tabindex && textarea.tabindex) + options.tabindex = textarea.tabindex; + + function save() {textarea.value = instance.getValue();} + if (textarea.form) { + // Deplorable hack to make the submit method do the right thing. + var rmSubmit = connect(textarea.form, "submit", save, true); + if (typeof textarea.form.submit == "function") { + var realSubmit = textarea.form.submit; + function wrappedSubmit() { + save(); + textarea.form.submit = realSubmit; + textarea.form.submit(); + textarea.form.submit = wrappedSubmit; + } + textarea.form.submit = wrappedSubmit; + } + } + + textarea.style.display = "none"; + var instance = CodeMirror(function(node) { + textarea.parentNode.insertBefore(node, textarea.nextSibling); + }, options); + instance.save = save; + instance.toTextArea = function() { + save(); + textarea.parentNode.removeChild(instance.getWrapperElement()); + textarea.style.display = ""; + if (textarea.form) { + rmSubmit(); + if (typeof textarea.form.submit == "function") + textarea.form.submit = realSubmit; + } + }; + return instance; + }; + + // Utility functions for working with state. Exported because modes + // sometimes need to do this. + function copyState(mode, state) { + if (state === true) return state; + if (mode.copyState) return mode.copyState(state); + var nstate = {}; + for (var n in state) { + var val = state[n]; + if (val instanceof Array) val = val.concat([]); + nstate[n] = val; + } + return nstate; + } + CodeMirror.startState = startState; + function startState(mode, a1, a2) { + return mode.startState ? mode.startState(a1, a2) : true; + } + CodeMirror.copyState = copyState; + + // The character stream used by a mode's parser. + function StringStream(string) { + this.pos = this.start = 0; + this.string = string; + } + StringStream.prototype = { + eol: function() {return this.pos >= this.string.length;}, + sol: function() {return this.pos == 0;}, + peek: function() {return this.string.charAt(this.pos);}, + next: function() { + if (this.pos < this.string.length) + return this.string.charAt(this.pos++); + }, + eat: function(match) { + var ch = this.string.charAt(this.pos); + if (typeof match == "string") var ok = ch == match; + else var ok = ch && (match.test ? match.test(ch) : match(ch)); + if (ok) {++this.pos; return ch;} + }, + eatWhile: function(match) { + var start = this.start; + while (this.eat(match)){} + return this.pos > start; + }, + eatSpace: function() { + var start = this.pos; + while (/[\s\u00a0]/.test(this.string.charAt(this.pos))) ++this.pos; + return this.pos > start; + }, + skipToEnd: function() {this.pos = this.string.length;}, + skipTo: function(ch) { + var found = this.string.indexOf(ch, this.pos); + if (found > -1) {this.pos = found; return true;} + }, + backUp: function(n) {this.pos -= n;}, + column: function() {return countColumn(this.string, this.start);}, + indentation: function() {return countColumn(this.string);}, + match: function(pattern, consume, caseInsensitive) { + if (typeof pattern == "string") { + function cased(str) {return caseInsensitive ? str.toLowerCase() : str;} + if (cased(this.string).indexOf(cased(pattern), this.pos) == this.pos) { + if (consume !== false) this.pos += pattern.length; + return true; + } + } + else { + var match = this.string.slice(this.pos).match(pattern); + if (match && consume !== false) this.pos += match[0].length; + return match; + } + }, + current: function(){return this.string.slice(this.start, this.pos);} + }; + CodeMirror.StringStream = StringStream; + + // Line objects. These hold state related to a line, including + // highlighting info (the styles array). + function Line(text, styles) { + this.styles = styles || [text, null]; + this.stateAfter = null; + this.text = text; + this.marked = this.gutterMarker = this.className = null; + } + Line.prototype = { + // Replace a piece of a line, keeping the styles around it intact. + replace: function(from, to, text) { + var st = [], mk = this.marked; + copyStyles(0, from, this.styles, st); + if (text) st.push(text, null); + copyStyles(to, this.text.length, this.styles, st); + this.styles = st; + this.text = this.text.slice(0, from) + text + this.text.slice(to); + this.stateAfter = null; + if (mk) { + var diff = text.length - (to - from), end = this.text.length; + function fix(n) {return n <= Math.min(to, to + diff) ? n : n + diff;} + for (var i = 0; i < mk.length; ++i) { + var mark = mk[i], del = false; + if (mark.from >= end) del = true; + else {mark.from = fix(mark.from); if (mark.to != null) mark.to = fix(mark.to);} + if (del || mark.from >= mark.to) {mk.splice(i, 1); i--;} + } + } + }, + // Split a line in two, again keeping styles intact. + split: function(pos, textBefore) { + var st = [textBefore, null]; + copyStyles(pos, this.text.length, this.styles, st); + return new Line(textBefore + this.text.slice(pos), st); + }, + addMark: function(from, to, style) { + var mk = this.marked, mark = {from: from, to: to, style: style}; + if (this.marked == null) this.marked = []; + this.marked.push(mark); + this.marked.sort(function(a, b){return a.from - b.from;}); + return mark; + }, + removeMark: function(mark) { + var mk = this.marked; + if (!mk) return; + for (var i = 0; i < mk.length; ++i) + if (mk[i] == mark) {mk.splice(i, 1); break;} + }, + // Run the given mode's parser over a line, update the styles + // array, which contains alternating fragments of text and CSS + // classes. + highlight: function(mode, state) { + var stream = new StringStream(this.text), st = this.styles, pos = 0; + var changed = false, curWord = st[0], prevWord; + if (this.text == "" && mode.blankLine) mode.blankLine(state); + while (!stream.eol()) { + var style = mode.token(stream, state); + var substr = this.text.slice(stream.start, stream.pos); + stream.start = stream.pos; + if (pos && st[pos-1] == style) + st[pos-2] += substr; + else if (substr) { + if (!changed && (st[pos+1] != style || (pos && st[pos-2] != prevWord))) changed = true; + st[pos++] = substr; st[pos++] = style; + prevWord = curWord; curWord = st[pos]; + } + // Give up when line is ridiculously long + if (stream.pos > 5000) { + st[pos++] = this.text.slice(stream.pos); st[pos++] = null; + break; + } + } + if (st.length != pos) {st.length = pos; changed = true;} + if (pos && st[pos-2] != prevWord) changed = true; + // Short lines with simple highlights always count as changed, + // because they are likely to highlight the same way in various + // contexts. + return changed || (st.length < 5 && this.text.length < 10); + }, + // Fetch the parser token for a given character. Useful for hacks + // that want to inspect the mode state (say, for completion). + getTokenAt: function(mode, state, ch) { + var txt = this.text, stream = new StringStream(txt); + while (stream.pos < ch && !stream.eol()) { + stream.start = stream.pos; + var style = mode.token(stream, state); + } + return {start: stream.start, + end: stream.pos, + string: stream.current(), + className: style || null, + state: state}; + }, + indentation: function() {return countColumn(this.text);}, + // Produces an HTML fragment for the line, taking selection, + // marking, and highlighting into account. + getHTML: function(sfrom, sto, includePre, endAt) { + var html = []; + if (includePre) + html.push(this.className ? '
': "
");
+      function span(text, style) {
+        if (!text) return;
+        if (style) html.push('', htmlEscape(text), "");
+        else html.push(htmlEscape(text));
+      }
+      var st = this.styles, allText = this.text, marked = this.marked;
+      if (sfrom == sto) sfrom = null;
+      var len = allText.length;
+      if (endAt != null) len = Math.min(endAt, len);
+
+      if (!allText && endAt == null)
+        span(" ", sfrom != null && sto == null ? "CodeMirror-selected" : null);
+      else if (!marked && sfrom == null)
+        for (var i = 0, ch = 0; ch < len; i+=2) {
+          var str = st[i], l = str.length;
+          if (ch + l > len) str = str.slice(0, len - ch);
+          ch += l;
+          span(str, st[i+1]);
+        }
+      else {
+        var pos = 0, i = 0, text = "", style, sg = 0;
+        var markpos = -1, mark = null;
+        function nextMark() {
+          if (marked) {
+            markpos += 1;
+            mark = (markpos < marked.length) ? marked[markpos] : null;
+          }
+        }
+        nextMark();
+        while (pos < len) {
+          var upto = len;
+          var extraStyle = "";
+          if (sfrom != null) {
+            if (sfrom > pos) upto = sfrom;
+            else if (sto == null || sto > pos) {
+              extraStyle = " CodeMirror-selected";
+              if (sto != null) upto = Math.min(upto, sto);
+            }
+          }
+          while (mark && mark.to != null && mark.to <= pos) nextMark();
+          if (mark) {
+            if (mark.from > pos) upto = Math.min(upto, mark.from);
+            else {
+              extraStyle += " " + mark.style;
+              if (mark.to != null) upto = Math.min(upto, mark.to);
+            }
+          }
+          for (;;) {
+            var end = pos + text.length;
+            var apliedStyle = style;
+            if (extraStyle) apliedStyle = style ? style + extraStyle : extraStyle;
+            span(end > upto ? text.slice(0, upto - pos) : text, apliedStyle);
+            if (end >= upto) {text = text.slice(upto - pos); pos = upto; break;}
+            pos = end;
+            text = st[i++]; style = st[i++];
+          }
+        }
+        if (sfrom != null && sto == null) span(" ", "CodeMirror-selected");
+      }
+      if (includePre) html.push("
"); + return html.join(""); + } + }; + // Utility used by replace and split above + function copyStyles(from, to, source, dest) { + for (var i = 0, pos = 0, state = 0; pos < to; i+=2) { + var part = source[i], end = pos + part.length; + if (state == 0) { + if (end > from) dest.push(part.slice(from - pos, Math.min(part.length, to - pos)), source[i+1]); + if (end >= from) state = 1; + } + else if (state == 1) { + if (end > to) dest.push(part.slice(0, to - pos), source[i+1]); + else dest.push(part, source[i+1]); + } + pos = end; + } + } + + // The history object 'chunks' changes that are made close together + // and at almost the same time into bigger undoable units. + function History() { + this.time = 0; + this.done = []; this.undone = []; + } + History.prototype = { + addChange: function(start, added, old) { + this.undone.length = 0; + var time = +new Date, last = this.done[this.done.length - 1]; + if (time - this.time > 400 || !last || + last.start > start + added || last.start + last.added < start - last.added + last.old.length) + this.done.push({start: start, added: added, old: old}); + else { + var oldoff = 0; + if (start < last.start) { + for (var i = last.start - start - 1; i >= 0; --i) + last.old.unshift(old[i]); + last.added += last.start - start; + last.start = start; + } + else if (last.start < start) { + oldoff = start - last.start; + added += oldoff; + } + for (var i = last.added - oldoff, e = old.length; i < e; ++i) + last.old.push(old[i]); + if (last.added < added) last.added = added; + } + this.time = time; + } + }; + + // Event stopping compatibility wrapper. + function stopEvent() { + if (this.preventDefault) {this.preventDefault(); this.stopPropagation();} + else {this.returnValue = false; this.cancelBubble = true;} + } + // Ensure an event has a stop method. + function addStop(event) { + if (!event.stop) event.stop = stopEvent; + return event; + } + + // Event wrapper, exposing the few operations we need. + function Event(orig) {this.e = orig;} + Event.prototype = { + stop: function() {stopEvent.call(this.e);}, + target: function() {return this.e.target || this.e.srcElement;}, + button: function() { + if (this.e.which) return this.e.which; + else if (this.e.button & 1) return 1; + else if (this.e.button & 2) return 3; + else if (this.e.button & 4) return 2; + }, + pageX: function() { + if (this.e.pageX != null) return this.e.pageX; + var doc = this.target().ownerDocument; + return this.e.clientX + doc.body.scrollLeft + doc.documentElement.scrollLeft; + }, + pageY: function() { + if (this.e.pageY != null) return this.e.pageY; + var doc = this.target().ownerDocument; + return this.e.clientY + doc.body.scrollTop + doc.documentElement.scrollTop; + } + }; + + // Event handler registration. If disconnect is true, it'll return a + // function that unregisters the handler. + function connect(node, type, handler, disconnect) { + function wrapHandler(event) {handler(new Event(event || window.event));} + if (typeof node.addEventListener == "function") { + node.addEventListener(type, wrapHandler, false); + if (disconnect) return function() {node.removeEventListener(type, wrapHandler, false);}; + } + else { + node.attachEvent("on" + type, wrapHandler); + if (disconnect) return function() {node.detachEvent("on" + type, wrapHandler);}; + } + } + + function Delayed() {this.id = null;} + Delayed.prototype = {set: function(ms, f) {clearTimeout(this.id); this.id = setTimeout(f, ms);}}; + + // Some IE versions don't preserve whitespace when setting the + // innerHTML of a PRE tag. + var badInnerHTML = (function() { + var pre = document.createElement("pre"); + pre.innerHTML = " "; return !pre.innerHTML; + })(); + + var gecko = /gecko\/\d{7}/i.test(navigator.userAgent); + + var lineSep = "\n"; + // Feature-detect whether newlines in textareas are converted to \r\n + (function () { + var te = document.createElement("textarea"); + te.value = "foo\nbar"; + if (te.value.indexOf("\r") > -1) lineSep = "\r\n"; + }()); + + var tabSize = 8; + var mac = /Mac/.test(navigator.platform); + var movementKeys = {}; + for (var i = 35; i <= 40; ++i) + movementKeys[i] = movementKeys["c" + i] = true; + + // Counts the column offset in a string, taking tabs into account. + // Used mostly to find indentation. + function countColumn(string, end) { + if (end == null) { + end = string.search(/[^\s\u00a0]/); + if (end == -1) end = string.length; + } + for (var i = 0, n = 0; i < end; ++i) { + if (string.charAt(i) == "\t") n += tabSize - (n % tabSize); + else ++n; + } + return n; + } + + // Find the position of an element by following the offsetParent chain. + // If screen==true, it returns screen (rather than page) coordinates. + function eltOffset(node, screen) { + var doc = node.ownerDocument.body; + var x = 0, y = 0, hitDoc = false; + for (var n = node; n; n = n.offsetParent) { + x += n.offsetLeft; y += n.offsetTop; + // Fixed-position elements don't have the document in their offset chain + if (n == doc) hitDoc = true; + } + var e = screen && hitDoc ? null : doc; + for (var n = node.parentNode; n != e; n = n.parentNode) + if (n.scrollLeft != null) { x -= n.scrollLeft; y -= n.scrollTop;} + return {left: x, top: y}; + } + // Get a node's text content. + function eltText(node) { + return node.textContent || node.innerText || node.nodeValue || ""; + } + + // Operations on {line, ch} objects. + function posEq(a, b) {return a.line == b.line && a.ch == b.ch;} + function posLess(a, b) {return a.line < b.line || (a.line == b.line && a.ch < b.ch);} + function copyPos(x) {return {line: x.line, ch: x.ch};} + + function htmlEscape(str) { + return str.replace(/[<>&]/g, function(str) { + return str == "&" ? "&" : str == "<" ? "<" : ">"; + }); + } + CodeMirror.htmlEscape = htmlEscape; + + // Used to position the cursor after an undo/redo by finding the + // last edited character. + function editEnd(from, to) { + if (!to) return from ? from.length : 0; + if (!from) return to.length; + for (var i = from.length, j = to.length; i >= 0 && j >= 0; --i, --j) + if (from.charAt(i) != to.charAt(j)) break; + return j + 1; + } + + function indexOf(collection, elt) { + if (collection.indexOf) return collection.indexOf(elt); + for (var i = 0, e = collection.length; i < e; ++i) + if (collection[i] == elt) return i; + return -1; + } + + // See if "".split is the broken IE version, if so, provide an + // alternative way to split lines. + if ("\n\nb".split(/\n/).length != 3) + var splitLines = function(string) { + var pos = 0, nl, result = []; + while ((nl = string.indexOf("\n", pos)) > -1) { + result.push(string.slice(pos, string.charAt(nl-1) == "\r" ? nl - 1 : nl)); + pos = nl + 1; + } + result.push(string.slice(pos)); + return result; + }; + else + var splitLines = function(string){return string.split(/\r?\n/);}; + CodeMirror.splitLines = splitLines; + + // Sane model of finding and setting the selection in a textarea + if (window.getSelection) { + var selRange = function(te) { + try {return {start: te.selectionStart, end: te.selectionEnd};} + catch(e) {return null;} + }; + var setSelRange = function(te, start, end) { + try {te.setSelectionRange(start, end);} + catch(e) {} // Fails on Firefox when textarea isn't part of the document + }; + } + // IE model. Don't ask. + else { + var selRange = function(te) { + try {var range = te.ownerDocument.selection.createRange();} + catch(e) {return null;} + if (!range || range.parentElement() != te) return null; + var val = te.value, len = val.length, localRange = te.createTextRange(); + localRange.moveToBookmark(range.getBookmark()); + var endRange = te.createTextRange(); + endRange.collapse(false); + + if (localRange.compareEndPoints("StartToEnd", endRange) > -1) + return {start: len, end: len}; + + var start = -localRange.moveStart("character", -len); + for (var i = val.indexOf("\r"); i > -1 && i < start; i = val.indexOf("\r", i+1), start++) {} + + if (localRange.compareEndPoints("EndToEnd", endRange) > -1) + return {start: start, end: len}; + + var end = -localRange.moveEnd("character", -len); + for (var i = val.indexOf("\r"); i > -1 && i < end; i = val.indexOf("\r", i+1), end++) {} + return {start: start, end: end}; + }; + var setSelRange = function(te, start, end) { + var range = te.createTextRange(); + range.collapse(true); + var endrange = range.duplicate(); + var newlines = 0, txt = te.value; + for (var pos = txt.indexOf("\n"); pos > -1 && pos < start; pos = txt.indexOf("\n", pos + 1)) + ++newlines; + range.move("character", start - newlines); + for (; pos > -1 && pos < end; pos = txt.indexOf("\n", pos + 1)) + ++newlines; + endrange.move("character", end - newlines); + range.setEndPoint("EndToEnd", endrange); + range.select(); + }; + } + + CodeMirror.defineMode("null", function() { + return {token: function(stream) {stream.skipToEnd();}}; + }); + CodeMirror.defineMIME("text/plain", "null"); + + return CodeMirror; +})(); diff --git a/js/codemirror/mode/mysql/mysql.js b/js/codemirror/mode/mysql/mysql.js new file mode 100644 index 0000000000..704825e403 --- /dev/null +++ b/js/codemirror/mode/mysql/mysql.js @@ -0,0 +1,145 @@ +CodeMirror.defineMode("mysql", function(config, parserConfig) { + var indentUnit = config.indentUnit, + keywords = parserConfig.keywords, + functions = parserConfig.functions, + types = parserConfig.types, + attributes = parserConfig.attributes, + multiLineStrings = parserConfig.multiLineStrings; + var isOperatorChar = /[+\-*&%=<>!?:\/|]/; + function chain(stream, state, f) { + state.tokenize = f; + return f(stream, state); + } + + var type; + function ret(tp, style) { + type = tp; + return style; + } + + function tokenBase(stream, state) { + var ch = stream.next(); + // start of string? + if (ch == '"' || ch == "'" || ch == '`') + return chain(stream, state, tokenString(ch)); + // is it one of the special signs []{}().,;? Seperator? + else if (/[\[\]{}\(\),;\.]/.test(ch)) + return ret(ch); + // start of a number value? + else if (/\d/.test(ch)) { + stream.eatWhile(/[\w\.]/) + return ret("number", "mysql-number"); + } + // multi line comment or simple operator? + else if (ch == "/") { + if (stream.eat("*")) { + return chain(stream, state, tokenComment); + } + else { + stream.eatWhile(isOperatorChar); + return ret("operator", "mysql-operator"); + } + } + // single line comment or simple operator? + else if (ch == "-") { + if (stream.eat("-")) { + stream.skipToEnd(); + return ret("comment", "mysql-comment"); + } + else { + stream.eatWhile(isOperatorChar); + return ret("operator", "mysql-operator"); + } + } + // pl/sql variable? + else if (ch == "@" || ch == "$") { + stream.eatWhile(/[\w\d\$_]/); + return ret("word", "mysql-var"); + } + // is it a operator? + else if (isOperatorChar.test(ch)) { + stream.eatWhile(isOperatorChar); + return ret("operator", "mysql-operator"); + } + else { + // get the whole word + stream.eatWhile(/[\w\$_]/); + // is it one of the listed keywords? + if (keywords && keywords.propertyIsEnumerable(stream.current().toLowerCase())) return ret("keyword", "mysql-keyword"); + // is it one of the listed functions? + if (functions && functions.propertyIsEnumerable(stream.current().toLowerCase())) return ret("keyword", "mysql-function"); + // is it one of the listed types? + if (types && types.propertyIsEnumerable(stream.current().toLowerCase())) return ret("keyword", "mysql-type"); + // is it one of the listed attributes? + if (attributes && attributes.propertyIsEnumerable(stream.current().toLowerCase())) return ret("keyword", "mysql-attribute"); + // default: just a "word" + return ret("word", "mysql-word"); + } + } + + function tokenString(quote) { + return function(stream, state) { + var escaped = false, next, end = false; + while ((next = stream.next()) != null) { + if (next == quote && !escaped) {end = true; break;} + escaped = !escaped && next == "\\"; + } + if (end || !(escaped || multiLineStrings)) + state.tokenize = tokenBase; + return ret("string", "mysql-string"); + }; + } + + function tokenComment(stream, state) { + var maybeEnd = false, ch; + while (ch = stream.next()) { + if (ch == "/" && maybeEnd) { + state.tokenize = tokenBase; + break; + } + maybeEnd = (ch == "*"); + } + return ret("comment", "mysql-comment"); + } + + // Interface + + return { + startState: function(basecolumn) { + return { + tokenize: tokenBase, + indented: 0, + startOfLine: true + }; + }, + + token: function(stream, state) { + if (stream.eatSpace()) return null; + var style = state.tokenize(stream, state); + return style; + } + }; +}); + +(function() { + function keywords(str) { + var obj = {}, words = str.split(" "); + for (var i = 0; i < words.length; ++i) obj[words[i]] = true; + return obj; + } + var cKeywords = "accessible action add after against aggregate algorithm all alter analyse analyze and as asc autocommit auto_increment avg_row_length backup begin between binlog both by cascade case change changed charset check checksum collate collation column columns comment commit committed compressed concurrent constraint contains convert create cross current_timestamp database databases day day_hour day_minute day_second definer delayed delay_key_write delete desc describe deterministic distinct distinctrow div do drop dumpfile duplicate dynamic else enclosed end engine engines escape escaped events execute exists explain extended fast fields file first fixed flush for force foreign from full fulltext function gemini gemini_spin_retries global grant grants group having heap high_priority hosts hour hour_minute hour_second identified if ignore in index indexes infile inner insert insert_id insert_method interval into invoker is isolation join key keys kill last_insert_id leading left like limit linear lines load local lock locks logs low_priority maria master master_connect_retry master_host master_log_file master_log_pos master_password master_port master_user match max_connections_per_hour max_queries_per_hour max_rows max_updates_per_hour max_user_connections medium merge minute minute_second min_rows mode modify month mrg_myisam myisam names natural no not null offset on open optimize option optionally or order outer outfile pack_keys page page_checksum partial partition partitions password primary privileges procedure process processlist purge quick raid0 raid_chunks raid_chunksize raid_type range read read_only read_write references regexp reload rename repair repeatable replace replication reset restore restrict return returns revoke right rlike rollback row rows row_format second security select separator serializable session share show shutdown slave soname sounds sql sql_auto_is_null sql_big_result sql_big_selects sql_big_tables sql_buffer_result sql_cache sql_calc_found_rows sql_log_bin sql_log_off sql_log_update sql_low_priority_updates sql_max_join_size sql_no_cache sql_quote_show_create sql_safe_updates sql_select_limit sql_slave_skip_counter sql_small_result sql_warnings start starting status stop storage straight_join string striped super table tables temporary terminated then to trailing transactional truncate type types uncommitted union unique unlock update usage use using values variables view when where with work write xor year_month"; + + var cFunctions = "abs acos adddate addtime aes_decrypt aes_encrypt area asbinary ascii asin astext atan atan2 avg bdmpolyfromtext bdmpolyfromwkb bdpolyfromtext bdpolyfromwkb benchmark bin bit_and bit_count bit_length bit_or bit_xor boundary buffer cast ceil ceiling centroid char character_length charset char_length coalesce coercibility collation compress concat concat_ws connection_id contains conv convert convert_tz convexhull cos cot count crc32 crosses curdate current_date current_time current_timestamp current_user curtime database date datediff date_add date_diff date_format date_sub day dayname dayofmonth dayofweek dayofyear decode default degrees des_decrypt des_encrypt difference dimension disjoint distance elt encode encrypt endpoint envelope equals exp export_set exteriorring extract extractvalue field find_in_set floor format found_rows from_days from_unixtime geomcollfromtext geomcollfromwkb geometrycollection geometrycollectionfromtext geometrycollectionfromwkb geometryfromtext geometryfromwkb geometryn geometrytype geomfromtext geomfromwkb get_format get_lock glength greatest group_concat group_unique_users hex hour if ifnull inet_aton inet_ntoa insert instr interiorringn intersection intersects interval isclosed isempty isnull isring issimple is_free_lock is_used_lock last_day last_insert_id lcase least left length linefromtext linefromwkb linestring linestringfromtext linestringfromwkb ln load_file localtime localtimestamp locate log log10 log2 lower lpad ltrim makedate maketime make_set master_pos_wait max mbrcontains mbrdisjoint mbrequal mbrintersects mbroverlaps mbrtouches mbrwithin md5 microsecond mid min minute mlinefromtext mlinefromwkb mod month monthname mpointfromtext mpointfromwkb mpolyfromtext mpolyfromwkb multilinestring multilinestringfromtext multilinestringfromwkb multipoint multipointfromtext multipointfromwkb multipolygon multipolygonfromtext multipolygonfromwkb name_const now nullif numgeometries numinteriorrings numpoints oct octet_length old_password ord overlaps password period_add period_diff pi point pointfromtext pointfromwkb pointn pointonsurface polyfromtext polyfromwkb polygon polygonfromtext polygonfromwkb position pow power quarter quote radians rand related release_lock repeat replace reverse right round row_count rpad rtrim schema second sec_to_time session_user sha sha1 sign sin sleep soundex space sqrt srid startpoint std stddev stddev_pop stddev_samp strcmp str_to_date subdate substr substring substring_index subtime sum symdifference sysdate system_user tan time timediff timestamp timestampadd timestampdiff time_format time_to_sec touches to_days trim truncate ucase uncompress uncompressed_length unhex unique_users unix_timestamp updatexml upper user utc_date utc_time utc_timestamp uuid variance var_pop var_samp version week weekday weekofyear within x y year yearweek"; + + var cTypes = "bigint binary bit blob bool boolean char character date datetime dec decimal double enum float float4 float8 geometry geometrycollection int int1 int2 int3 int4 int8 integer linestring long longblob longtext mediumblob mediumint mediumtext middleint multilinestring multipoint multipolygon nchar numeric point polygon real serial set smallint text time timestamp tinyblob tinyint tinytext varbinary varchar year"; + + var cAttributes = "archive ascii auto_increment bdb berkeleydb binary blackhole csv default example federated heap innobase innodb isam maria memory merge mrg_isam mrg_myisam myisam national ndb ndbcluster precision undefined unicode unsigned varying zerofill"; + + CodeMirror.defineMIME("text/x-mysql", { + name: "mysql", + keywords: keywords(cKeywords), + functions: keywords(cFunctions), + types: keywords(cTypes), + attributes: keywords(cAttributes) + }); +}()); diff --git a/js/functions.js b/js/functions.js index be5a8bbc40..98dbd1d51c 100644 --- a/js/functions.js +++ b/js/functions.js @@ -20,6 +20,11 @@ var only_once_elements = new Array(); */ var ajax_message_init = false; +/** + * @var codemirror_editor object containing CodeMirror editor + */ +var codemirror_editor = false; + /** * Add a hidden field to the form to indicate that this will be an * Ajax request (only if this hidden field does not exist) @@ -757,8 +762,14 @@ function insertQuery(queryType) { query = "UPDATE `" + table + "` SET " + editDis + " WHERE 1"; } else if(queryType == "delete") { query = "DELETE FROM `" + table + "` WHERE 1"; + } else if(queryType == "clear") { + query = ""; + } + if (codemirror_editor) { + codemirror_editor.setValue(query); + } else { + document.sqlform.sql_query.value = query; } - document.sqlform.sql_query.value = query; sql_box_locked = false; } } @@ -785,8 +796,11 @@ function insertValueQuery() { } } + /* CodeMirror support */ + if (codemirror_editor) { + codemirror_editor.replaceSelection(chaineAj); //IE support - if (document.selection) { + } else if (document.selection) { myQuery.focus(); sel = document.selection.createRange(); sel.text = chaineAj; @@ -1147,11 +1161,7 @@ $(document).ready(function(){ }); $('.sqlbutton').click(function(evt){ - if (evt.target.id == 'clear') { - $('#sqlquery').val(''); - } else { - insertQuery(evt.target.id); - } + insertQuery(evt.target.id); return false; }); @@ -2370,3 +2380,13 @@ $(document).ready(function() { }); // end $.PMA_confirm() }); //end of Drop Table Ajax action }) // end of $(document).ready() for Drop Table + +/** + * Attach CodeMirror2 editor to SQL edit area. + */ +$(document).ready(function() { + var elm = $('#sqlquery'); + if (elm) { + codemirror_editor = CodeMirror.fromTextArea(elm[0], {lineNumbers: true, matchBrackets: true, indentUnit: 4, mode: "text/x-mysql"}); + } +}) diff --git a/js/sql.js b/js/sql.js index 32a5bbaf1a..b334b5f42b 100644 --- a/js/sql.js +++ b/js/sql.js @@ -66,7 +66,7 @@ function appendInlineAnchor() { if (disp_mode == 'vertical') { // there can be one or two tr containing this class, depending - // on the ModifyDeleteAtLeft and ModifyDeleteAtRight cfg parameters + // on the RowActionLinks cfg parameter $('#table_results tr') .find('.edit_row_anchor') .removeClass('edit_row_anchor') diff --git a/libraries/config.default.php b/libraries/config.default.php index 5739618349..26397d6d46 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -2249,20 +2249,14 @@ $cfg['CharTextareaRows'] = 2; $cfg['LimitChars'] = 50; /** - * show edit/delete links on left side of browse - * (or at the top with vertical browse) + * Where to show the edit/inline_edit/delete links in browse mode + * Possible values are 'left', 'right', 'both' and 'none'; + * which will be interpreted as 'top', 'bottom', 'both' and 'none' + * respectively for vertical display mode * - * @global boolean $cfg['ModifyDeleteAtLeft'] + * @global string $cfg['RowActionLinks'] */ -$cfg['ModifyDeleteAtLeft'] = true; - -/** - * show edit/delete links on right side of browse - * (or at the bottom with vertical browse) - * - * @global boolean $cfg['ModifyDeleteAtRight'] - */ -$cfg['ModifyDeleteAtRight'] = false; +$cfg['RowActionLinks'] = 'left'; /** * default display direction (horizontal|vertical|horizontalflipped) diff --git a/libraries/config.values.php b/libraries/config.values.php index d884e59a01..0e72064272 100644 --- a/libraries/config.values.php +++ b/libraries/config.values.php @@ -44,6 +44,7 @@ $cfg_db['LeftFrameDBSeparator'] = 'short_string'; $cfg_db['LeftFrameTableSeparator'] = 'short_string'; $cfg_db['NavigationBarIconic'] = array(true => __('Yes'), false => __('No'), 'both' => __('Both')); $cfg_db['Order'] = array('ASC', 'DESC', 'SMART'); +$cfg_db['RowActionLinks'] = array('none' => __('Nowhere'), 'left' => __('Left'), 'right' => __('Right'), 'both' => __('Both')); $cfg_db['ProtectBinary'] = array(false, 'blob', 'all'); $cfg_db['DefaultDisplay'] = array('horizontal', 'vertical', 'horizontalflipped'); $cfg_db['CharEditing'] = array('input', 'textarea'); diff --git a/libraries/config/messages.inc.php b/libraries/config/messages.inc.php index 034214c4c2..e76b52e303 100644 --- a/libraries/config/messages.inc.php +++ b/libraries/config/messages.inc.php @@ -314,9 +314,8 @@ $strConfigMcryptDisableWarning_desc = __('Disable the default warning that is di $strConfigMcryptDisableWarning_name = __('mcrypt warning'); $strConfigMemoryLimit_desc = __('The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] ([kbd]0[/kbd] for no limit)'); $strConfigMemoryLimit_name = __('Memory limit'); -$strConfigModifyDeleteAtLeft_desc = __('These are Edit, Inline edit, Copy and Delete links'); -$strConfigModifyDeleteAtLeft_name = __('Show table row links on left side'); -$strConfigModifyDeleteAtRight_name = __('Show table row links on right side'); +$strConfigRowActionLinks_desc = __('These are Edit, Inline edit, Copy and Delete links'); +$strConfigRowActionLinks_name = __('Where to show the table row links'); $strConfigNaturalOrder_desc = __('Use natural order for sorting table and database names'); $strConfigNaturalOrder_name = __('Natural order'); $strConfigNavigationBarIconic_desc = __('Use only icons, only text or both'); diff --git a/libraries/config/setup.forms.php b/libraries/config/setup.forms.php index 5cf5111ce2..07540912b4 100644 --- a/libraries/config/setup.forms.php +++ b/libraries/config/setup.forms.php @@ -199,8 +199,7 @@ $forms['Main_frame']['Browse'] = array( 'BrowseMarkerEnable', 'RepeatCells', 'LimitChars', - 'ModifyDeleteAtLeft', - 'ModifyDeleteAtRight', + 'RowActionLinks', 'DefaultDisplay', 'RememberSorting'); $forms['Main_frame']['Edit'] = array( diff --git a/libraries/config/user_preferences.forms.php b/libraries/config/user_preferences.forms.php index 68619c9f43..003f508cdf 100644 --- a/libraries/config/user_preferences.forms.php +++ b/libraries/config/user_preferences.forms.php @@ -109,8 +109,7 @@ $forms['Main_frame']['Browse'] = array( 'BrowseMarkerEnable', 'RepeatCells', 'LimitChars', - 'ModifyDeleteAtLeft', - 'ModifyDeleteAtRight', + 'RowActionLinks', 'DefaultDisplay', 'RememberSorting'); $forms['Main_frame']['Edit'] = array( diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index ca8041ba38..c9e04f31db 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -661,7 +661,8 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $ // ... at the left column of the result table header if possible // and required - elseif ($GLOBALS['cfg']['ModifyDeleteAtLeft'] && $is_display['text_btn'] == '1') { + elseif (($GLOBALS['cfg']['RowActionLinks'] == 'left' || $GLOBALS['cfg']['RowActionLinks'] == 'both') + && $is_display['text_btn'] == '1') { $vertical_display['emptypre'] = ($is_display['edit_lnk'] != 'nn' && $is_display['del_lnk'] != 'nn') ? 4 : 0; if ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontal' || $_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped') { @@ -677,7 +678,7 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $ } // ... elseif no button, displays empty(ies) col(s) if required - elseif ($GLOBALS['cfg']['ModifyDeleteAtLeft'] + elseif (($GLOBALS['cfg']['RowActionLinks'] == 'left' || $GLOBALS['cfg']['RowActionLinks'] == 'both') && ($is_display['edit_lnk'] != 'nn' || $is_display['del_lnk'] != 'nn')) { $vertical_display['emptypre'] = ($is_display['edit_lnk'] != 'nn' && $is_display['del_lnk'] != 'nn') ? 4 : 0; if ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontal' @@ -691,6 +692,12 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $ } // end vertical mode } + // ... elseif display an empty column if the actions links are disabled to match the rest of the table + elseif ($GLOBALS['cfg']['RowActionLinks'] == 'none' && ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontal' + || $_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped')) { + echo ''; + } + // 2. Displays the fields' name // 2.0 If sorting links should be used, checks if the query is a "JOIN" // statement (see 2.1.3) @@ -912,9 +919,9 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $ // 3. Displays the needed checkboxes at the right // column of the result table header if possible and required... - if ($GLOBALS['cfg']['ModifyDeleteAtRight'] - && ($is_display['edit_lnk'] != 'nn' || $is_display['del_lnk'] != 'nn') - && $is_display['text_btn'] == '1') { + if (($GLOBALS['cfg']['RowActionLinks'] == 'right' || $GLOBALS['cfg']['RowActionLinks'] == 'both') + && ($is_display['edit_lnk'] != 'nn' || $is_display['del_lnk'] != 'nn') + && $is_display['text_btn'] == '1') { $vertical_display['emptyafter'] = ($is_display['edit_lnk'] != 'nn' && $is_display['del_lnk'] != 'nn') ? 4 : 1; if ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontal' || $_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped') { @@ -933,7 +940,7 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $ // ... elseif no button, displays empty columns if required // (unless coming from Browse mode print view) - elseif ($GLOBALS['cfg']['ModifyDeleteAtRight'] + elseif (($GLOBALS['cfg']['RowActionLinks'] == 'left' || $GLOBALS['cfg']['RowActionLinks'] == 'both') && ($is_display['edit_lnk'] == 'nn' && $is_display['del_lnk'] == 'nn') && (!$GLOBALS['is_header_sent'])) { $vertical_display['emptyafter'] = ($is_display['edit_lnk'] != 'nn' && $is_display['del_lnk'] != 'nn') ? 4 : 1; @@ -1249,13 +1256,20 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { } // end if (1.2.2) // 1.3 Displays the links at left if required - if ($GLOBALS['cfg']['ModifyDeleteAtLeft'] - && ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontal' - || $_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped')) { + if (($GLOBALS['cfg']['RowActionLinks'] == 'left' || $GLOBALS['cfg']['RowActionLinks'] == 'both') + && ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontal' + || $_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped')) { if (! isset($js_conf)) { $js_conf = ''; } echo PMA_generateCheckboxAndLinks('left', $del_url, $is_display, $row_no, $where_clause, $where_clause_html, $del_query, 'l', $edit_url, $copy_url, $edit_anchor_class, $edit_str, $copy_str, $del_str, $js_conf); + } else if (($GLOBALS['cfg']['RowActionLinks'] == 'none') + && ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontal' + || $_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped')) { + if (! isset($js_conf)) { + $js_conf = ''; + } + echo PMA_generateCheckboxAndLinks('none', $del_url, $is_display, $row_no, $where_clause, $where_clause_html, $del_query, 'l', $edit_url, $copy_url, $edit_anchor_class, $edit_str, $copy_str, $del_str, $js_conf); } // end if (1.3) } // end if (1) @@ -1465,13 +1479,13 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { } // end for (2) // 3. Displays the modify/delete links on the right if required - if ($GLOBALS['cfg']['ModifyDeleteAtRight'] - && ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontal' - || $_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped')) { - if (! isset($js_conf)) { - $js_conf = ''; - } - echo PMA_generateCheckboxAndLinks('right', $del_url, $is_display, $row_no, $where_clause, $where_clause_html, $del_query, 'r', $edit_url, $copy_url, $edit_anchor_class, $edit_str, $copy_str, $del_str, $js_conf); + if (($GLOBALS['cfg']['RowActionLinks'] == 'right' || $GLOBALS['cfg']['RowActionLinks'] == 'both') + && ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontal' + || $_SESSION['tmp_user_values']['disp_direction'] == 'horizontalflipped')) { + if (! isset($js_conf)) { + $js_conf = ''; + } + echo PMA_generateCheckboxAndLinks('right', $del_url, $is_display, $row_no, $where_clause, $where_clause_html, $del_query, 'r', $edit_url, $copy_url, $edit_anchor_class, $edit_str, $copy_str, $del_str, $js_conf); } // end if (3) if ($_SESSION['tmp_user_values']['disp_direction'] == 'horizontal' @@ -1551,15 +1565,19 @@ function PMA_displayVerticalTable() global $vertical_display; // Displays "multi row delete" link at top if required - if ($GLOBALS['cfg']['ModifyDeleteAtLeft'] && is_array($vertical_display['row_delete']) && (count($vertical_display['row_delete']) > 0 || !empty($vertical_display['textbtn']))) { + if (($GLOBALS['cfg']['RowActionLinks'] != 'right') + && is_array($vertical_display['row_delete']) && (count($vertical_display['row_delete']) > 0 || !empty($vertical_display['textbtn']))) { echo '' . "\n"; + if ($GLOBALS['cfg']['RowActionLinks'] == 'none') { + // if we are not showing the RowActionLinks, then we need to show the Multi-Row-Action checkboxes + echo '' . "\n"; + } echo $vertical_display['textbtn']; $foo_counter = 0; foreach ($vertical_display['row_delete'] as $val) { if (($foo_counter != 0) && ($_SESSION['tmp_user_values']['repeat_cells'] != 0) && !($foo_counter % $_SESSION['tmp_user_values']['repeat_cells'])) { echo '' . "\n"; } - echo str_replace('[%_PMA_CHECKBOX_DIR_%]', '_left', $val); $foo_counter++; } // end while @@ -1567,7 +1585,8 @@ function PMA_displayVerticalTable() } // end if // Displays "edit" link at top if required - if ($GLOBALS['cfg']['ModifyDeleteAtLeft'] && is_array($vertical_display['edit']) && (count($vertical_display['edit']) > 0 || !empty($vertical_display['textbtn']))) { + if (($GLOBALS['cfg']['RowActionLinks'] == 'left' || $GLOBALS['cfg']['RowActionLinks'] == 'both') + && is_array($vertical_display['edit']) && (count($vertical_display['edit']) > 0 || !empty($vertical_display['textbtn']))) { echo '' . "\n"; if (! is_array($vertical_display['row_delete'])) { echo $vertical_display['textbtn']; @@ -1585,7 +1604,8 @@ function PMA_displayVerticalTable() } // end if // Displays "copy" link at top if required - if ($GLOBALS['cfg']['ModifyDeleteAtLeft'] && is_array($vertical_display['copy']) && (count($vertical_display['copy']) > 0 || !empty($vertical_display['textbtn']))) { + if (($GLOBALS['cfg']['RowActionLinks'] == 'left' || $GLOBALS['cfg']['RowActionLinks'] == 'both') + && is_array($vertical_display['copy']) && (count($vertical_display['copy']) > 0 || !empty($vertical_display['textbtn']))) { echo '' . "\n"; if (! is_array($vertical_display['row_delete'])) { echo $vertical_display['textbtn']; @@ -1603,7 +1623,8 @@ function PMA_displayVerticalTable() } // end if // Displays "delete" link at top if required - if ($GLOBALS['cfg']['ModifyDeleteAtLeft'] && is_array($vertical_display['delete']) && (count($vertical_display['delete']) > 0 || !empty($vertical_display['textbtn']))) { + if (($GLOBALS['cfg']['RowActionLinks'] == 'left' || $GLOBALS['cfg']['RowActionLinks'] == 'both') + && is_array($vertical_display['delete']) && (count($vertical_display['delete']) > 0 || !empty($vertical_display['textbtn']))) { echo '' . "\n"; if (! is_array($vertical_display['edit']) && ! is_array($vertical_display['row_delete'])) { echo $vertical_display['textbtn']; @@ -1640,7 +1661,8 @@ function PMA_displayVerticalTable() } // end while // Displays "multi row delete" link at bottom if required - if ($GLOBALS['cfg']['ModifyDeleteAtRight'] && is_array($vertical_display['row_delete']) && (count($vertical_display['row_delete']) > 0 || !empty($vertical_display['textbtn']))) { + if (($GLOBALS['cfg']['RowActionLinks'] == 'right' || $GLOBALS['cfg']['RowActionLinks'] == 'both') + && is_array($vertical_display['row_delete']) && (count($vertical_display['row_delete']) > 0 || !empty($vertical_display['textbtn']))) { echo '' . "\n"; echo $vertical_display['textbtn']; $foo_counter = 0; @@ -1656,7 +1678,8 @@ function PMA_displayVerticalTable() } // end if // Displays "edit" link at bottom if required - if ($GLOBALS['cfg']['ModifyDeleteAtRight'] && is_array($vertical_display['edit']) && (count($vertical_display['edit']) > 0 || !empty($vertical_display['textbtn']))) { + if (($GLOBALS['cfg']['RowActionLinks'] == 'right' || $GLOBALS['cfg']['RowActionLinks'] == 'both') + && is_array($vertical_display['edit']) && (count($vertical_display['edit']) > 0 || !empty($vertical_display['textbtn']))) { echo '' . "\n"; if (! is_array($vertical_display['row_delete'])) { echo $vertical_display['textbtn']; @@ -1674,7 +1697,8 @@ function PMA_displayVerticalTable() } // end if // Displays "copy" link at bottom if required - if ($GLOBALS['cfg']['ModifyDeleteAtRight'] && is_array($vertical_display['copy']) && (count($vertical_display['copy']) > 0 || !empty($vertical_display['textbtn']))) { + if (($GLOBALS['cfg']['RowActionLinks'] == 'right' || $GLOBALS['cfg']['RowActionLinks'] == 'both') + && is_array($vertical_display['copy']) && (count($vertical_display['copy']) > 0 || !empty($vertical_display['textbtn']))) { echo '' . "\n"; if (! is_array($vertical_display['row_delete'])) { echo $vertical_display['textbtn']; @@ -1692,7 +1716,8 @@ function PMA_displayVerticalTable() } // end if // Displays "delete" link at bottom if required - if ($GLOBALS['cfg']['ModifyDeleteAtRight'] && is_array($vertical_display['delete']) && (count($vertical_display['delete']) > 0 || !empty($vertical_display['textbtn']))) { + if (($GLOBALS['cfg']['RowActionLinks'] == 'right' || $GLOBALS['cfg']['RowActionLinks'] == 'both') + && is_array($vertical_display['delete']) && (count($vertical_display['delete']) > 0 || !empty($vertical_display['textbtn']))) { echo '' . "\n"; if (! is_array($vertical_display['edit']) && ! is_array($vertical_display['row_delete'])) { echo $vertical_display['textbtn']; @@ -2680,6 +2705,8 @@ function PMA_generateCheckboxAndLinks($position, $del_url, $is_display, $row_no, $ret .= PMA_generateEditLink($edit_url, $class, $edit_str, $where_clause, $where_clause_html, ''); $ret .= PMA_generateCheckboxForMulti($del_url, $is_display, $row_no, $where_clause_html, $del_query, $id_suffix='_right', '', '', ''); + } else { // $position == 'none' + $ret .= PMA_generateCheckboxForMulti($del_url, $is_display, $row_no, $where_clause_html, $del_query, $id_suffix='_left', '', '', ''); } return $ret; } diff --git a/libraries/header_scripts.inc.php b/libraries/header_scripts.inc.php index c25aa990ea..98b28c4be8 100644 --- a/libraries/header_scripts.inc.php +++ b/libraries/header_scripts.inc.php @@ -39,6 +39,9 @@ if (isset($GLOBALS['db'])) { $params['db'] = $GLOBALS['db']; } $GLOBALS['js_include'][] = 'messages.php' . PMA_generate_common_url($params); +$GLOBALS['js_include'][] = 'codemirror/lib/codemirror.js'; +/* We should rather use/define MySQL mode here */ +$GLOBALS['js_include'][] = 'codemirror/mode/mysql/mysql.js'; /** * Here we add a timestamp when loading the file, so that users who diff --git a/po/af.po b/po/af.po index c43bac9750..e27e2f725f 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal \n" "Language-Team: afrikaans \n" @@ -198,7 +198,7 @@ msgstr "Kommentaar" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -214,7 +214,7 @@ msgstr "Nee" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -364,7 +364,7 @@ msgid "Edit or export relational schema" msgstr "Vertoon PDF skema" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -433,19 +433,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Sorteer" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Dalend" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -559,8 +559,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -634,7 +634,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -662,20 +662,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +686,15 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Drukker mooi (print view)" @@ -752,7 +752,7 @@ msgstr "" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -941,7 +941,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1177,8 +1177,8 @@ msgstr "" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1930,13 +1930,13 @@ msgstr "" msgid "Tables" msgstr "Tabel" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2044,7 +2044,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2106,7 +2106,7 @@ msgstr "MySQL het gepraat: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Verduidelik SQL" @@ -2118,11 +2118,11 @@ msgstr "Ignoreer SQL Verduideliking" msgid "Without PHP Code" msgstr "Sonder PHP Kode" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Skep PHP Kode" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "" @@ -2131,7 +2131,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "Ignoreer SQL Validasie" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Valideer SQL" @@ -2229,11 +2229,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2279,21 +2279,34 @@ msgstr "" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Ongebalanseerde kwotasie-teken" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2301,13 +2314,13 @@ msgstr "Ongebalanseerde kwotasie-teken" msgid "structure" msgstr "Struktuur" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2315,35 +2328,35 @@ msgstr "" msgid "structure and data" msgstr "Struktuur en data" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Voltooi invoegings" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Uitgebreide toevoegings" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2430,7 +2443,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2915,10 +2928,10 @@ msgstr "" msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV data" @@ -3488,7 +3501,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3544,344 +3557,340 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Verander tabel sorteer volgens" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Hernoem tabel na" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Geen tabelle" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "Geen databasisse" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "Bediener Keuse" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3890,321 +3899,321 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Databasis" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "Bediener Keuse" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analiseer tabel" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Herstel tabel" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "Bediener Keuse" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Kolom Kommentaar word vertoon" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Stellings" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy msgid "Automatically create versions" msgstr "Bediener weergawe" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy msgid "Show field types" msgstr "Wys tabelle" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Ry Statistiek" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4212,28 +4221,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4243,91 +4252,91 @@ msgstr "" msgid "Password" msgstr "Wagwoord" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "Gebruiker Naam:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Verstekwaarde (default)" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4335,56 +4344,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4392,13 +4401,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4418,62 +4427,62 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 #, fuzzy msgid "Database export options" msgstr "Databasis statistieke" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV vir M$ Excel data" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4560,7 +4569,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4976,61 +4985,61 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Die ry is verwyder" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Vermoor" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "in navraag" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Vertoon rye" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "totaal" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "Kolom Kommentaar word vertoon" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Bediener weergawe" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Skakel nie gevind nie" diff --git a/po/ar.po b/po/ar.po index a3378efee8..78129e915c 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-04-21 13:56+0200\n" "Last-Translator: \n" "Language-Team: arabic \n" @@ -201,7 +201,7 @@ msgstr "تعليقات" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -217,7 +217,7 @@ msgstr "لا" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -361,7 +361,7 @@ msgid "Edit or export relational schema" msgstr "بناء الارتباطات" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -429,19 +429,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "تصنيف" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "تصاعديا" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -559,8 +559,8 @@ msgstr "استعراض" msgid "Delete the matches for the %s table?" msgstr "إرجاع أو استيراد بيانات الجدول" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -638,7 +638,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -666,20 +666,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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" @@ -690,15 +690,15 @@ msgid "Check tables having overhead" msgstr "تحقق من overhead" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "عرض نسخة للطباعة" @@ -758,7 +758,7 @@ msgstr "قاموس البيانات" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -944,7 +944,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1197,8 +1197,8 @@ msgstr "" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1949,13 +1949,13 @@ msgstr "" msgid "Tables" msgstr "جداول" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2062,7 +2062,7 @@ msgstr "فهرس خادم غير صحيح: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2124,7 +2124,7 @@ msgstr "MySQL قال: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "اشرح SQL" @@ -2136,11 +2136,11 @@ msgstr "تخطي شرح SQL" msgid "Without PHP Code" msgstr "بدون كود PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "أنشئ كود PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "حدث" @@ -2149,7 +2149,7 @@ msgstr "حدث" msgid "Skip Validate SQL" msgstr "تخطي التأكد من SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "التحقق من استعلام SQL" @@ -2247,11 +2247,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2298,34 +2298,47 @@ msgstr "الدليل الذي حددته لتحميل عملك لا يمكن ا msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Close" msgid "Closed" msgstr "أغلق" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2333,35 +2346,35 @@ msgstr "" msgid "structure and data" msgstr "البنية والبيانات" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "لقد اكتمل الإدخال" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "إدخال مدد" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2450,7 +2463,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2944,10 +2957,10 @@ msgstr "" msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "سي إس في" @@ -3519,7 +3532,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3575,347 +3588,343 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "تعديل ترتيب الجدول بـ" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "نافذة الاستعلام" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "نافذة الاستعلام" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "نافذة الاستعلام" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "تغيير اسم جدول إلى" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3924,315 +3933,315 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "اسم قاعدة البيانات" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "تحليل الجدول" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "إظهار تعليقات العمود" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "أوامر" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4240,28 +4249,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4271,90 +4280,90 @@ msgstr "" msgid "Password" msgstr "كلمة السر" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "اسم المستخدم" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "إضافه/حذف عمود حقل" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "افتراضي" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4362,56 +4371,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4419,13 +4428,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "زيب" @@ -4445,63 +4454,63 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 #, fuzzy #| msgid "Database export options" msgid "Database export options" msgstr "خيارات تصدير قاعدة بيانات" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "بيانات CSV لبرنامج ميكروسوفت إكسل" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4588,7 +4597,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5015,62 +5024,62 @@ msgstr "" msgid "Browser transformation" msgstr "تحويل المتصفح" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "لقد تم حذف الصف" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "إبطال" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "في الاستعلام" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "مشاهدة السجلات " -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "المجموع" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "استغرق الاستعلام %01.4f ثانية" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "عرض الطباعة (مع النصوص الكاملة)." -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "إظهار بناء ملف PDF" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "تكوين" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "لم يمكن إيجاد الوصلة" diff --git a/po/az.po b/po/az.po index 6b6d8372b7..6867008740 100644 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" @@ -195,7 +195,7 @@ msgstr "Qısa İzahatlar" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -211,7 +211,7 @@ msgstr "Xeyir" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -362,7 +362,7 @@ msgid "Edit or export relational schema" msgstr "Relational schema" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -430,19 +430,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Sırala" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Artan sırada" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -556,8 +556,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -631,7 +631,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -660,20 +660,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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" @@ -684,15 +684,15 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Çap görüntüsü" @@ -750,7 +750,7 @@ msgstr "Me'lumat lüğeti" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -941,7 +941,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1194,8 +1194,8 @@ msgstr "Motorlar" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1948,13 +1948,13 @@ msgstr "" msgid "Tables" msgstr "Cedveller" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2061,7 +2061,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2123,7 +2123,7 @@ msgstr "MySQL deyir: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "SQL-i İzah Et" @@ -2135,11 +2135,11 @@ msgstr "SQL İzah Et-i Keç" msgid "Without PHP Code" msgstr "PHP Kodunu Gösterme" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP Kodunu Hazırla" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "" @@ -2148,7 +2148,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "SQL İfadesini Yoxlama" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "SQL Tesdiqle" @@ -2248,11 +2248,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2299,21 +2299,34 @@ msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Unclosed quote" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2321,13 +2334,13 @@ msgstr "Unclosed quote" msgid "structure" msgstr "Quruluş" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2335,35 +2348,35 @@ msgstr "" msgid "structure and data" msgstr "Quruluş ve me'lumat" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Tam girişli" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Genişletilmiş girişli" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2452,7 +2465,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2948,10 +2961,10 @@ msgstr "" msgid "Customize default options" msgstr "Me'lumat bazası eksport variantları" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV verilenleri" @@ -3529,7 +3542,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3586,351 +3599,347 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Cedvel sırasına buna göre yeniden qur" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Sorğu penceresi" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Sorğu penceresi" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Sorğu penceresi" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Cedveli yeniden adlandır" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "Elaqeler" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Cedvel yoxdur" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "Quraşdırılmış Serverler" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3939,323 +3948,323 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Me'lumat Bazası" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "Quraşdırılmış Serverler" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Cedveli analiz et" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Cedveli te'mir et" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "Quraşdırılmış Serverler" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Sütun Qısa İzahatını Deyişdir" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Variantlar" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Avtomatik qurtarma rejimi" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy msgid "Show field types" msgstr "Cedvelleri göster" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "Emrleri Tam Olaraq Göster" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Sıra Statistikası" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4263,28 +4272,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4294,91 +4303,91 @@ msgstr "" msgid "Password" msgstr "Parol" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "İstifadeçi Adı:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Başlanğıc deyeri" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4386,56 +4395,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4443,13 +4452,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4469,61 +4478,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Me'lumat bazası eksport variantları" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel verilenleri üçün CSV" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4610,7 +4619,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5037,61 +5046,61 @@ msgstr "" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Setir silindi" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Söndür" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Gösterilen setirler" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "cemi" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "sorğu %01.4f saniyede icra edildi" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF sxemini göster" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Server versiyası" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Link tapılmadı" diff --git a/po/be.po b/po/be.po index b59d9623ab..bca7ba6610 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" @@ -200,7 +200,7 @@ msgstr "Камэнтары" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -216,7 +216,7 @@ msgstr "Не" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -363,7 +363,7 @@ msgid "Edit or export relational schema" msgstr "Рэляцыйная схема" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -431,19 +431,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Парадак" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "прамы" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -557,8 +557,8 @@ msgstr "Прагляд" msgid "Delete the matches for the %s table?" msgstr "Дамп дадзеных табліцы" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -632,7 +632,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -664,20 +664,20 @@ msgstr "" "сэрвэры." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +688,15 @@ msgid "Check tables having overhead" msgstr "Адзначыць тыя, што патрабуюць аптымізацыі" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Вэрсія для друку" @@ -756,7 +756,7 @@ msgstr "Слоўнік дадзеных" msgid "Tracked tables" msgstr "Праверыць табліцу" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -964,7 +964,7 @@ msgstr "" "вы не павялічыце ліміты выкананьня php-скрыптоў." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1221,8 +1221,8 @@ msgstr "Машыны" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1997,13 +1997,13 @@ msgstr "" msgid "Tables" msgstr "Табліц" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2114,7 +2114,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Няправільнае імя хосту для сэрвэра %1$s. Калі ласка, праверце канфігурыцыю." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2176,7 +2176,7 @@ msgstr "Адказ MySQL: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Тлумачыць SQL" @@ -2188,11 +2188,11 @@ msgstr "Не тлумачыць SQL" msgid "Without PHP Code" msgstr "Без PHP-коду" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Стварыць PHP-код" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Абнавіць" @@ -2201,7 +2201,7 @@ msgstr "Абнавіць" msgid "Skip Validate SQL" msgstr "Не правяраць SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Праверыць SQL" @@ -2302,11 +2302,11 @@ msgstr "" "Існуе вядомая памылка з выкарыстаньнем парамэтра %s, глядзіце апісаньне на %s" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2353,21 +2353,34 @@ msgstr "Немагчыма адкрыць пазначаную вамі тэчк msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Незакрытае двукосьсе" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2375,13 +2388,13 @@ msgstr "Незакрытае двукосьсе" msgid "structure" msgstr "Структура" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2389,35 +2402,35 @@ msgstr "" msgid "structure and data" msgstr "Структуру і дадзеныя" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Поўная ўстаўка" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Пашыраныя ўстаўкі" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2505,7 +2518,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3001,10 +3014,10 @@ msgstr "" msgid "Customize default options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3597,7 +3610,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3655,360 +3668,356 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Зьмяніць парадак табліцы" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Акно запыту" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Акно запыту" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Акно запыту" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Перайменаваць табліцу ў" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Патокаў узнаўленьня" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 #, fuzzy msgid "Save directory" msgstr "Хатняя тэчка дадзеных" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 #, fuzzy msgid "Host authorization order" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 #, fuzzy msgid "Host authorization rules" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 #, fuzzy msgid "Authentication method to use" msgstr "Аўтэнтыфікацыя..." -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 #, fuzzy msgid "Authentication type" msgstr "Аўтэнтыфікацыя..." -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "Падлучэньні" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Няма табліц" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 #, fuzzy msgid "Designer table" msgstr "Дэфрагмэнтаваць табліцу" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 #, fuzzy msgid "PHP extension to use" msgstr "Пашырэньне PHP" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "імя сэрвэра" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4017,326 +4026,326 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "імя базы дадзеных" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "ID сэрвэра" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Аналізаваць табліцу" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Рамантаваць табліцу" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "Выбар сэрвэра" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Паказваць камэнтары калёнак" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Дэфрагмэнтаваць табліцу" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Выразы" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Рэжым аўтаматычнага ўзнаўленьня" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Паказаць адкрытыя табліцы" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "Паказаць поўныя запыты" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Статыстыка радку" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4344,29 +4353,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Skip locked tables" msgstr "Паказаць адкрытыя табліцы" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4376,90 +4385,90 @@ msgstr "" msgid "Password" msgstr "Пароль" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "Імя карыстальніка:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy msgid "Default title" msgstr "Перайменаваць базу дадзеных у" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4467,57 +4476,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 #, fuzzy msgid "Upload directory" msgstr "Хатняя тэчка дадзеных" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4525,13 +4534,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4555,63 +4564,63 @@ msgstr "Апаратная аўтэнтыфікацыя скончылася н msgid "Signon authentication" msgstr "Апаратная аўтэнтыфікацыя скончылася няўдала" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV з выкарыстаньнем LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Спэцыфікацыя Open Document" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Іншы колер" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Налады экспарту базы дадзеных" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV для дадзеных MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Тэкст Open Document" @@ -4698,7 +4707,7 @@ msgstr "Працэдуры" msgid "Return type" msgstr "Тып працэдуры" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5152,61 +5161,61 @@ msgstr "" msgid "Browser transformation" msgstr "Пераўтварэньне MIME-тыпу браўзэрам" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Скапіяваць" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Радок быў выдалены" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Спыніць" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "па запыту" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Паказаныя запісы" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "усяго" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Запыт выконваўся %01.4f сэк" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Дзеяньні з вынікамі запытаў" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Вэрсія для друку (з усім тэкстам)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Паказаць PDF-схему" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Стварыць сувязь" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Сувязь ня знойдзеная" diff --git a/po/be@latin.po b/po/be@latin.po index a6502942da..239609f4de 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" @@ -202,7 +202,7 @@ msgstr "Kamentary" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -218,7 +218,7 @@ msgstr "Nie" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -366,7 +366,7 @@ msgid "Edit or export relational schema" msgstr "Relacyjnaja schiema" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -435,19 +435,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Paradak" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "pramy" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -562,8 +562,8 @@ msgstr "Prahlad" msgid "Delete the matches for the %s table?" msgstr "Damp dadzienych tablicy" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -638,7 +638,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -670,20 +670,20 @@ msgstr "" "servery." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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" @@ -694,15 +694,15 @@ msgid "Check tables having overhead" msgstr "Adznačyć tyja, što patrabujuć aptymizacyi" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Versija dla druku" @@ -760,7 +760,7 @@ msgstr "Słoŭnik dadzienych" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -961,7 +961,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:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1222,8 +1222,8 @@ msgstr "Mašyny" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -2002,13 +2002,13 @@ msgstr "" msgid "Tables" msgstr "Tablic" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2122,7 +2122,7 @@ msgstr "" "Niapravilnaje imia chostu dla servera %1$s. Kali łaska, praviercie " "kanfihurycyju." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2184,7 +2184,7 @@ msgstr "Adkaz MySQL: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Tłumačyć SQL" @@ -2196,11 +2196,11 @@ msgstr "Nie tłumačyć SQL" msgid "Without PHP Code" msgstr "Biez PHP-kodu" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Stvaryć PHP-kod" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Abnavić" @@ -2209,7 +2209,7 @@ msgstr "Abnavić" msgid "Skip Validate SQL" msgstr "Nie praviarać SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Pravieryć SQL" @@ -2311,11 +2311,11 @@ msgstr "" "na %s" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2362,34 +2362,47 @@ msgstr "Niemahčyma adkryć paznačanuju vami tečku dla zahruzki fajłaŭ" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Niezakrytaje dvukośsie" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2397,35 +2410,35 @@ msgstr "" msgid "structure and data" msgstr "Strukturu i dadzienyja" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Poŭnaja ŭstaŭka" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Pašyranyja ŭstaŭki" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2514,7 +2527,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -3004,10 +3017,10 @@ msgstr "" msgid "Customize default options" msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3585,7 +3598,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3641,349 +3654,345 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Źmianić paradak tablicy" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Akno zapytu" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Akno zapytu" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Akno zapytu" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Pierajmienavać tablicu ŭ" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Patokaŭ uznaŭleńnia" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3992,321 +4001,321 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "imia bazy dadzienych" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analizavać tablicu" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Pakazvać kamentary kalonak" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defrahmentavać tablicu" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Vyrazy" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Režym aŭtamatyčnaha ŭznaŭleńnia" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Pakazać adkrytyja tablicy" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4314,28 +4323,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4345,90 +4354,90 @@ msgstr "" msgid "Password" msgstr "Parol" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dadać/vydalić kalonku kryteru" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Pa zmoŭčańni" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4436,56 +4445,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4493,13 +4502,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4527,65 +4536,65 @@ msgstr "Aŭtentyfikacyja..." msgid "Signon authentication" msgstr "Aŭtentyfikacyja..." -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV z vykarystańniem LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Specyfikacyja Open Document" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Inšy koler" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 #, fuzzy #| msgid "Database export options" msgid "Database export options" msgstr "Nałady ekspartu bazy dadzienych" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV dla dadzienych MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Tekst Open Document" @@ -4672,7 +4681,7 @@ msgstr "Pracedury" msgid "Return type" msgstr "Typ pracedury" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5126,62 +5135,62 @@ msgstr "" msgid "Browser transformation" msgstr "Pieraŭtvareńnie MIME-typu braŭzeram" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Skapijavać" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Radok byŭ vydaleny" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Spynić" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "pa zapytu" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Pakazanyja zapisy" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "usiaho" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Zapyt vykonvaŭsia %01.4f sek" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Versija dla druku (z usim tekstam)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Pakazać PDF-schiemu" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Stvaryć" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Suviaź nia znojdzienaja" diff --git a/po/bg.po b/po/bg.po index 290b0f111a..e27f2373dd 100644 --- a/po/bg.po +++ b/po/bg.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-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-05-28 14:02+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" @@ -199,7 +199,7 @@ msgstr "Коментари" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "Не" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -354,7 +354,7 @@ msgid "Edit or export relational schema" msgstr "Редакция или експорт на релационна схема" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -421,19 +421,19 @@ msgid "visual builder" msgstr "строител" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Сортиране" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Възходящо" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -541,8 +541,8 @@ msgstr "Прелистване" msgid "Delete the matches for the %s table?" msgstr "Изтриване на съвпаденията от таблицата %s?" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -611,7 +611,7 @@ msgstr "Проследяването е активно." msgid "Tracking is not active." msgstr "Проследяването е неактивно." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -639,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +663,15 @@ msgid "Check tables having overhead" msgstr "Маркиране на таблиците със загубено място" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Преглед за печат" @@ -725,7 +725,7 @@ msgstr "Речник на данните" msgid "Tracked tables" msgstr "Следени таблици" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -923,7 +923,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1140,8 +1140,8 @@ msgstr "Бърза редакция" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1847,13 +1847,13 @@ msgstr "споделен" msgid "Tables" msgstr "Таблици" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1955,7 +1955,7 @@ msgstr "Невалиден индекс на сървър: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Невалиден хост за сървър %1$s. Прегледайте конфигурацията." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2017,7 +2017,7 @@ msgstr "MySQL отговори: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Обяснение на SQL" @@ -2029,11 +2029,11 @@ msgstr "Пропусни Explain SQL" msgid "Without PHP Code" msgstr "Без PHP код" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Създаване на PHP код" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Презареждане" @@ -2042,7 +2042,7 @@ msgstr "Презареждане" msgid "Skip Validate SQL" msgstr "Пропусни Validate SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Валидирай SQL-а" @@ -2140,11 +2140,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Функционалността %s се влияе от известен дефект, вж. %s" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2190,62 +2190,77 @@ msgstr "Директорията която сте указали за upload н msgid "There are no files to upload" msgstr "Няма файлве за качване" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "И двете" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "Височина" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Отворен" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Затворен" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "структура" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "данни" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "структура и данни" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "пълни INSERT-и" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "разширени INSERT-и" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "и двете по-горе" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "никое от горните" @@ -2330,7 +2345,7 @@ msgid "Set value: %s" msgstr "Стойност: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Стойност по подразбиране" @@ -2792,10 +2807,10 @@ msgstr "" msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3345,7 +3360,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3401,339 +3416,335 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Височина на прозореца за заявки" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Ширина на прозореца за заявки (в пиксели)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Ширина на прозореца за заявки" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Преименуване на таблицата на" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Повтаряне на заглавката" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Таблица за белязки" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Тип връзки" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Брой таблици" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "Кое PHP разширение да бъде използвано; ползвайте mysqli ако е налично" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Използвано PHP разширение" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3742,311 +3753,311 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Име БД" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Порт на сървъра" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Анализиране на таблицата" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Сокет на сървъра" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Показване таблица с колоните" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Дефрагментиране на таблица" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Показване типовете полета" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Показване статистика" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4054,28 +4065,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Пропускане заключени таблици" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4085,86 +4096,86 @@ msgstr "" msgid "Password" msgstr "Парола" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Потребителско име" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Заглавие по подразбиране" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4172,56 +4183,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4229,13 +4240,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4255,61 +4266,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV с LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "Бърз" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Опции за експорт на БД" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV за MS Excel данни" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4396,7 +4407,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4776,58 +4787,58 @@ msgstr "Показване на BLOB-данните" msgid "Browser transformation" msgstr "Браузърна трансформация" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Копиране" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Редът беше изтрит" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Спиране" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "в зявката" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Показване на записи" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "общо" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Заявката отне %01.4f секунди" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Операции с резулатата от заявката" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Преглед за печат (с пълните текстове)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "Показване на диаграма" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "Създаване на изглед" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Връзките не са намерени" diff --git a/po/bn.po b/po/bn.po index c82332776e..04419ae9c2 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-10-21 01:36+0200\n" "Last-Translator: Nobin নবীন \n" "Language-Team: bangla \n" @@ -197,7 +197,7 @@ msgstr "মন্তব্যসমূহ" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -213,7 +213,7 @@ msgstr "না" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -360,7 +360,7 @@ msgid "Edit or export relational schema" msgstr "Relational schema" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -428,19 +428,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "সাজাঁন" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Ascending" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -554,8 +554,8 @@ msgstr "ব্রাউজ করুন" msgid "Delete the matches for the %s table?" msgstr "টেবিল এর জন্য ডাটা ডাম্পিং করুন" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -629,7 +629,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -657,20 +657,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +681,15 @@ msgid "Check tables having overhead" msgstr "ওভারহেড সহ টেবিল পরীক্ষা কর" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Print view" @@ -749,7 +749,7 @@ msgstr "ডাটা অভিধান" msgid "Tracked tables" msgstr "টেবিল পরীক্ষা কর" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -952,7 +952,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:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1208,8 +1208,8 @@ msgstr "ইঞ্জিনসমূহ" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1975,13 +1975,13 @@ msgstr "" msgid "Tables" msgstr "টেবিলসমূহ" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2091,7 +2091,7 @@ msgstr "Invalid server index: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2153,7 +2153,7 @@ msgstr "MySQL said: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "SQL ব্যাখ্যা কর" @@ -2165,11 +2165,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "PHP কোড ছাড়া" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP কোড তৈরী করুনCreate PHP Code" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Refresh" @@ -2178,7 +2178,7 @@ msgstr "Refresh" msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Validate SQL" @@ -2278,11 +2278,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2329,21 +2329,34 @@ msgstr "The directory you set for upload work cannot be reached" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Unclosed quote" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2351,13 +2364,13 @@ msgstr "Unclosed quote" msgid "structure" msgstr "Structure" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2365,35 +2378,35 @@ msgstr "" msgid "structure and data" msgstr "Structure and data" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Complete inserts" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Extended inserts" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2481,7 +2494,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2978,10 +2991,10 @@ msgstr "" msgid "Customize default options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3575,7 +3588,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3633,356 +3646,352 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "টেবিল অর্ডার পরিবর্তন কর" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Query window" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Query window" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Query window" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "টেবিল রিনেম করুন" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "থ্রেড রিপেয়ার করুন" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 #, fuzzy msgid "Save directory" msgstr "Data home directory" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "সংযোগসমূহ" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "কোন টেবিল নাই" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 #, fuzzy msgid "Designer table" msgstr "Defragment table" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 #, fuzzy msgid "PHP extension to use" msgstr "PHP Version" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "কোন ডাটাবেজ নাই" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "সার্ভার এর নাম" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3991,326 +4000,326 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "ডাটাবেজ এর নাম" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "সার্ভারের আইডি" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "টেবিল বিশ্লেষণ কর" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "টেবিল রিপেয়ার করুন" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "Server Choice" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "কলামের মন্তব্য প্রদর্শন করা হচ্ছে" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragment table" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Statements" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automatic recovery mode" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Show open tables" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "Show Full Queries" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Row Statistics" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4318,29 +4327,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Skip locked tables" msgstr "Show open tables" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4350,90 +4359,90 @@ msgstr "" msgid "Password" msgstr "পাসওয়ার্ড" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "ব্যাবহারকারী" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Add/Delete Field Columns" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy msgid "Default title" msgstr "ডাটাবেজ রিনেম কর" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4441,57 +4450,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 #, fuzzy msgid "Upload directory" msgstr "Data home directory" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4499,13 +4508,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4525,61 +4534,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV for MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4667,7 +4676,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5118,61 +5127,61 @@ msgstr "" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "সারিটি মুছে ফেলা হয়েছে" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "মোট" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Display PDF schema" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Server version" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "লিংক পাওয়া যায়নি" diff --git a/po/bs.po b/po/bs.po index f681e0ac61..6de78005c4 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" @@ -198,7 +198,7 @@ msgstr "Komentari" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -214,7 +214,7 @@ msgstr "Ne" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -364,7 +364,7 @@ msgid "Edit or export relational schema" msgstr "Relaciona shema" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -432,19 +432,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Sortiranje" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Rastući" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -558,8 +558,8 @@ msgstr "Pregled" msgid "Delete the matches for the %s table?" msgstr "Prikaz podataka tabele" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -633,7 +633,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -662,20 +662,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +686,15 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Za štampu" @@ -752,7 +752,7 @@ msgstr "Rečnik podataka" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -943,7 +943,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1188,8 +1188,8 @@ msgstr "" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1946,13 +1946,13 @@ msgstr "" msgid "Tables" msgstr "Tabele" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2058,7 +2058,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2120,7 +2120,7 @@ msgstr "MySQL kaže: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Objasni SQL" @@ -2132,11 +2132,11 @@ msgstr "Preskoči objašnjavanje SQL-a" msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "" @@ -2145,7 +2145,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "Preskoči provjeru SQL-a" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Provjeri SQL" @@ -2243,11 +2243,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2294,21 +2294,34 @@ msgstr "Direkcija koju ste izabrali za slanje nije dostupna" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Navodnik nije zatvoren" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2316,13 +2329,13 @@ msgstr "Navodnik nije zatvoren" msgid "structure" msgstr "Struktura" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2330,35 +2343,35 @@ msgstr "" msgid "structure and data" msgstr "Struktura i podatci" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Kompletan INSERT (sa imenima polja)" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Prošireni INSERT" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2447,7 +2460,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2940,10 +2953,10 @@ msgstr "" msgid "Customize default options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV format" @@ -3519,7 +3532,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3576,351 +3589,347 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Promijeni redoslijed u tabeli" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Promjeni ime tabele u " -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "Konekcije" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Nema tabela" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "Baza ne postoji" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "Izbor servera" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3929,322 +3938,322 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Baza podataka" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "Izbor servera" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analiziraj tabelu" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Popravi tabelu" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "Izbor servera" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Prikazujem komentare kolone" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Ime" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy msgid "Automatically create versions" msgstr "Verzija servera" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy msgid "Show field types" msgstr "Prikaži tabele" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "Prikaži kompletne upite" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Statistike reda" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4252,28 +4261,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4283,91 +4292,91 @@ msgstr "" msgid "Password" msgstr "Lozinka" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dodaj/obriši kolonu" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Podrazumjevano" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4375,56 +4384,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4432,13 +4441,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4458,61 +4467,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Opcije za izvoz baze" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4599,7 +4608,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5026,61 +5035,61 @@ msgstr "" msgid "Browser transformation" msgstr "Tranformacije čitača" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Red je obrisan" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Obustavi" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "u upitu" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Verzija servera" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Veza nije pronađena" diff --git a/po/ca.po b/po/ca.po index eb49088786..26e7210272 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-02-23 09:57+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: catalan \n" @@ -199,7 +199,7 @@ msgstr "Comentaris" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "No" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -354,7 +354,7 @@ msgid "Edit or export relational schema" msgstr "Edita o exporta l'esquema relacional" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -421,19 +421,19 @@ msgid "visual builder" msgstr "constructor visual" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Classificació" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Ascendent" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -541,8 +541,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -611,7 +611,7 @@ 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:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -640,20 +640,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +664,15 @@ msgid "Check tables having overhead" msgstr "Comprova taules desfragmentades" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Imprimeix vista" @@ -732,7 +732,7 @@ msgstr "Diccionari de Dades" msgid "Tracked tables" msgstr "Taules seguides" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -931,7 +931,7 @@ msgstr "" "incrementeu els límits de temps de php." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1161,8 +1161,8 @@ msgstr "Edició en linia" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1880,13 +1880,13 @@ msgstr "compartit" msgid "Tables" msgstr "Taules" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1991,7 +1991,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nom de host invàlid pel servidor %1$s. Si us plau, reviseu la configuració." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2053,7 +2053,7 @@ msgstr "MySQL diu: " msgid "Failed to connect to SQL validator!" msgstr "No es pot connectar al validador SQL!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Explica SQL" @@ -2065,11 +2065,11 @@ msgstr "Salta l'explicació de l'SQL" msgid "Without PHP Code" msgstr "Sense codi PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Crea codi PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Refresca" @@ -2078,7 +2078,7 @@ msgstr "Refresca" msgid "Skip Validate SQL" msgstr "Salta la Validació de l'SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Valida l'SQL" @@ -2176,11 +2176,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2227,62 +2227,77 @@ msgstr "No està disponible el directori indicat per pujar arxius" msgid "There are no files to upload" msgstr "No hi ha cap arxiu per pujar" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Ambdós" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "Alt" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Obert" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Tancat" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "estructura" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "dades" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "estructura i dades" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Ràpid - mostra només les opcions mínimes a configurar" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Complet - mostra totes les opcions a configurar" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "Complet - igual que el anterior, però sense l'opció ràpid/complet" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "completa insercions" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "insercions ampliades" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "ambdós anteriors" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "cap dels anteriors" @@ -2367,7 +2382,7 @@ msgid "Set value: %s" msgstr "Estableix valor: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Restaura el valor per defecte" @@ -2853,10 +2868,10 @@ msgstr "Configura el mode de navegació" msgid "Customize default options" msgstr "Configura les opcions predeterminades" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV " @@ -3453,7 +3468,7 @@ msgid "Maximum displayed SQL length" msgstr "Tamany màxim de SQL mostrat" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Els usuaris no poden establir un valor més gran" @@ -3517,40 +3532,36 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "Aixó són enllaços a Edició, Edició en línia, Copia i Esborrat" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "Mostra enllaç de nombre de files a la taula al marc esquerre" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "Mostra enllaç de nombre de files a la taula al marc dret" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "Usa l'ordre natural per ordenar els noms de taules i bases de dades" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Ordre natural" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Usa només icones, només text o bé ambdós" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Barra de navegació amb icones" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "utilitza la memòria cau de sortida per GZip per incrementar la velocitat en " "transferències HTTP" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Memòria cau de sortida per GZip" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3558,19 +3569,19 @@ msgstr "" "[kbd]SMART[/kbd] - i.e. ordre descendent per camps de tipus TIME, DATE, " "DATETIME i TIMESTAMP, ordre descendent ascendent a la resta" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Ordre de clasificació predeterminat" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Utilitza connexions persistents a bases de dades MySQL" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Connexions persistents" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3580,23 +3591,23 @@ msgstr "" "l'estructura de la base de dades, si qualsevol de les taules necessàries per " "a l'infraestructura de taules enllaçades de phpMyAdmin no s'ha pogut trobar" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Falten taules de l'infraestructura de taules enllaçades de phpMyAdmin" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Icones d'operacions de taula" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Desactiva l'edició en columnes tipus BLOB i BINARY" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Protegeix les columnes de contingut binari" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3607,121 +3618,121 @@ msgstr "" "fan servir rutines JS per mostrar l'historial de consultes (es perd al " "tancar la finestra)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Historial permanent de consultes" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Quàntes consultes s'han de desar a l'historial" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Tamany de l'historial de consultes" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Pestanya que es mostra al entrar a una nova finestra de consultes" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Pestanya de finestra de consultes predeterminada" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Alçada de la finestra de consultes (en píxels)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Alçada de la finestra de consultes" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Amplada de la finestra de consultes (en pixels)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Amplada de la finestra de consultes" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Selecciona quines funcions s'usaràn per a conversions de jocs de caràcters" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Motor d'enregistrament" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Reanomena les taules a" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Repeteix les capçeleres cada X cel.les, [kbd]0[/kbd] desactiva la funció" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Repeteix capçeleres" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Mostra el botó d'ajuda en lloc del text de la Documentació" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Mostra el botó d'ajuda" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Directori del servidor on pots desar les exportacions" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Directori de desades" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Deixa en blanc si no l'utilitzes" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "Ordre d'autenticació del servidor" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Deixa en blanc per als predeterminats" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "Regles d'autenticació del servidor" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Permetre connexions sense contrasenya" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Permet la connexió de root" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "Nom del Domini HTTP -HTTP Basic Auth Realm- per a mostrar a l'autenticació " "HTTP" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "Domini HTTP" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3731,19 +3742,19 @@ msgstr "" "maquinari SweKey[/a] (no trobat al teu arrel de documents; es recomana a: /" "etc/swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "Arxiu de configuració SweKey" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Mètode d'autenticació a usar" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Tipus d'autenticació" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3751,11 +3762,11 @@ msgstr "" "Deixa en blanc per desactivar les [a@http://wiki.phpmyadmin.net/pma/bookmark]" "consultes desades[/a], suggerit: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Taula de consultes desades" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3763,31 +3774,31 @@ msgstr "" "Deixa en blanc per no usar comentaris de columna o tipus mime, suggerit: " "[kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Taula d'informació de columna" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Connexió comprimida al servidor MySQL" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Connexió comprimida" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Cóm connectar al servidor, deixa [kbd]tcp[/kbd] si no estàs segur" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Tipus de connexió" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Contrasenya de l'usuari de control" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3795,19 +3806,19 @@ msgstr "" "Usuari MySQL especial configurat amb permisos restringits, més informació " "disponible al [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Usuari de control" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Comptar les taules al mostrar la llista de bases de dades" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Comptar les taules" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3815,11 +3826,11 @@ msgstr "" "Deixa en blanc per desactivar el suport del Dissenyador, suggerit: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Taula del dissenyador" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3827,29 +3838,29 @@ msgstr "" "Més informació a [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] i [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Desactiva l'ús d'INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "La extensió de PHP utilitzada; hauries de fer servir mysqli si ho tens " "suportat" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Extensió PHP a usar" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Amagar les bases de dades que compleixin una expresió regular (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Amagar bases de dades" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3857,31 +3868,31 @@ msgstr "" "Deixa en blanc per desactivar el suport d'historial de consultes SQL, " "suggerit: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "Taula d'historial de consultes SQL" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Nom del servidor ón MySQL és en marxa" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Nom del servidor" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "URL de desconnexió" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Intentar connectar sense contrasenya" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Connexió sense contrasenya" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3895,30 +3906,30 @@ msgstr "" "entrant els seus noms en ordre i usant [kbd]*[/kbd] al final per mostrar la " "resta en ordre alfabètic." -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Mostra només les bases de dades de la llista" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Deixa en blanc si no utilitzes l'autenticació config" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Contrasenya autenticació config" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Deixa en blanc per desactivar el suport d'esquemes PDF, suggerit: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "Esquema PDF: taula de pàgines" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3929,20 +3940,20 @@ msgstr "" "tenir informació més completa. Deixa en blanc per no utilitzar. Suggerit: " "[kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Nom de base de dades" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Port ón el servidor MySQL està escoltatt, deixa en blanc per al predeterminat" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Port del servidor" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -3954,13 +3965,13 @@ msgstr "" "Deixa en blanc per desactivar el suport de preferències de l'usuari en base " "de dades, suggerit: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Nom d'usuari de recuperació" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3968,19 +3979,19 @@ msgstr "" "Deixa en blanc per desactivar els [a@http://wiki.phpmyadmin.net/pma/relation]" "enllaços de relacions[/a], suggerit: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Taula de relacions" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "Ordre SQL per obtenir les bases de dades disponibles" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "Ordre SHOW DATABASES" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3988,44 +3999,44 @@ msgstr "" "Consulta [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipus " "d'autenticació[/a] per veure exemples" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Nom de sessió signon" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "URL signon" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Sócol ón el servidor MySQL està escoltant, deixa en blanc per al " "predeterminat" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Sócol del servidor" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "Activa SSL per la connexió amb el servidor MySQL" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Usa SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Deixa en blanc per desactivar el suport d'esquemes PDF, suggerit: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "Esquema PDF: taula de coordinades" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4033,11 +4044,11 @@ msgstr "" "Taula per descriure les columnes a mostrar, deixa en blanc per desactivar; " "suggerit: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Taula de descripció de columnes" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4049,13 +4060,13 @@ msgstr "" "Deixa en blanc per desactivar el suport de preferències de l'usuari en base " "de dades, suggerit: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "Taula de preferències de l'usuari" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4063,11 +4074,11 @@ msgstr "" "Si una instrucció DROP DATABASE IF EXISTS s'afegirà com a primera línia en " "el registre a l'hora de crear una base de dades." -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "Afegir DROP DATABASE" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4075,11 +4086,11 @@ msgstr "" "Si una instrucció DROP TABLE IF EXISTS s'afegirà com a primera línia en el " "registre a l'hora de crear una taula." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "Afegir DROP TABLE" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4087,21 +4098,21 @@ msgstr "" "Si una instrucció DROP VIEW IF EXISTS s'afegirà com a primera línia en el " "registre a l'hora de crear una vista." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "Afegir DROP VIEW" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Defineix la llista d'instruccions que l'auto-creació fa servir per a noves " "versions." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "Instruccions a seguir" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4109,11 +4120,11 @@ msgstr "" "Deixa en blanc per desactivar el suport de seguiment de consultes SQL, " "suggerit: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "Taula de seguiment de consultes SQL" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4121,11 +4132,11 @@ msgstr "" "SI el mecanisme de seguiment crearà versions per a taules i vistes " "automàticament." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Crear versions automàticament" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -4133,15 +4144,15 @@ msgstr "" "Deixa en blanc per desactivar el suport de preferències de l'usuari en base " "de dades, suggerit: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "Taula de preferències de l'usuari" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "Usuari per autenticació config" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4150,11 +4161,11 @@ msgstr "" "darrera versió. Aixó evita problemes de comprobacions de compatibilitat i " "així aumenta el rendiment" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Comprobació explicativa" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4162,21 +4173,21 @@ msgstr "" "Descripció per a l'usuari d'aquest servidor. Deixar en blanc per mostrar el " "nom del servidor en lloc seu." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Nom explicatiu d'aquest servidor" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Si a un usuari se l'hauria de mostrar el botó "mostrar totes (les files)" """ -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Permet mostrar totes les files" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4186,15 +4197,15 @@ msgstr "" "a que la contrasenya està inclosa al arxiu de configuració; aixó no limita " "la posibilitat d'executar la mateixa ordre directament" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Mostra el formulari de canvi de contrasenya" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Mostra el formulari de creació de base de dades" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -4202,19 +4213,19 @@ msgstr "" "Defineix si els tipus de camps han d'aparèixer en un principi en el mode " "d'edició/inserció" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Mostra tipus de camps" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Mostra els camps de funció en modes edició/inserció" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Mostra els camps de funció" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4222,32 +4233,32 @@ msgstr "" "Mostra l'enllaç a la sortida de [a@http://php.net/manual/function.phpinfo." "php]phpinfo()[/a]" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Mostra l'enllaç a phpinfo()" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Mostra informació detallada del servidor MySQL" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Defineix si s'han de mostrar les consultes SQL creades per phpMyAdmin" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Mostra consultes SQL" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Permet mostrar estadístiques de base de dades i de taula (ex. espai usat)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Mostra estadístiques" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4255,11 +4266,11 @@ msgstr "" "Si les ajudes estàn activades i s'ha establert un comentari per a la base de " "dades, alternarà el comentari i el nom real" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Mostra comentari de la base de dades en lloc del seu nom" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4271,30 +4282,30 @@ msgstr "" "['LeftFrameTableSeparator'], així només la carpeta s'anomena com l'àlies, el " "nom de la taula roman intacte" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Mostra comentari de taula en lloc del seu nom" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Mostra comentaris de taula en ajudes" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Marca les taules en ús i permet mostrar les bases de dades amb taules " "bloquejades" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Salta taules bloquejades" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "Necessita activar el SQL Validator" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4304,7 +4315,7 @@ msgstr "Necessita activar el SQL Validator" msgid "Password" msgstr "Contrasenya" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4312,11 +4323,11 @@ msgstr "" "[strong]Atenció:[/strong] Necessita l'extensió de PHP SOAP o bé instal.lar " "PEAR SOAP" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "Activar SQL Validator" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4324,12 +4335,12 @@ msgstr "" "Si tens un nom d'usuari, especifíca'l aqui (per defecte és [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Nom d'usuari" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4337,19 +4348,19 @@ msgstr "" "Proposa un nom de base de dades al formulari "Crear Base de Dades" " "(si es posible) o bé deixa buit el camp de text" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Proposa un nou nom de base de dades" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Si es detecta Suoshin, es mostra un avís a la pàgina principal" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "avís Suoshin" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4357,11 +4368,11 @@ msgstr "" "Tamany de textarea (columnes) en mode d'edició, aquest valor s'augmentarà " "per a textareas de consultes SQL (*2) i per finestres de consultes (*1.25)" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "Columnes per a textareas" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4369,32 +4380,32 @@ msgstr "" "Tamany de textarea (files) en mode d'edició, aquest valor s'augmentarà per a " "textareas de consultes SQL (*2) i per finestres de consultes (*1.25)" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "Files per a textareas" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" "Títol de la finestra del navegador quan es selecciona una base de dades" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "Títol de la finestra del navegador quan no hi ha res seleccionat" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Títol per defecte" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "Títol de la finestra del navegador quan es selecciona un servidor" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "Títol de la finestra del navegador quan es selecciona una taula" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4406,27 +4417,27 @@ msgstr "" "HTTP_X_FORWARDED_FOR (X-Forwarded-For) procedent del proxy 1.2.3.4:[br][kbd]" "1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "Llista de proxies confiables per autoritzar/prohibir IP" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "Directori al servidor ón pots pujar arxius per importar" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Directori de pujades" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Permet cercar dins de tota la base de dades" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Usa cerca de base de dades" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4434,11 +4445,11 @@ msgstr "" "Quan està desactivada, els usuaris no poden configurar qualsevol de les " "següents opcions, independentment de la casella de selecció a la dreta" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "Activa la pestanya del Desenvolupador en les opcions" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4448,21 +4459,21 @@ msgstr "" "multiples. Consulta libraries/import.lib.php per valors predeterminats en " "quantes consultes pot contenir una instrucció." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Mostra les instruccions multiples" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Comprova la darrera versió" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" "Activa la comprovació de la darrera versió a la pàgina principal de " "phpMyAdmin" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4470,7 +4481,7 @@ msgstr "" msgid "Version check" msgstr "Comprovació de versió" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4478,7 +4489,7 @@ msgstr "" "Activa la compressió [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/" "a] per a les operacions d'importació i exportació" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4498,61 +4509,61 @@ msgstr "Autenticació HTTP" msgid "Signon authentication" msgstr "autenticació Signon" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV usant LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Llibre d'Excel 97-2003 XLS" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Llibre d'Excel 2007 XLSX" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Full de càlcul Open Document" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "Ràpid" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "Usuari" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Opcions d'exportació de bases de dades" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV per dades de MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Text format Open Document" @@ -4639,7 +4650,7 @@ msgstr "Rutines" msgid "Return type" msgstr "Tipus de retorn" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5040,58 +5051,58 @@ msgstr "Mostra contingut BLOB" msgid "Browser transformation" msgstr "Transformació del navegador" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Còpia" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "S'ha esborrat la fila" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Finalitzar" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "en consulta" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Mostrant registres" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tarda %01.4f seg" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Operacions de resultats de consultes" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Vista d'impresió (amb texts sencers)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "Mostra el gràfic" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "Crea una vista" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "No s'ha trobat l'enllaç " @@ -10289,6 +10300,12 @@ msgstr "Nom de VISTA" msgid "Rename view to" msgstr "Reanomena la vista a" +#~ msgid "Show table row links on left side" +#~ msgstr "Mostra enllaç de nombre de files a la taula al marc esquerre" + +#~ msgid "Show table row links on right side" +#~ msgstr "Mostra enllaç de nombre de files a la taula al marc dret" + #~ msgid "Background color" #~ msgstr "Color de fons" diff --git a/po/cs.po b/po/cs.po index fd23e4754a..9b8ceb9595 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" -"PO-Revision-Date: 2011-05-31 17:53+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"PO-Revision-Date: 2011-06-02 10:34+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" "Language: cs\n" @@ -201,7 +201,7 @@ msgstr "Komentáře" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -217,7 +217,7 @@ msgstr "Ne" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -356,7 +356,7 @@ msgid "Edit or export relational schema" msgstr "Upravit nebo exportovat relační schéma" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -424,19 +424,19 @@ msgid "visual builder" msgstr "vizuálního návrháře" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Řadit" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Vzestupně" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -545,8 +545,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -616,7 +616,7 @@ msgstr "Sledování je zapnuté." msgid "Tracking is not active." msgstr "Sledování není zapnuté." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -645,20 +645,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +669,15 @@ msgid "Check tables having overhead" msgstr "Zaškrtnout neoptimální" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Náhled pro tisk" @@ -731,7 +731,7 @@ msgstr "Datový slovník" msgid "Tracked tables" msgstr "Sledované tabulky" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -930,7 +930,7 @@ msgstr "" "časové limity v PHP." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1145,8 +1145,8 @@ msgstr "Upravit zde" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1615,21 +1615,16 @@ msgstr[1] "Vloženy %1$d řádky." msgstr[2] "Vloženo %1$d řádek." #: libraries/RecentTable.class.php:113 -#, fuzzy -#| msgid "Could not save configuration" msgid "Could not save recent table" -msgstr "Nepodařilo se uložit nastavení" +msgstr "Nepodařilo se uložit nedávnou tabulku" #: libraries/RecentTable.class.php:148 -#| msgid "Count tables" msgid "Recent tables" msgstr "Nedávné tabulky" #: libraries/RecentTable.class.php:154 -#, fuzzy -#| msgid "There are no configured servers" msgid "There are no recent tables" -msgstr "Žádné servery nejsou nastaveny" +msgstr "Nebyly nalezeny žádné nedávné tabulky" #: libraries/StorageEngine.class.php:194 msgid "" @@ -1671,7 +1666,7 @@ msgstr "Tabulka %s byla přejmenována na %s" #: libraries/Table.class.php:1250 msgid "Could not save table UI preferences" -msgstr "" +msgstr "Nepodařilo se uložit nastavení prohlížení tabulky" #: libraries/Theme.class.php:160 #, php-format @@ -1863,13 +1858,13 @@ msgstr "sdílený" msgid "Tables" msgstr "Tabulky" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1971,7 +1966,7 @@ msgstr "Chybný index serveru: „%s“" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybné jméno serveru pro server %1$s. Prosím zkontrolujte nastavení." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2033,7 +2028,7 @@ msgstr "MySQL hlásí: " msgid "Failed to connect to SQL validator!" msgstr "Nepodařilo se připojit k serveru kontrolujícímu SQL!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Vysvětlit SQL" @@ -2045,11 +2040,11 @@ msgstr "Bez vysvětlení (EXPLAIN) SQL" msgid "Without PHP Code" msgstr "Bez PHP kódu" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Vytvořit PHP kód" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Obnovit" @@ -2058,7 +2053,7 @@ msgstr "Obnovit" msgid "Skip Validate SQL" msgstr "Bez kontroly SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Zkontrolovat SQL" @@ -2156,11 +2151,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2206,62 +2201,75 @@ msgstr "Adresář určený pro upload souborů nemohl být otevřen" msgid "There are no files to upload" msgstr "Nebyl zvolen žádný soubor pro nahrání" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Obojí" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "Nikde" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "Nalevo" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "Napravo" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Otevřené" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Uzavřené" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "struktura" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "data" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "struktura a data" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Rychlý - zobrazí jen minimum možností nastavení" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Vlastní - zobrazí všechna možná nastavení" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "Vlastní - jako výše, ale bez volby rychlý/vlastní" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "úplné inserty" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "rozšířené inserty" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "oba výše uvedené" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "ani jeden z výše uvedených" @@ -2346,7 +2354,7 @@ msgid "Set value: %s" msgstr "Nastavena hodnota: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Obnovit výchozí hodnotu" @@ -2832,10 +2840,10 @@ msgstr "Přizpůsobí režim prohlížení" msgid "Customize default options" msgstr "Přizpůsobí výchozí nastavení" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3324,13 +3332,11 @@ msgid "Enable highlighting" msgstr "Povolit zvýrazňování" #: libraries/config/messages.inc.php:286 -#, fuzzy -#| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" -msgstr "Nejvyšší počet tabulek zobrazených v seznamu tabulek" +msgstr "" +"Nejvyšší počet tabulek v seznamu nedávných tabulek; nastavte 0 pro vypnutí" #: libraries/config/messages.inc.php:287 -#| msgid "Untracked tables" msgid "Recently used tables" msgstr "Nedávno použité tabulky" @@ -3423,7 +3429,7 @@ msgid "Maximum displayed SQL length" msgstr "Nejvyšší délka zobrazeného SQL dotazu" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Uživatelé nemohou nastavit větší hodnotu" @@ -3487,38 +3493,34 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "Jedná se o odkazy Upravit, Upravit zde, Kopírovat a Odstranit" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "Zobrazí odkazy na levé straně" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "Zobrazí odkazy na pravé straně" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "Použít přirozené řazení pro jména tabulek a databází" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Přirozené pořadí" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Zda se mají zobrazit pouze ikony, nebo pouze text, případně obojí" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Ikony v navigační liště" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "Použije mezipaměť pro GZip výstup, čímž zvýší rychlost HTTP přenosů" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Mezipaměť pro GZip výstup" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3526,19 +3528,19 @@ msgstr "" "[kbd]SMART[/kbd] - t.j. řazení sestupně pro pole typu TIME, DATE, DATETIME a " "TIMESTAMP, v ostatních případech se použije vzestupné řazení" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Výchozí pořadí řazení" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Použije trvalé (persistentní) připojení k MySQL databázi" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Trvalé připojení" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3547,23 +3549,23 @@ msgstr "" "Vypne varování o nekompletních relacích na stránce s detaily databáze pokud " "chybí jakákoliv tabulka z úložiště nastavení phpMyAdmina" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Zobrazení ikon pro operace s tabulkami" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Zakáže úpravu polí BLOB a BINARY" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Chránit binární pole" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3573,116 +3575,115 @@ msgstr "" "nastavení phpMyAdmina). Pokud toto zakážete, využijí se k zobrazení historie " "Java Scriptové rutiny (se zavřením okna ztratíte předchozí historii)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Nepřetržitá historie dotazů" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Kolik dotazů se má držet v historii" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Délka historie dotazů" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Panel zobrazený při otevření nového okna dotazů" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Výchozí panel okna dotazů" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Výška okna dotazů (v pixelech)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Výška okna dotazů" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Šířka okna dotazů (v pixelech)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Šířka okna dotazů" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Vybere, které funkce budou použity pro konverzi znakových sad" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Nástroje pro konverzi znakových sad" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" -msgstr "" +msgstr "Při procházení tabulek se pro každou uloží nastavené řazení" -#: libraries/config/messages.inc.php:350 -#| msgid "Rename table to" +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Pamatovat si řazení u tabulkek" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "Zopakovat záhlaví každých X buněk, [kbd]0[/kbd] vypne tuto funknci" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Opakovat záhlaví" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Zobrazit ikonu pro nápovědu místo textu Dokumentace" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Zobrazit ikonu pro nápovědu" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Adresář na serveru pro ukládání exportů" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Adresář pro ukládání" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Pokud tuto volbu nepoužíváte, nechte ji prázdnou" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "Pořadí ověřování hostitelů" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Nechte volbu prázdnou pro výchozí nastavení" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "Pravidla ověřování hostitelů" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Povolit přihlášení bez hesla" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Povolit přihlašování uživatele root" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "Název pro zobrazení při HTTP přihlašování" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "HTTP doméma" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3692,19 +3693,19 @@ msgstr "" "přihlašování SweKey[/a] (Není umístěna ve Vašem kořenovém adresáři " "dokumentů; Doporučení: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "Konfigurační soubor SweKey" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Která přihlašovací metoda se má použít" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Typ přihlašování" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3713,11 +3714,11 @@ msgstr "" "phpmyadmin.net/pma/bookmark]záložek[/a], výchozí nastavení: [kbd]" "pma_bookmarks[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Tabulka záložek" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3725,31 +3726,31 @@ msgstr "" "Nechte prázdné pro žádné komentáře či mime typy polí, výchozí nastavení: " "[kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Tabulka informací o polích" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Zda se má komprimovat připojení k MySQL serveru" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Komprimovat připojení" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Jak se připojit k serveru, ponechte tcp pokud si nejste jistí" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Typ připojení" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Heslo kontrolního uživatele" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3757,19 +3758,19 @@ msgstr "" "Zvláštní MySQL uživatel s omezenými právy, více informací na [a@http://wiki." "phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Kontrolní uživatel" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Zda počítat tabulky, když se zobrazuje seznam databází" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Počítat tabulky" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3777,11 +3778,11 @@ msgstr "" "Nechte prázné pro vypnutí návrháře, výchozí nastavení: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Tabulka návrháře" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3789,27 +3790,27 @@ msgstr "" "Více informací v [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "trackeru[/a] a [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Zakázat použití INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "Které rozšíření PHP se má použít, použijte mysqli, pokud je to možné" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Použít rozšíření PHP" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Skrýt databáze odpovídající regulárnímu výrazu (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Skrýt databáze" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3817,31 +3818,31 @@ msgstr "" "Nechte prázné pro vypnutí SQL historie, výchozí hodnota [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "Tabulka pro historii SQL dotazů" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Jméno počítače, kde běží MySQL server" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Jméno serveru" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "URL pro odhlášení" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Pokusit se připojit bez hesla" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Připojit bez hesla" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3854,30 +3855,30 @@ msgstr "" "můžete také změnit pořadí databází, stačí na konci seznamu uvést [kbd]*[/" "kbd] pro zobrazní ostatních v abecedním pořadí." -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Zobrazit jen vybrané databáze" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Nechte prázdné, pokud nepoužíváte přihlašování config" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Heslo pro přihlašování config" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Nechte prázdné pro vypnutí podpory pro PDF schémata, výchozí nastavení: [kbd]" "pma_table_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF schémata: tabulka stránek" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3888,37 +3889,32 @@ msgstr "" "ponecháte prázdné, budou tyto funkce vypnuté. Doporučená hodnota: [kbd]" "phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Jméno databáze" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Port na kterém poslouchá MySQL server, nechte prázné pro výchozí hodnotu" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Port serveru" -#: libraries/config/messages.inc.php:408 -#, fuzzy -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: [kbd]" -#| "pma_config[/kbd]" +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -"Nechte prázdné pro vypnutí podpory pro uživatelské nastavení v databázi, " -"výchozí nastavení: [kbd]pma_config[/kbd]" +"Nechte prázdné pro vypnutí \"trvalého\" ukládání nedávných tabulek, výchozí " +"nastavení: [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:409 -#| msgid "Recall user name" +#: libraries/config/messages.inc.php:408 msgid "Recently used table" msgstr "Naposledy použité tabulky" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3926,19 +3922,19 @@ msgstr "" "Nechte prázdné pro vypnutí podpory pro [a@http://wiki.phpmyadmin.net/pma/" "relation]relace[/a], výchozí nastavení: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Tabulka s relacemi" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "SQL příkaz pro načtení dostupných databází" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "Příkaz SHOW DATABASES" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3946,43 +3942,43 @@ msgstr "" "Příklad můžete nalézt na [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "authentication types[/a]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Jméno signon session" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "URL pro přihlášení" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Socket na kterém poslouchá MySQL server, nechte prázné pro výchozí hodnotu" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Socket serveru" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "Zda se má použít SSL pro připojení k MySQL serveru" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Použít SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Nechte prázdné pro vypnutí podpory pro PDF schémata, výchozí nastavení: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF schéma: tabulka souřadnic" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -3990,28 +3986,23 @@ msgstr "" "Tabulka obsahující popisy polí, nechte prázdnou pro vypnutí této funkce. " "Výchozí hodnota: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Tabulka s popisem polí" -#: libraries/config/messages.inc.php:425 -#, fuzzy -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: [kbd]" -#| "pma_config[/kbd]" +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -"Nechte prázdné pro vypnutí podpory pro uživatelské nastavení v databázi, " -"výchozí nastavení: [kbd]pma_config[/kbd]" +"Nechte prázdné pro vypnutí podpory pro \"trvalé\" ukládání nastavení " +"procházení tabulek, výchozí nastavení: [kbd]pma_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:426 -#| msgid "User preferences storage table" +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "Tabulka pro nastavení rozhraní" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4019,43 +4010,43 @@ msgstr "" "Jestli přidat příkaz DROP DATABASE IF EXISTS jako první při vytváření " "databáze." -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "Přidat DROP DATABASE" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" "Jestli přidat příkaz DROP TABLE IF EXISTS jako první při vytváření tabulky." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "Přidat DROP TABLE" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" "Jestli přidat příkaz DROP VIEW IF EXISTS jako první při vytváření pohledu." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "Přidat DROP VIEW" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Určuje seznam příkazů které se automaticky používají pro vytvoření nových " "verzí." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "Sledované příkazy" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4063,22 +4054,22 @@ msgstr "" "Nechte prázdné pro vypnutí podpory pro sledování SQL dotazů, výchozí " "nastavení: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "Tabulka pro sledování SQL dotazů" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" "Jestli má sledování tabulek automaticky vytvářet verze pro tabulky a pohledy." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Automaticky vytvářet verze" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -4086,15 +4077,15 @@ msgstr "" "Nechte prázdné pro vypnutí podpory pro uživatelské nastavení v databázi, " "výchozí nastavení: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "Tabulka pro uživatelská nastavení" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "Uživatel pro přihlašování config" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4102,30 +4093,30 @@ msgstr "" "Vypněte, pokud víte, že vaše tabulky pma_* jsou v pořádku. Tím zabráníte " "kontrolám kompatibility a urychlíte zobrazování stránek" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Podrobná kontrola" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" "Přívětivý popis tohoto serveru. Pokud necháte prázné, zobrazí se jeho jméno." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Dlouhé jméno tohoto serveru" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Jestli uživateli bude zobrazeno tlačítko "zobrazit vše"" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Umožní zobrazit všechny řádky" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4136,34 +4127,34 @@ msgstr "" "neomezuje možnost spustit daný příkaz přímo, jen ovlivňuje zobrazení " "formuláře" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Zobrazit formulář pro změnu hesla" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Zobrazit formulář pro vytvoření databáze" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" "Určiuje jestli mají být zobrazeny typy polí při úpravě a vkládání záznamů" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Zobrazit typy polí" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Zobrazí seznam funkcí v editačním režimu" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Zobrazit seznam fukncí" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4171,32 +4162,32 @@ msgstr "" "Zobrazí link na výstup funkce [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Zobrazit odkaz na phpinfo()" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Zobrazí podrobné informace o MySQL serveru" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Určuje, jestli SQL dotazy vytvořené phpMyAdminem budou zobrazeny" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Zobrazit SQL dotazy" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Povolí zobrazení statistik (např. použití místa) pro databáze a tabulky" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Zobrazit statistiky" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4204,11 +4195,11 @@ msgstr "" "Pokud jsou povoleny tooltipy a je nastaven komentář databáze, tato volba " "prohodí komentář a skutečné jméno" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Zobrazit komentář databáze místo jména" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4219,29 +4210,29 @@ msgstr "" "rozdělení podle nastavení $cfg['LeftFrameTableSeparator']. Takže komentář se " "použije jen pro zanoření, ale jména tabulek zůstanou nezměněná" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Zobrazit komentář tabulky místo jména" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Zobrazit komentáře tabulky v tooltipu" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Označí používané tabulky a umožní zobrazit databáze se zamčenými tabulkami" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Přeskočit zamčené tabulky" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "Vyžaduje povolené kontrolování SQL" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4251,18 +4242,18 @@ msgstr "Vyžaduje povolené kontrolování SQL" msgid "Password" msgstr "Heslo" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" "[strong]Varování:[/strong] vyžaduje rozšíření PHP SOAP nebo PEAR modul SOAP" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "Povolit kontrolování SQL" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4270,12 +4261,12 @@ msgstr "" "Pokud máte vlastní užvatelské jméno, zadejte ho zde (jinak se použije [kbd]" "anonymous[/kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Uživatel" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4283,20 +4274,20 @@ msgstr "" "Navrhne jméno nové databáze ve formuláři pro vytváření databáze (pokud je to " "možné) nebo ponechá pole prázné" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Navrhnout jméno nové databáze" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" "Na hlavní stránce je zobrazeno varování pokud je detekování rozšíření Suhosin" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Varování o Suhosinu" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4304,11 +4295,11 @@ msgstr "" "Velikost editačního pole (počet sloupců), tato hodnota bude navýšena pro SQL " "dotazy (*2) a pro dotazové okno (*1,25)" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "Sloupců v textové oblasti" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4316,31 +4307,31 @@ msgstr "" "Velikost editačního pole (počet řádek), tato hodnota bude navýšena pro SQL " "dotazy (*2) a pro dotazové okno (*1,25)" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "Řádků v textové oblasti" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "Titulek prohlížeče pokud je vybraná databáze" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "Titulek prohlížeče pokud není nic vybráno" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Výchozí titulek" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "Titulek prohlížeče pokud je vybraný server" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "Titulek prohlížeče pokud je vybraná tabulka" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4352,27 +4343,27 @@ msgstr "" "Forwarded-For) přicházející od proxy 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "Seznam důvěryhodných proxy pro ověření IP adresy" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "Adresář na serveru, kam můžete nahrát souboru pro import" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Adresář pro nahrávání" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Povolit prohledávání přes celou databázi" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Použít prohledávání databáze" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4380,11 +4371,11 @@ msgstr "" "Pokud je vypnuto, uživatelé nemůžou změnit žádná z níže uvedených nastavení, " "bez ohledu na zaškrtávátko napravo" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "Povolit záložku Pro vývojáře v nastaveních" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4394,19 +4385,19 @@ msgstr "" "souboru libraries/import.lib.php naleznete kolik dotazů můžete najednou " "zadat." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Podrobné víceprvkové dotazy" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Zkontrolovat nejnovější verzi" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Povolí kontrolu poslední verze phpMyAdmina na hlavní stránce" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4414,7 +4405,7 @@ msgstr "Povolí kontrolu poslední verze phpMyAdmina na hlavní stránce" msgid "Version check" msgstr "Kontrola verze" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4422,7 +4413,7 @@ msgstr "" "Povolí [a@http://cs.wikipedia.org/wiki/ZIP_%28souborov%C3%BD_form%C3%A1t%29]" "ZIP[/a] kompresi pro importování a exportování" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4442,61 +4433,61 @@ msgstr "Přihlašování přes HTTP" msgid "Signon authentication" msgstr "Přihlašování signon" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV pomocí LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Sešit OpenDocument" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "Rychlý" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "Vlastní" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Nastavení exportu databází" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV pro MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Text OpenDocument" @@ -4584,7 +4575,7 @@ msgstr "Rutiny" msgid "Return type" msgstr "Návratový typ" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4982,58 +4973,58 @@ msgstr "Zobrazit obsah BLOBu" msgid "Browser transformation" msgstr "Transformace při prohlížení" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Kopírovat" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Řádek byl smazán" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Ukončit" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "v dotazu" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Zobrazeny záznamy" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "celkem" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "dotaz trval %01.4f sekund" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Operace s výsledky dotazu" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Náhled pro tisk (s kompletními texty)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "Zobrazit graf" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "Vytvořit pohled" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Odkaz nenalezen" @@ -6222,14 +6213,12 @@ msgid "SQL history" msgstr "SQL historie" #: libraries/relation.lib.php:143 -#, fuzzy -#| msgid "Persistent connections" msgid "Persistent recently used tables" -msgstr "Trvalé připojení" +msgstr "Trvalé nedávné tabulky" #: libraries/relation.lib.php:147 msgid "Persistent tables' UI preferences" -msgstr "" +msgstr "Trvalé nastavení procházení" #: libraries/relation.lib.php:155 msgid "User preferences" @@ -10146,6 +10135,12 @@ msgstr "Jméno pohledu" msgid "Rename view to" msgstr "Přejmenovat pohled na" +#~ msgid "Show table row links on left side" +#~ msgstr "Zobrazí odkazy na levé straně" + +#~ msgid "Show table row links on right side" +#~ msgstr "Zobrazí odkazy na pravé straně" + #~ msgid "Background color" #~ msgstr "Barva pozadí" diff --git a/po/cy.po b/po/cy.po index 2afff78c3f..4d9af48352 100644 --- a/po/cy.po +++ b/po/cy.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-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-05-19 21:21+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" @@ -202,7 +202,7 @@ msgstr "Sylwadau" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -218,7 +218,7 @@ msgstr "Na" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "Golygu neu allforio sgema perthynol" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -424,19 +424,19 @@ msgid "visual builder" msgstr "adeiladwr gweledol" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Trefnu" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Esgynnol" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -545,8 +545,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -615,7 +615,7 @@ 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:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -644,20 +644,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +668,15 @@ msgid "Check tables having overhead" msgstr "Gwiriwch dablau â gorbenion" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Argraffu golwg" @@ -732,7 +732,7 @@ msgstr "Geiriadur Data" msgid "Tracked tables" msgstr "Tablau a draciwyd" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -927,7 +927,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1189,8 +1189,8 @@ msgstr "Mewnol" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1913,13 +1913,13 @@ msgstr "" msgid "Tables" msgstr "Tablau" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2020,7 +2020,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Enw gwesteiwr annilys ar gyfer gweinydd %1$s. Adolygwch eich ffurfwedd." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2084,7 +2084,7 @@ msgstr "Dywedodd MySQL:" msgid "Failed to connect to SQL validator!" msgstr "Methu â chysylltu i'r gweinydd MySQL" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Esbonio SQL" @@ -2096,11 +2096,11 @@ msgstr "Sgipio Esbonio SQL" msgid "Without PHP Code" msgstr "Heb God PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Creu Cod PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Adfywio" @@ -2109,7 +2109,7 @@ msgstr "Adfywio" msgid "Skip Validate SQL" msgstr "Sgipio Dilysu SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Dilysu SQL" @@ -2207,11 +2207,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2260,34 +2260,47 @@ msgstr "" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Close" msgid "Closed" msgstr "Cau" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2295,33 +2308,33 @@ msgstr "" msgid "structure and data" msgstr "Strwythur a data" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Autoextend increment" msgid "extended inserts" msgstr "Cynyddiad awtoestyn" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2410,7 +2423,7 @@ msgid "Set value: %s" msgstr "Gosod gwerth: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Adfer gwerth diofyn" @@ -2897,10 +2910,10 @@ msgstr "" msgid "Customize default options" msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3474,7 +3487,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3530,341 +3543,337 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Ailenwi tabl i" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Trwsio edafedd" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Cyfrifwch y tablau" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Estyniad PHP i'w ddefnyddio" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Cuddio cronfeydd data sydd yn cydweddu â mynegiant arferol (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Cuddio cronfeydd data" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "Tabl hanes ymholiadau SQL" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Enw'r gwesteiwr ble mae'r gweinydd MySQL yn rhedeg" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Enw gwesteiwr y gweinydd" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "URL allgofnodi" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Ceisiwch â chysylltu heb gyfrinair" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Cysylltwch heb gyfrinair" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3880,273 +3889,273 @@ msgstr "" "ydych am eu defnyddio'n llythrennol, h.y. defnyddiwch 'my\\_db' ac nid " "'my_db'" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Dangoswch gronfeydd data a restrir yn unig" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Gadewch yn wag os nac ydych yn defnyddio 'config auth'" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Cyfrinair am 'config auth'" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "enw cronfa ddata" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Dadansoddi tabl" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Soced gweinydd" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Defnyddio SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "Sgena PDF: cyfesurynnau tabl" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Dangos tabl colofnau" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "Ychwanegu DROP DATABASE" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "Ychwanegu DROP TABLE" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "Ychwanegu DROP VIEW" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "Datganiadau i'w tracio" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "Tabl tracio ymholiadau SQL" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Dangos ffurflen newid cyfrinair" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Dangos ffurflen creu cronfa ddata" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show function fields" msgid "Show field types" msgstr "Dangos meysydd swyddogaeth" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Dangos meysydd swyddogaeth" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4154,41 +4163,41 @@ msgstr "" "Dangos cysylltiad i allbwn [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Dangos cysylltiad i phpinfo()" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Dangos ymholiadau SQL" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Dangos ystadegau" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4196,28 +4205,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Neidio tablau ar glo" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4227,90 +4236,90 @@ msgstr "" msgid "Password" msgstr "Cyfrinair" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Enw defnyddiwr" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete columns" msgid "Textarea columns" msgstr "Ychwanegu/Dileu colofnau" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Tab tabl diofyn" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4318,56 +4327,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Cyfeiriadur lanlwytho" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Defnyddio chwiliad cronfa ddata" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Gwiriwch y fersiwn diweddaraf" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4375,13 +4384,13 @@ msgstr "" msgid "Version check" msgstr "Gwirio fersiwn" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4409,65 +4418,65 @@ msgstr "Yn dilysu..." msgid "Signon authentication" msgstr "Yn dilysu..." -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Taenlen Open Document" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Lliw cwstwm" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 #, fuzzy #| msgid "Databases statistics" msgid "Database export options" msgstr "Ystadegau cronfeydd data" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV ar gyfer MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Testun Open Document" @@ -4554,7 +4563,7 @@ msgstr "Rheolweithiau" msgid "Return type" msgstr "Dychwelyd math" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4981,62 +4990,62 @@ msgstr "Dangos cynnwys BLOB" msgid "Browser transformation" msgstr "Trawsffurfiad porwr" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Cafodd y rhes ei dileu" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Lladd" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "mewn ymholiad" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Yn dangos rhesi" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "cyfanswm" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Cymerodd yr ymholiad %01.4f eiliad" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Argraffu golwg (gyda thestunau llawn)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Dangos sgema PDF" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Crëwch fersiwn" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Methu â darganfod y cysylltiad" diff --git a/po/da.po b/po/da.po index 9a3990f26b..7a01764e0c 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-03-07 01:17+0200\n" "Last-Translator: \n" "Language-Team: danish \n" @@ -197,7 +197,7 @@ msgstr "Kommentarer" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -213,7 +213,7 @@ msgstr "Nej" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -355,7 +355,7 @@ msgid "Edit or export relational schema" msgstr "Editer eller eksporter relations skema" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -422,19 +422,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Sorter" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Stigende" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -543,8 +543,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -618,7 +618,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -646,20 +646,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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" @@ -670,15 +670,15 @@ msgid "Check tables having overhead" msgstr "Check tabeller der har overhead" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Vis (udskriftvenlig)" @@ -736,7 +736,7 @@ msgstr "Data Dictionary" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -936,7 +936,7 @@ msgstr "" "mindre du forøger PHP-tidsbegrænsningerne." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1198,8 +1198,8 @@ msgstr "Lagre" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1970,13 +1970,13 @@ msgstr "" msgid "Tables" msgstr "Tabeller" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2088,7 +2088,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Ugyldigt hostnavn for server %1$s. Gennemgå venligst din konfiguration." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2150,7 +2150,7 @@ msgstr "MySQL returnerede: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Forklar SQL" @@ -2162,11 +2162,11 @@ msgstr "Spring over Forklar SQL" msgid "Without PHP Code" msgstr "uden PHP-kode" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Fremstil PHP-kode" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Opdatér" @@ -2175,7 +2175,7 @@ msgstr "Opdatér" msgid "Skip Validate SQL" msgstr "Spring over Validér SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Validér SQL" @@ -2275,11 +2275,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2326,34 +2326,47 @@ msgstr "Mappen du har sat til upload-arbejde kan ikke findes" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Ikke-lukket quote" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2361,35 +2374,35 @@ msgstr "" msgid "structure and data" msgstr "Struktur og data" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Komplette inserts" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Udvidede inserts" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2478,7 +2491,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2968,10 +2981,10 @@ msgstr "" msgid "Customize default options" msgstr "Forespørgselsresultat operationer" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV (kommasepareret)" @@ -3545,7 +3558,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3601,349 +3614,345 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Arrangér tabelrækkefølge efter" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Foresp. vindue" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Foresp. vindue" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Foresp. vindue" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Omdøb tabel til" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Reparér tråde" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3952,321 +3961,321 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "databasenavn" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analysér tabel" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Viser kolonne-kommentarer" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragmentér tabel" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Erklæringer" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automatisk genopretnings-modus" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Vis åbne tabeller" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4274,28 +4283,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4305,90 +4314,90 @@ msgstr "" msgid "Password" msgstr "Kodeord" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Tilføj/Slet felt-kolonne" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Standardværdi" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4396,56 +4405,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4453,13 +4462,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4479,63 +4488,63 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV vha. LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document regneark" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 #, fuzzy #| msgid "Database export options" msgid "Database export options" msgstr "Database eksportindstillinger" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV til MS Excel-data" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document tekst" @@ -4622,7 +4631,7 @@ msgstr "Rutiner" msgid "Return type" msgstr "Retur type" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5073,62 +5082,62 @@ msgstr "" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Rækken er slettet!" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Dræb (Kill)" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "i forespørgsel" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Viser poster " -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Forepørgsel tog %01.4f sek" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Forespørgselsresultat operationer" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Udskrift-visning (med fulde tekster)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Vis PDF-skematik" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Opret" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Link ikke fundet" diff --git a/po/de.po b/po/de.po index 18ec1280fc..56b299a5f7 100644 --- a/po/de.po +++ b/po/de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-04-23 04:28+0200\n" "Last-Translator: Dominik Geyer \n" "Language-Team: german \n" @@ -199,7 +199,7 @@ msgstr "Kommentare" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "Nein" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -354,7 +354,7 @@ msgid "Edit or export relational schema" msgstr "Beziehungsschema bearbeiten oder exportieren" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -421,19 +421,19 @@ msgid "visual builder" msgstr "Visueller Builder" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Sortierung" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "aufsteigend" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -541,8 +541,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -611,7 +611,7 @@ msgstr "Tracking ist aktiviert." msgid "Tracking is not active." msgstr "Tracking ist nicht aktiviert." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -641,20 +641,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +665,15 @@ msgid "Check tables having overhead" msgstr "Tabellen m. Überhang ausw." #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Druckansicht" @@ -733,7 +733,7 @@ msgstr "Strukturverzeichnis" msgid "Tracked tables" msgstr "Verfolgte Tabellen" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -935,7 +935,7 @@ msgstr "" "nicht die Ausführungszeitbeschränkungen von php gelockert werden." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1163,8 +1163,8 @@ msgstr "Direkt bearbeiten" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1887,13 +1887,13 @@ msgstr "freigegeben" msgid "Tables" msgstr "Tabellen" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1997,7 +1997,7 @@ msgstr "" "Ungültiger Host-Name für Server %1$s. Bitte überprüfen Sie Ihre " "Konfiguration." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2059,7 +2059,7 @@ msgstr "MySQL meldet: " msgid "Failed to connect to SQL validator!" msgstr "Verbindungsaufbau zu SQL-Validator schlug fehl!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "SQL erklären" @@ -2071,11 +2071,11 @@ msgstr "SQL-Erklärung umgehen" msgid "Without PHP Code" msgstr "ohne PHP-Code" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP-Code erzeugen" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Aktualisieren" @@ -2084,7 +2084,7 @@ msgstr "Aktualisieren" msgid "Skip Validate SQL" msgstr "SQL-Validierung umgehen" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "SQL validieren" @@ -2184,11 +2184,11 @@ msgstr "" "%s" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2234,62 +2234,77 @@ msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden." msgid "There are no files to upload" msgstr "Es sind keine Dateien zum Upload vorhanden" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Beide" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "Höhe" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Geöffnet" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Geschlossen" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "Struktur" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "Daten" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "Struktur und Daten" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Schnell – Zeige nur die minimalen Konfigurationsoptionen" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Angepasst – Zeige alle möglichen Konfigurationsoptionen" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "Angepasst – Wie oben, aber ohne die Schnell-/Angepasst-Auswahl" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "Vollständige 'INSERT's" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "Erweiterte 'INSERT's" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "Beide der Obigen" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "Keines der Obigen" @@ -2374,7 +2389,7 @@ msgid "Set value: %s" msgstr "Setze Wert: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Voreingestellten Wert wiederherstellen" @@ -2860,10 +2875,10 @@ msgstr "Anzeigemodus anpassen" msgid "Customize default options" msgstr "Standard-Einstellungen anpassen" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3458,7 +3473,7 @@ msgid "Maximum displayed SQL length" msgstr "Zeichen Maximum beim SQL Befehl anzeigen" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Benutzer dürfen keinen größeren Wert setzen" @@ -3523,39 +3538,35 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "Dies sind Bearbeitungs-, Inline-Bearbeitungs-, Kopier- und Löschlinks" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "Links zu Tabellenzeilen auf der linken Seite anzeigen" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "Links zu Tabellenzeilen auf der rechten Seite anzeigen" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" "Natürliche Sortierreihenfolge für Tabellen- und Datenbanknamen verwenden" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Natürliche Reihenfolge" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Verwende nur Icons, nur Text oder beides" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Navigationsleiste mit Icons" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "Verwende Gzip output buffering, um HTTP transfers zu beschleunigen" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip Ausgabepufferung" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3563,19 +3574,19 @@ msgstr "" "[kbd]SMART[/kbd] - d.h. absteigende Sortierung für die Feldtypen TIME, DATE, " "DATETIME und TIMESTAMP, sonst aufsteigende Sortierung" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Voreingestellte Sortierung" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Verwende andauernde Verbindungen zu MySQL Datenbanken" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Persistente Verbindung" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3584,23 +3595,23 @@ msgstr "" "Standardhinweis der Datenbankstruktur-Detailansicht unterdrücken, wenn eine " "erforderliche Tabelle der phpMyAdmin Konfiguration nicht gefunden werden kann" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Fehlende phpMyAdmin-Konfigurationsspeicher-Tabellen" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Tabellenbearbeitung mittels Icons" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Änderungen an BLOB und BINARY Feldern verbieten" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "BINARY-Felder schützen" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3611,118 +3622,118 @@ msgstr "" "Routinen zur Darstellung des Abfrageverlaufs eingesetzt (sie gehen beim " "Schließen des Fensters verloren)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Anfragelog speichern" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Anzahl der Abfragen in der Historie" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Länge des Abfrageverlaufs" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Angezeigter Tab beim Öffnen eines neuen Abfragefensters" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Voreingestellter Tab für Abfragefenster" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Höhe des Abfragefensters (in Pixeln)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Höhe des Abfragefensters" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Breite des Abfragefensters (in Pixeln)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Breite des Abfragefensters" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Wahl der Funktionen zur Zeichensatz-Konvertierung" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Umwandlungs Engine" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Tabelle umbenennen in" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Kopfzeilen alle n Zellen anzeigen, [kbd]0[/kbd] deaktiviert diese Option" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Kopfzeilen wiederholen" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Hilfe-Button anstelle des Hilfetexts anzeigen" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Hilfe-Button anzeigen" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Verzeichnis auf dem Server für Exports" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Speicher Verzeichnis" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Leer lassen, wenn unbenutzt" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "Host-Autorisierungsreihenfolge" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Leer lassen, um Voreinstellungen zu verwenden." -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "Host-Autorisierungsregeln" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Erlaube Logins ohne Passwort" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Erlaube root Login" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP Basic Auth Realm Name , der bei HTTP Auth angezeigt wird" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3732,19 +3743,19 @@ msgstr "" "Authentifizierung[/a] (liegt nicht im Webhauptverzeichnis (document root); " "empfohlen: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "SweKey Konfigurationsdatei" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Zu benutzende Authentifikations-Methode" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Authentifikationstyp" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3752,11 +3763,11 @@ msgstr "" "Leer lassen für keine [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" "a] Unterstützung, Vorschlag: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Bookmark Table" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3764,32 +3775,32 @@ msgstr "" "Leer lassen für keine Spalten Kommentare/mime types,Vorschlag: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Column Info Table" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Komprimiere die Verbindung zum MySQL-Server" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Verbindung komprimieren" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Art der Verbindung zum Server, im Zweifelsfalle auf [kbd]tcp[/kbd] belassen" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Art der Verbindung" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Control-user Passwort" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3797,19 +3808,19 @@ msgstr "" "Ein besonderer MySQL Nutzer mit eingeschränkten Rechten, nähere " "Informationen auf [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Control-user" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Zähle Tabellen bei Anzeige der Datenbank-Liste" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Zähle Tabellen" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3817,11 +3828,11 @@ msgstr "" "Leer lassen für keine Designer Unterstützung, Vorschlag: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Designer Coords Table" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3829,29 +3840,29 @@ msgstr "" "Mehr Informationen auf [a@http://sf.net/support/tracker.php?aid=1849494]PMA " "bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Benutzung von INFORMATION_SCHEMA deaktivieren" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Die zu verwendente PHP Erweiterung; sie sollten mysqli verwenden wenn es " "verfügbar ist" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "PHP Erweiterung" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Verberge Datenbanken, die auf regular expressions (PCRE) passen" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Datenbanken verstecken" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3859,31 +3870,31 @@ msgstr "" "Leer lassen für keine SQL Abfragehistorien-Unterstützung, Vorschlag: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "History Table" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Rechnername auf dem der MySQL Server läuft" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Hostname" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "Logout URL" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Versuche ohne Passwort zu verbinden" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Ohne Passwort verbinden" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3897,30 +3908,30 @@ msgstr "" "sortiert ein und nutzen Sie am Ende [kbd]*[/kbd], um die übrigen in " "alphabetischer Reihenfolge anzuzeigen." -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Nur aufgelistete Datenbanken zeigen" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Leer lassen, wenn config auth nicht verwendet wird" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Passwort für config Authentifikation" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Leer lassen für keine PDF Schema Unterstützung, Vorschlag: [kbd]pma_pdf_pages" "[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF Pages Table" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3930,19 +3941,19 @@ msgstr "" "phpmyadmin.net/pma/pmadb]pmadb[/a] für komplette Information. Leer lassen " "für keien Unterstützung. Vorschlag: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Datenbankname" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "Port, auf dem der MySQL-Server horcht, leer lassen für Voreinstellung" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Port" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -3954,13 +3965,13 @@ msgstr "" "Leer lassen, um die Benutzereinstellungen nicht in der Datenbank zu " "speichern, Vorschlag: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Benutzername wiederherstellen" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3968,19 +3979,19 @@ msgstr "" "Leer lassen für keine [a@http://wiki.phpmyadmin.net/pma/relation]relation-" "links[/a] Unterstützung, Vorschlag: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Relation Table" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "SQL Komando, um verfügbare Datenbanken abzurufen" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES Befehl" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3988,43 +3999,43 @@ msgstr "" "Siehe [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication " "types[/a] für ein Beispiel" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Signon Session-Name" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Socket, auf dem der MySQL-Server horcht, leer lassen für Voreinstellung" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Sockel" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "Ermögliche SSL für Verbindung zum MySQL-Server" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Benutze SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Leer lassen für keine PDF Schema Unterstützung, Vorschlag: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "Table Coords Table" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4032,11 +4043,11 @@ msgstr "" "Tabelle zur Beschreibung der Anzeigespalten, leer lassen für keine " "Unterstützung; Vorschlag: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Tabelle für Anzeigespalten" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4048,13 +4059,13 @@ msgstr "" "Leer lassen, um die Benutzereinstellungen nicht in der Datenbank zu " "speichern, Vorschlag: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "Tabelle für Benutzereinstellungen" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4062,11 +4073,11 @@ msgstr "" "DROP DATABASE IF EXISTS statement beim Erstellen einer neuen Datenbank als " "erste Zeile loggen" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "DROP DATABASE hinzufügen" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4074,11 +4085,11 @@ msgstr "" "DROP TABLE IF EXISTS statement beim Erstellen einer neuen Ansicht als erste " "Zeile loggen" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "DROP TABLE hinzufügen" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4086,21 +4097,21 @@ msgstr "" "DROP VIEW IF EXISTS statement beim Erstellen einer neuen Ansicht als erste " "Zeile loggen" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "DROP VIEW hinzufügen" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Legt die Liste der Statements fest, die die automatische Versionserstellung " "für neue Versionen verwendeet" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "Zu verfolgende Statements" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4108,11 +4119,11 @@ msgstr "" "Leer lassen für keine SQL Abfrageverlauf-Unterstützung, Vorschlag: [kbd]" "pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "Tabelle mit Verfolgung der SQL-Abfragen" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4120,11 +4131,11 @@ msgstr "" "Automatische Versionserstellung für Tabellen und Ansichten durch den " "Verlaufs-mechanismus" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Versionen automatisch erzeugen" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -4132,15 +4143,15 @@ msgstr "" "Leer lassen, um die Benutzereinstellungen nicht in der Datenbank zu " "speichern, Vorschlag: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "Tabelle für Benutzereinstellungen" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "Benutzername für config Authentifikation" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4148,11 +4159,11 @@ msgstr "" "Ausschalten, wenn die pma_* Tabellen aktuell sind. Dies verhindert " "Kompatibilitätsprüfungen und verbessert so die Leistung" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Tabellenprüfung" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4160,21 +4171,21 @@ msgstr "" "Benutzerfreundlicher Name des Servers. Leer lassen um den tatsächlichen " "Rechnernamen anzuzeigen." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Serverbezeichnung" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Ob dem Benutzer eine Schaltfläche „Alle (Zeilen) anzeigen” " "angezeigt werden soll" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Erlaube alle Zeilen anzuzeigen" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4185,15 +4196,15 @@ msgstr "" "dieses beschränkt nicht die Möglichkeit der direkten Ausführung des selben " "Befehls." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Zeige Formular zur Passwort-Änderung" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Zeige Formular zur Datenbank-Erstellung" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -4201,19 +4212,19 @@ msgstr "" "Definiert, ob Typen-Felder anfänglich im Bearbeiten/Einfügen-Modus angezeigt " "werden" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Feld-Typen anzeigen" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Im Bearbeiten/Einfügen Modus Funktionsfelder anzeigen" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Funktionsfelder anzeigen" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4221,34 +4232,34 @@ msgstr "" "Zeige Link zu [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "Ausgabe" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Zeige phpinfo() Link" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Zeige detailierte MySQL-Server Informationen" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Legt fest, ob von phpMyAdmin generierte SQL-Abfragen angezeigt werden sollten" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Zeige SQL Anfragen" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Erlaube die Anzeige von Datenbank- und Tabellen-Statistiken, ( z.B. " "Platzbedarf)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Zeige Statistik" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4256,11 +4267,11 @@ msgstr "" "Wenn Tooltips eingeschaltet sind und Datenbank-Kommentare vorhanden sind, " "vertausch dies den Kommentar und den Namen" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Zeige Datenbank-Kommentar anstelle des Namens" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4272,30 +4283,30 @@ msgstr "" "['LeftFrameTableSeparator'] Direktive zu teilen bzw. zu verschachteln. Nur " "der Ordner erhält den Alias, der Tabellename bleibt unverändert." -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Zeige Tabellen-Kommentar anstelle des Namens" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Tabellen-Kommentar als Tooltip anzeigen" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Markiere benutzte Tabellen und ermögliche die Anzeige von Tabellen mit " "gesperrten Tabellen" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Überspringe gesperrte Tabellen" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "Erfordert das der SQL-Validator aktiviert ist" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4305,7 +4316,7 @@ msgstr "Erfordert das der SQL-Validator aktiviert ist" msgid "Password" msgstr "Passwort" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4313,11 +4324,11 @@ msgstr "" "[strong]Warnung:[/strong] erfordert das die PHP-Erweiterung SOAP oder PEAR " "SOAP installiert ist" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "SQL-Validator aktivieren" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4325,12 +4336,12 @@ msgstr "" "Falls Sie einen benutzerdefinierten Benutzernamen haben, hier angeben " "(Standard ist [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Benutzername" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4338,19 +4349,19 @@ msgstr "" "Schlage (wenn möglich) einen Datenbank-Namen im "Create Database" " "Formular vor oder lasse das Textfeld leer" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Schlage einen neuen Datenbank-Namen vor" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Warnhinweis auf der Hauptseite, wenn Suhosin erkannt wird" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Suhosin Warnhinweis" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4358,11 +4369,11 @@ msgstr "" "Textfeldgröße (in Spalten) im Bearbeitungsmodus. Dieser Wert wird vergrößert " "für Textfelder bei SQL-Abfragen (x 2) und Abfragefenster (x 1,25)" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "Textfeldspalten" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4370,31 +4381,31 @@ msgstr "" "Textfeldgröße (in Zeilen) im Bearbeitungsmodus. Dieser Wert wird vergrößert " "für Textfelder bei SQL-Abfragen (x 2) und Abfragefenster (x 1,25)" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "Textfeldzeilen" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "Titelleiste des Browserfensters wenn eine Datenbank ausgewählt ist" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "Titelleiste des Browserfensters wenn nichts ausgewählt ist" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Standardtitel" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "Titelleiste des Browserfensters wenn ein Server ausgewählt ist" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "Titelleiste des Browserfensters wenn eine Tabelle ausgewählt ist" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4406,27 +4417,27 @@ msgstr "" "For) Header, der von dem proxy 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR" "[/kbd] kommt, vertrauen soll." -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "Liste der Vertrauenswürdigen Proxies für IP Filter" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "Verzeichnis auf dem Server zum Upload von zu importierenden Dateien" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Upload Verzeichnis" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Erlaube Suche in der gesammten Datenbank" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Datenbank Suche" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4434,11 +4445,11 @@ msgstr "" "Wenn deaktiviert, können Benutzer – unabhängig von der Checkbox rechts – " "keine der untenstehenden Einstellungen ändern" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "Aktiviere den Reiter "Entwickler" in den Einstellungen" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4448,19 +4459,19 @@ msgstr "" "Abfragen. In libraries/import.lib.php sind die Voreinstellungen, wieviele " "Abfragen ein Statement enthalten darf." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Auswirkungen von Mehrfachbefehlen zeigen" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Auf neue Version prüfen" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Aktiviere die Prüfung auf Aktualisierungen auf der Hauptseite" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4468,7 +4479,7 @@ msgstr "Aktiviere die Prüfung auf Aktualisierungen auf der Hauptseite" msgid "Version check" msgstr "Versionsüberprüfung" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4476,7 +4487,7 @@ msgstr "" "[a@http://en.wikipedia.org/wiki/Gzip]GZip[/a]-Kompression für Import- und " "Exportoperationen aktiviren" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4496,61 +4507,61 @@ msgstr "HTTP-Authentifizierung" msgid "Signon authentication" msgstr "Signon-Authentifizierung" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV mit LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "XLS Mappe für Excel 97-2003" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "XLSX Mappe für Excel 2007 und neuer" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Kalkulationstabelle" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "Schnell" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "Benutzerdefiniert" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Export-Optionen der Datenbank" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV-Daten für MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4638,7 +4649,7 @@ msgstr "Routinen" msgid "Return type" msgstr "Rückgabe-Typ" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5042,58 +5053,58 @@ msgstr "BLOB Inhalte anzeigen" msgid "Browser transformation" msgstr "Darstellungsumwandlung" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Kopieren" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Die Zeile wurde gelöscht." -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Beenden" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "in der Abfrage" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Zeige Datensätze " -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "insgesamt" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "die Abfrage dauerte %01.4f sek." -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Operationen für das Abfrageergebnis" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Druckansicht (vollständige Textfelder)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "Diagramm anzeigen" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "Erzeuge View" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Der Verweis wurde nicht gefunden." @@ -10338,6 +10349,12 @@ msgstr "VIEW Name" msgid "Rename view to" msgstr "View umbenennen in" +#~ msgid "Show table row links on left side" +#~ msgstr "Links zu Tabellenzeilen auf der linken Seite anzeigen" + +#~ msgid "Show table row links on right side" +#~ msgstr "Links zu Tabellenzeilen auf der rechten Seite anzeigen" + #~ msgid "Background color" #~ msgstr "Hintergrundfarbe" diff --git a/po/el.po b/po/el.po index 18d53c4ce9..3716debc2d 100644 --- a/po/el.po +++ b/po/el.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-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-05-19 13:51+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" @@ -199,7 +199,7 @@ msgstr "Σχόλια" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "Όχι" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -354,7 +354,7 @@ msgid "Edit or export relational schema" msgstr "Επεξεργασία ή εξαγωγή σχεσιακού σχήματος" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -421,19 +421,19 @@ msgid "visual builder" msgstr "εικονικός μάστορας" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Ταξινόμηση" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Αύξουσα" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -541,8 +541,8 @@ msgstr "Περιήγηση" msgid "Delete the matches for the %s table?" msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τον πίνακα %s;" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -611,7 +611,7 @@ msgstr "Η παρακολούθηση είναι ενεργοποιημένη." msgid "Tracking is not active." msgstr "Η παρακολούθηση δεν είναι ενεργοποιημένη." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -642,20 +642,20 @@ msgstr "" "Η %s είναι η προεπιλεγμένη μηχανή αποθήκευσης σε αυτόν τον διακομιστή MySQL." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +666,15 @@ msgid "Check tables having overhead" msgstr "Επιλογή πινάκων με περίσσεια" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Εμφάνιση για εκτύπωση" @@ -728,7 +728,7 @@ msgstr "Περιληπτικός πίνακας δεδομένων" msgid "Tracked tables" msgstr "Παρακολουθούμενοι πίνακες" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -928,7 +928,7 @@ msgstr "" "και αν αυξήσετε τα χρονικά όρια της php." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1146,8 +1146,8 @@ msgstr "Εσωτερική Επεξεργασία" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1869,13 +1869,13 @@ msgstr "κοινόχρηστο" msgid "Tables" msgstr "Πίνακες" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1979,7 +1979,7 @@ msgstr "" "Μη έγκυρο όνομα διακομιστή για τον διακομιστή %1$s. Ξαναδείτε τις ρυθμίσεις " "σας." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2041,7 +2041,7 @@ msgstr "Η MySQL επέστρεψε το μήνυμα: " msgid "Failed to connect to SQL validator!" msgstr "Αδύνατη η σύνδεση στο εγκυροποιητή SQL" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Ανάλυση SQL" @@ -2053,11 +2053,11 @@ msgstr "Χωρίς ανάλυση SQL" msgid "Without PHP Code" msgstr "χωρίς κώδικα PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Δημιουργία κώδικα PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Ανανέωση" @@ -2066,7 +2066,7 @@ msgstr "Ανανέωση" msgid "Skip Validate SQL" msgstr "Παράβλεψη επικύρωσης SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Επικύρωση SQL" @@ -2164,11 +2164,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα. Δείτε %s" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2215,63 +2215,78 @@ msgstr "" msgid "There are no files to upload" msgstr "Δεν υπάρχουν αρχεία προς αποστολή" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Και τα δύο" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "Ύψος" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Άνοιγμα" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Κλεισμένο" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "δομή" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "δεδομένα" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "δομή και δεδομένα" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Γρήγορο - προβολή μονό των ελάχιστων επιλογών για ρύθμιση" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Προσαρμογή - προβολή όλων των πιθανών επιλογών για ρύθμιση" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" "Προσαρμογή - όπως παραπάνω αλλά χωρίς την επιλογή γρήγορου/προσαρμοσμένου" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "πλήρεις εντολές εισαγωγής (Insert)" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "Εκτεταμένες εντολές εισαγωγής (Insert)" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "αμφότερα τα παραπάνω" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "κανένα από τα παραπάνω" @@ -2358,7 +2373,7 @@ msgid "Set value: %s" msgstr "Ορισμός τιμής: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Επαναφορά προεπιλεγμένης τιμής" @@ -2846,10 +2861,10 @@ msgstr "Προσαρμοσμένη κατάσταση αναζήτησης" msgid "Customize default options" msgstr "Προσαρμογή προεπιλεγμένων επιλογών" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3448,7 +3463,7 @@ msgid "Maximum displayed SQL length" msgstr "Μέγιστο μήκος προβολής SQL" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Οι χρήστες δεν μπορούν να ορίσουν μεγαλύτερη τιμή" @@ -3515,41 +3530,37 @@ msgstr "" "Διαγραφή" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "Προβολή συνδέσμων γραμμής πίνακα στην αριστερή πλευρά" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "Προβολή συνδέσμων γραμμής πίνακα στη δεξιά πλευρά" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" "Χρήση φυσικής ταξινόμησης για την ταξινόμηση ονομάτων πινάκων και βάσεων " "δεδομένων" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Φυσική ταξινόμηση" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Χρήση μόνο εικονιδίων, μόνο κειμένου ή και τα δύο" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Γραμμή πλοήγησης με εικονίδια" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "Χρήση εξαγόμενου GZip buffering για αυξημένη ταχύτητα σε μεταφορές HTTP" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Εξαγόμενο GZip buffering" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3557,19 +3568,19 @@ msgstr "" "[kbd]SMART[/kbd] - π.χ. φθίνουσα ταξινόμηση για στήλες τύπου TIME, DATE, " "DATETIME και TIMESTAMP, αύξουσα ταξινόμηση στα υπόλοιπα" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Προεπιλεγμένη ταξινόμηση" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Χρήση εξαναγκασμένων συνδέσεων στις βάσεις δεδομένων MySQL" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Επιμένουσες συνδέσεις" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3579,23 +3590,23 @@ msgstr "" "λεπτομερούς δομής της βάσης δεδομένων, αν κάποιο από τους απαραίτητους " "πίνακες για την αποθήκευση ρυθμίσεων του phpMyAdmin δεν βρεθεί" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Λείπουν πίνακες αποθήκευσης ρυθμίσεων του phpMyAdmin" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Λειτουργίες πίνακα με εικονίδια" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Αποτροπή επεξεργασίας στηλών BLOB και BINARY" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Προστασία δυαδικών στηλών" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3605,122 +3616,122 @@ msgstr "" "ρυθμίσεων phpMyAdmin). Αν απενεργοποιηθεί, λειτουργούν ρουτίνες JS για " "προβολή του ιστορικού ερωτημάτων (χάνεται με το κλείσιμο του παραθύρου)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Μόνιμο ιστορικό ερωτημάτων" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Πόσα ερωτήματα παραμένουν στο ιστορικό" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Μέγεθος ιστορικού ερωτημάτων" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Προβολή καρτέλας με το άνοιγμα νέου παραθύρου ερωτήματος" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Προεπιλεγμένη καρτέλα παραθύρου ερωτήματος" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Ύψος παραθύρου ερωτήματος (σε εικονοστοιχεία)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Ύψος παραθύρου ερωτήματος" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Πλάτος παραθύρου ερωτήματος (σε εικονοστοιχεία)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Πλάτος παραθύρου ερωτήματος" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Επιλέξτε ποιες συναρτήσεις θα χρησιμοποιηθούν για μετατροπή συνόλων " "χαρακτήρων" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Μηχανή επανακωδικοποίησης" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Μετονομασία πίνακα σε" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Επανάληψη κεφαλίδων κάθε Χ κελιά. Το [kbd]0[/kbd] απενεργοποιεί το " "χαρακτηριστικό" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Επανάληψη κεφαλίδων" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Προβλή κουμπιού βοήθειας αντί κειμένου Τεκμηρίωσης" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Προβολή κουμπιού βοήθειας" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Ο φάκελος στον διακομιστή όπου οι εξαγωγές μπορούν να αποθηκευτούν" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Φάκελος αποθήκευσης" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Αφήστε το άδειο αν δεν χρησιμοποιηθεί" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "Σειρά πιστοποίησης φιλοξενητή" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Αφήστε κενό για προεπιλογές" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "Κανόνες πιστοποίησης φιλοξενητή" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Δικαίωμα συνδέσεων χωρίς κωδικό πρόσβασης" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Δικαίωμα ριζικής σύνδεσης" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "Το βασίλειο του HTTP Basic Auth εμφανίζεται όταν γίνεται πιστοποίηση HTTP" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "Βασίλειο HTTP" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3730,19 +3741,19 @@ msgstr "" "υλικού SweKey[/a] (δεν βρίσκεται στο ριζικό φάκελο του εγγράφου; " "προτείνεται: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "Αρχείο ρυθμίσεων SweKey" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Μέθοδος επικύρωσης για χρήση" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Τύπος επικύρωσης" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3750,11 +3761,11 @@ msgstr "" "Αφήστε κενό αν δεν υπάρχει [a@http://wiki.phpmyadmin.net/pma/bookmark]" "σελιδοδείκτης[/a] υποστήριξης, προτείνεται: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Πίνακας σελιδοδεικτών" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3762,32 +3773,32 @@ msgstr "" "Αφήστε κενό για να μη υπάρχουν σχόλια/τύποι mime στις στήλες. Προτείνεται: " "[kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Πίνακας πληροφοριών στήλης" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Συνδεση συμπίεσης στο διακομιστή MySQL" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Σύνδεση συμπίεσης" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Πως να συνδεθείτε στο διακομιστή, κρατήστε το tcp αν δεν είστε σίγουρος/η" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Τύπος σύνδεσης" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Έλεγχος κωδικού πρόσβασης χρήστη" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3796,19 +3807,19 @@ msgstr "" "Περισσότερες πληροφορίες είναι διαθέσιμες στο [a@http://wiki.phpmyadmin.net/" "pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Έλεγχος χρήστη" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Απαρίθμηση πινάκων όταν εμφανίζεται η λίστα βάσεων δεδομένων" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Απαρίθμηση πινάκων" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3816,11 +3827,11 @@ msgstr "" "Αφήστε το κενό για καμία υποστήριξη Σχεδιαστή. Προτείνεται: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Πίνακας σχεδιαστή" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3829,28 +3840,28 @@ msgstr "" "aid=1849494]PMA bug tracker[/a] και στο [a@http://bugs.mysql.com/19588]MySQL " "Bugs[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Απενεργοποίηση χρήσης του INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Ποια επέκταση PHP να χρησιμοποιήσετε. Προτείνεται η mysqli αν υποστηρίζεται" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Επέκταση PHP για χρήση" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Απόκρυψη βάσεων δεδομένων που ταιριάζουν την κανονική έκφραση (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Απόκρυψη βάσεων δεδομένων" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3858,31 +3869,31 @@ msgstr "" "Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL , προτείνεται: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "Πίνακας ιστορικού ερωτημάτων SQL" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Ονομασία θέσης όπου εκτελείται ο διακομιστής MySQL" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Ονομασία θέσης διακομιστή" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "Διεύθυνση URL αποσύνδεσης" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Δοκιμάστε να συνδεθείτε χωρίς κωδικό πρόσβασης" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Σύνδεση χωρίς κωδικό πρόσβασης" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3897,30 +3908,30 @@ msgstr "" "χρησιμοποιώντας το [kbd]*[/kbd] στο τέλος για να δείξετε τις υπόλοιπες σε " "αλφαβητική σειρά." -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Εμφάνιση μόνο των βάσεων δεδομένων από λίστα" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Αφήστε το άδειο αν δεν χρησιμοποιείτε ρύθμισμένη επικύρωση" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Κωδικός πρόσβασης για ρυθμισμένη επικύρωση" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Αφήστε το κενό για μη υποστήριξη σχεδίου PDF, προτείνεται: [kbd]pma_pdf_pages" "[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "Σχέδιο PDF: πίνακας σελίδων" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3931,20 +3942,20 @@ msgstr "" "a] για λεπτομέρειες. Αφήστε κενό για να μην υπάρχει υποστήριξη. Προτείνεται: " "[kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Όνομα βάσης δεδομένων" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Θύρα που αποκρίνεται ο διακομιστής MySQL. Αφήστε το άδειο για προεπιλογή" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Θύρα διακομιστή" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -3956,13 +3967,13 @@ msgstr "" "Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: [kbd]" "pma_config[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Currently opened table" msgid "Recently used table" msgstr "Ο τρέχων ανοιχτός πίνακας" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3970,19 +3981,19 @@ msgstr "" "Αφήστε το κενό για να μην υπάρχει υποστήριξη [a@http://wiki.phpmyadmin.net/" "pma/relation]συνδέσμων-συσχετίσεων[/a]. Προτείνεται: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Πίνακας συσχετίσεων" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "Εντολή SQL που φέρνει τις διαθέσιμες βάσεις δεδομένων" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "Εντολή SHOW DATABASES" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3990,44 +4001,44 @@ msgstr "" "Δείτε τους [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]τύπους " "επικύρωσης[/a] για ένα παράδειγμα" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Ονομάσία συνεδρίας σύνδεσης" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "Διεύθυνση URL σύνδεσης" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Η υποδοχή στην οποία ο διακομιστής MySQL αποκρίνεται. Αφήστε το κενό για " "προεπιλογή" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Υποδοχή διακομιστή" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "Ενεργοποιήση SSL για σύνδεση στο διακομιστή MySQL" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Χρήση SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Αφήστε το κενό για να μην υποστηρίζεται σχέδιο PDF. Προτείνεται: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "Σχέδιο PDF: συντεταγμένες πίνακα" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4035,11 +4046,11 @@ msgstr "" "Ο πίνακας που περιγράφει τις προβαλλόμενες στήλες. Αφήστε το κενό για να μην " "υποστηρίζεται. Προτείνεται: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Πίνακας προβολής στηλών" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4051,13 +4062,13 @@ msgstr "" "Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: [kbd]" "pma_config[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "Πίνακας αποθήκευσης προτιμήσεων χρήστη" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4065,11 +4076,11 @@ msgstr "" "Όταν δηλωθεί DROP DATABASE IF EXISTS θα προστεθεί ως πρώτη γραμμή στην " "καταγραφή κατά τη δημιουργία βάσης δεδομένων." -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "Προσθήκη ΔΙΑΓΡΑΦΗΣ ΒΑΣΗΣ ΔΕΔΟΜΕΝΩΝ (DROP DATABASE)" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4077,11 +4088,11 @@ msgstr "" "Όταν δηλωθεί DROP TABLE IF EXISTS θα προστεθεί ως πρώτη γραμμή στην " "καταγραφή κατά τη δημιουργία πίνακα." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "Προσθήκη ΔΙΑΓΡΑΦΗΣ ΠΙΝΑΚΑ (DROP TABLE)" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4089,21 +4100,21 @@ msgstr "" "Όταν δηλωθεί DROP VIEW IF EXISTS θα προστεθεί ως πρώτη γραμμή στην καταγραφή " "κατά τη δημιουργία προβολής." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "Προσθήκη ΔΙΑΓΡΑΦΗΣ ΠΡΟΒΟΛΗΣ (DROP VIEW)" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Ορίζει τη λίστα των δηλώσεων που χρησιμοποιεί η αυτόματη δημιουργία για νέες " "εκδόσεις." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "Δηλώσεις προς παρακολούθηση" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4111,11 +4122,11 @@ msgstr "" "Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL , προτείνεται: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "Πίνακας ιστορικού παρακολούθησης ερωτημάτων SQL" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4123,11 +4134,11 @@ msgstr "" "Αν ο μηχανισμός παρακολούθησης δημιουργεί εκδόσεις για πίνακες και προβολές " "αυτόματα." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Αυτόματη δημιουργία εκδόσεων" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -4135,15 +4146,15 @@ msgstr "" "Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: [kbd]" "pma_config[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "Πίνακας αποθήκευσης προτιμήσεων χρήστη" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "Χρήστης για ρυθμισμένη επικύρωση" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4151,11 +4162,11 @@ msgstr "" "Απενεργοποιήστε το αν γνωρίζεται ότι οι πίνακες pma_* είναι ενημερωμένοι. " "Αυτό αποτρέπει ελέγχους συμβατότητας και αυξάνει την απόδοση" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Φιλοχρηστικός έλεγχος" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4163,19 +4174,19 @@ msgstr "" "Μια φιλοχρηστική περιγραφή αυτού του διακομιστή. Αφήστε το κενό για να " "εμφανίζεται το όνομα." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Φιλοχρηστικό όνομα διακομιστή" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Αν θα εμφανίζεται στο χρήστη ένα κουμπί «Εμφάνιση όλων»" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Δικαίωμα προβολή όλων των γραμμών" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4186,15 +4197,15 @@ msgstr "" "ρυθμίσεων. Αυτό δεν περιορίζει τη δυνατότητα άμεσης εκτέλεσης της ίδιας " "εντολής" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Εμφάνιση φόρμας αλλαγής κωδικού πρόσβασης" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Εμφάνιση φόρμας δημιουργίας βάσης δεδομένων" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -4202,19 +4213,19 @@ msgstr "" "Ορίζει αν θα εμφανίζονται οι τύποι των πεδίων σε κατάσταση επεξεργασίας/" "εισαγωγής" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Εμφάνιση τύπων πεδίου" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Προβολή των πεδίων συναρτήσεων σε κατάσταση επεξεργασίας εισαγωγής" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Εμφάνιση πεδίων συναρτήσεων" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4222,35 +4233,35 @@ msgstr "" "Εμφανίζει σύνδεσμο για την τεκμηρίωση της συνάρτησης [a@http://php.net/" "manual/function.phpinfo.php]phpinfo()[/a]" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Εμφάνιση συνδέσμου phpinfo()" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Εμφάνιση λεπτομερών πληροφοριών διακομιστή MySQL" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Ορίζει αν τα δημιουργημένα ερωτήματα SQL από το phpMyAdmin πρέπει να " "προβάλονται" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Εμφάνιση ερωτημάτων SQL" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Δικαίωμα προβολής στατιστικών βάσης δεδομένων και πινάκων (π.χ. χρήση χώρου " "στο δίσκο)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Εμφάνιση στατιστικών" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4258,11 +4269,11 @@ msgstr "" "Αν οι επεξηγήσεις είναι ενεργοποιημένες και έχει οριστεί σχόλιο για τη βάση " "δεδομένων, αυτή η επιλογή θα αντικαταστήσει το όνομα με το σχόλιο." -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Προβολή σχολίου βάσης δεδομένων αντί για το όνομα" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4274,30 +4285,30 @@ msgstr "" "$cfg['LeftFrameTableSeparator'], έτσι μόνο ο φάκελος καλείται όπως η " "ετικέτα, ενώ το όνομα του πίνακα δεν αλλάζει" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Προβολή σχολίου πίνακα αντί για το όνομά του" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Προβολή σχολίων πινάκων στις επεξηγήσεις" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Επισήμανση χρησιμοποιημένων πινάκων και ενεργοποίηση της δυνατότητας " "προβολής των βάσεων δεδομένων με κλειδωμένους πίνακες" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Παράβλεψη κλειδωμένων πινάκων" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "Απαιτεί την ενεργοποίηση του Εγκυροποιητή SQL" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4307,7 +4318,7 @@ msgstr "Απαιτεί την ενεργοποίηση του Εγκυροποι msgid "Password" msgstr "Κωδικός Πρόσβασης" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4315,11 +4326,11 @@ msgstr "" "[strong]Προειδοποίηση:[/strong] απαιτείται η επέκταση PHP SOAP ή η PEAR SOAP " "να έχει εγκατασταθεί" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "Ενεργοποίηση του Εγκυροποιητή SQL" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4327,12 +4338,12 @@ msgstr "" "Αν έχετε ένα προσαρμοσμένο όνομα χρήστη, ορίστε το εδώ (προεπιλογή:[kbd]" "anonymous[/kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Όνομα χρήστη" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4340,19 +4351,19 @@ msgstr "" "Προτείνεται ένα όνομα βάσης δεδομένων στη φόρμα «Δημιουργία Βάσης " "δεδομένων» (αν είναι δυνατό) ή διατήρηση του πεδίου άδειου" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Πρόταση νέου ονόματος βάσης δεδομένων" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Μια προειδοποίηση εμφανίζεται στη βασική σελίδα αν βρεθεί το Suhosin" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "προειδοποίηση Suhosin" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4361,11 +4372,11 @@ msgstr "" "πολλαπλασιαστεί για τα textareas των ερωτημάτων (x2) και το παράθυρο των " "ερωτημάτων (x1,25)" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "Στήλες περιοχής κειμένου (textarea)" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4374,32 +4385,32 @@ msgstr "" "πολλαπλασιαστεί για τα textareas των ερωτημάτων (x2) και το παράθυρο των " "ερωτημάτων (x1,25)" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "Γραμμές περιοχής κειμένου (textarea)" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" "Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται μια βάση δεδομένων" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "Τίτλος του παραθύρου του φυλλομετρητή όταν δεν επιλέγεται τίποτα" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Προεπιλεγμένος τίτλος" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται ένας διακομιστής" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "Τίτλος του παραθύρου του φυλλομετρητή όταν επιλέγεται ένας πίνακας" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4411,28 +4422,28 @@ msgstr "" "HTTP_X_FORWARDED_FOR (X-Forwarded-For) προερχόμενη από τη διεύθυνση 1.2.3.4:" "[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "Λίστα αξιόπιστων διευθύνσεων IP για να επιτρέπεται/απαγορεύεται" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" "Φάκελος στο διακομιστή όπου μπορείτε να αποστείλετε αρχεία για εισαγωγή" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Φάκελος αποστολής" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Επιτρέπει την αναζήτηση εντός ολόκληρης της βάσης δεδομένων" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Χρήση αναζήτησης βάσης δεδομένων" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4440,11 +4451,11 @@ msgstr "" "Όταν απενεργοποιηθεί, οι χρήστες δεν μπορούν να ορίσουν καμιά από τις " "παρακάτω επιλογές, ανεξάρτητα από την επιλογή στα δεξιά" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "Ενεργοποίηση της καρτέλας Δημιουργός στις ρυθμίσεις" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4454,21 +4465,21 @@ msgstr "" "δηλώσεων. Δείτε στο libraries/import.lib.php τις προεπιλογές για το πόσες " "δηλώσεις μπορεί να περιέχει ένα ερώτημα." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Φιλοχρηστικές πολλαπλές δηλώσεις" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Έλεγχος για τελευταία έκδοση" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" "Ενεργοποιεί τον έλεγχο για τη τελευταία έκδοση στη κεντρική σελίδα του " "phpMyAdmin" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4476,7 +4487,7 @@ msgstr "" msgid "Version check" msgstr "Έλεγχος έκδοσης" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4484,7 +4495,7 @@ msgstr "" "Ενεργοποίηση της συμπίεσης [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]" "ZIP[/a] για λειτουργίες εισαγωγής και εξαγωγής" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4504,61 +4515,61 @@ msgstr "Πιστοποίηση HTTP" msgid "Signon authentication" msgstr "Σειρά επικύρωσης" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV με χρήση ΦΟΡΤΩΣΗΣ ΔΕΔΟΜΕΝΩΝ (LOAD DATA)" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Βιβλίο εργασίας Excel 97-2003 XLS" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Βιβλίο εργασίας Excel 2007 XLSX" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Έγγραφο Λογιστικού Φύλλου Ανοιχτού Κώδικα (ODS)" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "Γρήγορο" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "Προσαρμοσμένο" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Επιλογές εξαγωγής βάσης δεδομένων" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "Μορφή CSV για δεδομένα MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Έγγραφο Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Έγγραφο Κειμένου Ανοιχτού Κώδικα (ODΤ)" @@ -4650,7 +4661,7 @@ msgstr "Εργασίες" msgid "Return type" msgstr "Τύπος επιστροφής" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5049,58 +5060,58 @@ msgstr "Εμφάνιση περιεχομένων BLOB" msgid "Browser transformation" msgstr "Μετατροπή περιηγητή" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Αντιγραφή" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Η Εγγραφή έχει διαγραφεί" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Τερματισμός" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "στην εντολή" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Εμφάνιση εγγραφών " -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "συνολικά" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Προβολή εκτύπωσης (με πλήρη κείμενα)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "Εμφάνιση διαγράμματος" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "Δημιουργία προβολής" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Δεν βρέθηκε η σύνδεση" @@ -10357,6 +10368,12 @@ msgstr "ΠΡΟΒΟΛΗ ονόματος" msgid "Rename view to" msgstr "Μετονομασία πίνακα σε" +#~ msgid "Show table row links on left side" +#~ msgstr "Προβολή συνδέσμων γραμμής πίνακα στην αριστερή πλευρά" + +#~ msgid "Show table row links on right side" +#~ msgstr "Προβολή συνδέσμων γραμμής πίνακα στη δεξιά πλευρά" + #~ msgid "Background color" #~ msgstr "Χρώμα υποβάθρου" diff --git a/po/en_GB.po b/po/en_GB.po index 9f95bb318f..51e1c2fc6d 100644 --- a/po/en_GB.po +++ b/po/en_GB.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-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-05-31 19:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" @@ -199,7 +199,7 @@ msgstr "Comments" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "No" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -354,7 +354,7 @@ msgid "Edit or export relational schema" msgstr "Edit or export relational schema" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -421,19 +421,19 @@ msgid "visual builder" msgstr "visual builder" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Sort" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Ascending" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -541,8 +541,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -611,7 +611,7 @@ msgstr "Tracking is active." msgid "Tracking is not active." msgstr "Tracking is not active." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -641,20 +641,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +665,15 @@ msgid "Check tables having overhead" msgstr "Check tables having overhead" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Print view" @@ -727,7 +727,7 @@ msgstr "Data Dictionary" msgid "Tracked tables" msgstr "Tracked tables" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -923,7 +923,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1139,8 +1139,8 @@ msgstr "Inline Edit" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1606,17 +1606,14 @@ msgstr[0] "%1$d row inserted." msgstr[1] "%1$d rows inserted." #: libraries/RecentTable.class.php:113 -#| msgid "Could not save configuration" msgid "Could not save recent table" msgstr "Could not save recent table" #: libraries/RecentTable.class.php:148 -#| msgid "Count tables" msgid "Recent tables" msgstr "Recent tables" #: libraries/RecentTable.class.php:154 -#| msgid "There are no configured servers" msgid "There are no recent tables" msgstr "There are no recent tables" @@ -1852,13 +1849,13 @@ msgstr "shared" msgid "Tables" msgstr "Tables" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1960,7 +1957,7 @@ msgstr "Invalid server index: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2022,7 +2019,7 @@ msgstr "MySQL said: " msgid "Failed to connect to SQL validator!" msgstr "Failed to connect to SQL validator!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Explain SQL" @@ -2034,11 +2031,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "Without PHP Code" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Create PHP Code" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Refresh" @@ -2047,7 +2044,7 @@ msgstr "Refresh" msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Validate SQL" @@ -2145,11 +2142,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2195,62 +2192,77 @@ msgstr "The directory you set for upload work cannot be reached" msgid "There are no files to upload" msgstr "There are no files to upload" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Both" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "Height" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Open" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Closed" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "structure" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "data" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "structure and data" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Quick - display only the minimal options to configure" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Custom - display all possible options to configure" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "Custom - like above, but without the quick/custom choice" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "complete inserts" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "extended inserts" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "both of the above" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "neither of the above" @@ -2335,7 +2347,7 @@ msgid "Set value: %s" msgstr "Set value: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Restore default value" @@ -2818,10 +2830,10 @@ msgstr "Customise browse mode" msgid "Customize default options" msgstr "Customise default options" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3312,12 +3324,10 @@ msgid "Enable highlighting" msgstr "Enable highlighting" #: libraries/config/messages.inc.php:286 -#| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" msgstr "Maximum number of recently used tables; set 0 to disable" #: libraries/config/messages.inc.php:287 -#| msgid "Currently opened table" msgid "Recently used tables" msgstr "Recently used tables" @@ -3410,7 +3420,7 @@ msgid "Maximum displayed SQL length" msgstr "Maximum displayed SQL length" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Users cannot set a higher value" @@ -3473,38 +3483,34 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "These are Edit, Inline edit, Copy and Delete links" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "Show table row links on left side" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "Show table row links on right side" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "Use natural order for sorting table and database names" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Natural order" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Use only icons, only text or both" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Iconic navigation bar" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "use GZip output buffering for increased speed in HTTP transfers" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip output buffering" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3512,19 +3518,19 @@ msgstr "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Default sorting order" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Use persistent connections to MySQL databases" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Persistent connections" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3534,23 +3540,23 @@ msgstr "" "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Missing phpMyAdmin configuration storage tables" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Iconic table operations" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Disallow BLOB and BINARY columns from editing" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Protect binary columns" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3560,117 +3566,116 @@ msgstr "" "storage). If disabled, this utilises JS-routines to display query history " "(lost by window close)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Permanent query history" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "How many queries are kept in history" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Query history length" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Tab displayed when opening a new query window" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Default query window tab" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Query window height (in pixels)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Query window height" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Query window width (in pixels)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Query window width" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Select which functions will be used for character set conversion" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Recoding engine" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "When browsing tables, the sorting of each table is remembered" -#: libraries/config/messages.inc.php:350 -#| msgid "Rename table to" +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "Remember table's sorting" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Repeat headers" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Show help button instead of Documentation text" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Show help button" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Directory where exports can be saved on server" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Save directory" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Leave blank if not used" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "Host authorisation order" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Leave blank for defaults" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "Host authorisation rules" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Allow logins without a password" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Allow root login" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP Basic Auth Realm name to display when doing HTTP Auth" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3680,19 +3685,19 @@ msgstr "" "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "SweKey config file" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Authentication method to use" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Authentication type" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3700,11 +3705,11 @@ msgstr "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Bookmark table" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3712,31 +3717,31 @@ msgstr "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Column information table" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Compress connection to MySQL server" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Compress connection" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Connection type" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Control user password" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3744,19 +3749,19 @@ msgstr "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Control user" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Count tables when showing database list" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Count tables" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3764,11 +3769,11 @@ msgstr "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Designer table" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3776,27 +3781,27 @@ msgstr "" "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]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Disable use of INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "What PHP extension to use; you should use mysqli if supported" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "PHP extension to use" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Hide databases matching regular expression (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Hide databases" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3804,31 +3809,31 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "SQL query history table" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Hostname where MySQL server is running" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Server hostname" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "Logout URL" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Try to connect without password" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Connect without password" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3842,29 +3847,29 @@ msgstr "" "their names in order and use [kbd]*[/kbd] at the end to show the rest in " "alphabetical order." -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Show only listed databases" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Leave empty if not using config auth" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Password for config auth" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF schema: pages table" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3874,22 +3879,19 @@ msgstr "" "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Database name" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "Port on which MySQL server is listening, leave empty for default" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Server port" -#: libraries/config/messages.inc.php:408 -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: [kbd]" -#| "pma_config[/kbd]" +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" @@ -3897,12 +3899,11 @@ msgstr "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" -#: libraries/config/messages.inc.php:409 -#| msgid "Currently opened table" +#: libraries/config/messages.inc.php:408 msgid "Recently used table" msgstr "Recently used table" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3910,19 +3911,19 @@ msgstr "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Relation table" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "SQL command to fetch available databases" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES command" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3930,41 +3931,41 @@ msgstr "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Signon session name" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "Socket on which MySQL server is listening, leave empty for default" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Server socket" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "Enable SSL for connection to MySQL server" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Use SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF schema: table coordinates" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -3972,14 +3973,11 @@ msgstr "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Display columns table" -#: libraries/config/messages.inc.php:425 -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: [kbd]" -#| "pma_config[/kbd]" +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" @@ -3987,12 +3985,11 @@ msgstr "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" -#: libraries/config/messages.inc.php:426 -#| msgid "User preferences storage table" +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "UI preferences table" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4000,11 +3997,11 @@ msgstr "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "Add DROP DATABASE" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4012,11 +4009,11 @@ msgstr "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "Add DROP TABLE" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4024,20 +4021,20 @@ msgstr "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "Add DROP VIEW" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Defines the list of statements the auto-creation uses for new versions." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "Statements to track" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4045,11 +4042,11 @@ msgstr "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "SQL query tracking table" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4057,11 +4054,11 @@ msgstr "" "Whether the tracking mechanism creates versions for tables and views " "automatically." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Automatically create versions" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -4069,15 +4066,15 @@ msgstr "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "User preferences storage table" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "User for config auth" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4085,11 +4082,11 @@ msgstr "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Verbose check" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4097,20 +4094,20 @@ msgstr "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Verbose name of this server" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Whether a user should be displayed a "show all (rows)" button" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Allow to display all the rows" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4120,15 +4117,15 @@ msgstr "" "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Show password change form" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Show create database form" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -4136,19 +4133,19 @@ msgstr "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Show field types" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Display the function fields in edit/insert mode" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Show function fields" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4156,32 +4153,32 @@ msgstr "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Show phpinfo() link" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Show detailed MySQL server information" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Defines whether SQL queries generated by phpMyAdmin should be displayed" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Show SQL queries" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "Allow to display database and table statistics (eg. space usage)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Show statistics" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4189,11 +4186,11 @@ msgstr "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Display database comment instead of its name" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4205,29 +4202,29 @@ msgstr "" "['LeftFrameTableSeparator'] directive, so only the folder is called like the " "alias, the table name itself stays unchanged" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Display table comment instead of its name" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Display table comments in tooltips" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Mark used tables and make it possible to show databases with locked tables" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Skip locked tables" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "Requires SQL Validator to be enabled" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4237,7 +4234,7 @@ msgstr "Requires SQL Validator to be enabled" msgid "Password" msgstr "Password" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4245,11 +4242,11 @@ msgstr "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "Enable SQL Validator" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4257,12 +4254,12 @@ msgstr "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Username" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4270,19 +4267,19 @@ msgstr "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Suggest new database name" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "A warning is displayed on the main page if Suhosin is detected" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Suhosin warning" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4290,11 +4287,11 @@ msgstr "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "Textarea columns" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4302,31 +4299,31 @@ msgstr "" "Textarea size (rows) in edit mode, this value will be emphasised for SQL " "query textareas (*2) and for query window (*1.25)" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "Textarea rows" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "Title of browser window when a database is selected" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "Title of browser window when nothing is selected" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Default title" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "Title of browser window when a server is selected" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "Title of browser window when a table is selected" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4338,27 +4335,27 @@ msgstr "" "For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "List of trusted proxies for IP allow/deny" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "Directory on server where you can upload files for import" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Upload directory" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Allow for searching inside the entire database" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Use database search" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4366,11 +4363,11 @@ msgstr "" "When disabled, users cannot set any of the options below, regardless of the " "check-box on the right" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "Enable the Developer tab in settings" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4380,19 +4377,19 @@ msgstr "" "libraries/import.lib.php for defaults on how many queries a statement may " "contain." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Verbose multiple statements" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Check for latest version" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Enables check for latest version on main phpMyAdmin page" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4400,7 +4397,7 @@ msgstr "Enables check for latest version on main phpMyAdmin page" msgid "Version check" msgstr "Version check" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4408,7 +4405,7 @@ msgstr "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4428,61 +4425,61 @@ msgstr "HTTP authentication" msgid "Signon authentication" msgstr "Signon authentication" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Workbook" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "Quick" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "Custom" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Database export options" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV for MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4569,7 +4566,7 @@ msgstr "Routines" msgid "Return type" msgstr "Return type" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4963,58 +4960,58 @@ msgstr "Show BLOB contents" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Copy" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "The row has been deleted" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "Display chart" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "Create view" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Link not found" @@ -6208,7 +6205,6 @@ msgid "SQL history" msgstr "SQL history" #: libraries/relation.lib.php:143 -#| msgid "Persistent connections" msgid "Persistent recently used tables" msgstr "Persistent recently used tables" @@ -10134,6 +10130,12 @@ msgstr "VIEW name" msgid "Rename view to" msgstr "Rename view to" +#~ msgid "Show table row links on left side" +#~ msgstr "Show table row links on left side" + +#~ msgid "Show table row links on right side" +#~ msgstr "Show table row links on right side" + #~ msgid "Background color" #~ msgstr "Background colour" diff --git a/po/es.po b/po/es.po index 5e46536385..6346e5e0c9 100644 --- a/po/es.po +++ b/po/es.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-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-05-19 19:01+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" @@ -199,7 +199,7 @@ msgstr "Comentarios" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "No" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -354,7 +354,7 @@ msgid "Edit or export relational schema" msgstr "Editar o exportar esquema relacional" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -423,19 +423,19 @@ msgid "visual builder" msgstr "editor visual" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Ordenar" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Ascendente" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -545,8 +545,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -615,7 +615,7 @@ 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:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -646,20 +646,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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" @@ -670,15 +670,15 @@ msgid "Check tables having overhead" msgstr "Marcar las tablas con residuo a depurar" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Vista de impresión" @@ -732,7 +732,7 @@ msgstr "Diccionario de datos" msgid "Tracked tables" msgstr "Tablas con seguimiento" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -934,7 +934,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:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1152,8 +1152,8 @@ msgstr "Editar en línea" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1877,13 +1877,13 @@ msgstr "compartido" msgid "Tables" msgstr "Tablas" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1987,7 +1987,7 @@ msgstr "" "El nombre del host no es válido para el servidor %1$s. Por favor revise su " "configuración." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2049,7 +2049,7 @@ msgstr "MySQL ha dicho: " msgid "Failed to connect to SQL validator!" msgstr "No pudo conectarse a un validador de SQL!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Explicar SQL" @@ -2061,11 +2061,11 @@ msgstr "Omitir la explicación del SQL" msgid "Without PHP Code" msgstr "Sin código PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Actualizar" @@ -2074,7 +2074,7 @@ msgstr "Actualizar" msgid "Skip Validate SQL" msgstr "Saltar la validación de SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Validar SQL" @@ -2172,11 +2172,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2226,65 +2226,80 @@ msgstr "No hay archivos para subir" # Used for # http://www.phpmyadmin.net/documentation/Documentation.html#cfg_NavigationBarIconic -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Ambos" +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "Altura" + # Used for # http://www.phpmyadmin.net/documentation/Documentation.html#cfg_InitialSlidersState -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Open" msgstr "Desplegados" # http://www.phpmyadmin.net/documentation/Documentation.html#cfg_InitialSlidersState -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Ocultos" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "estructura" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "datos" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "estructura y datos" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Rápido - mostrar solo el mínimo de opciones de configuración" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Personalizado - mostrar todas las opciones de configuración posibles" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "Personalizado - como el anterior, pero sin elegir rápido/personalizado" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "INSERTs completos" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "INSERTs extensos" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "todo lo anterior" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "ninguno de los anteriores" @@ -2369,7 +2384,7 @@ msgid "Set value: %s" msgstr "Valor establecido: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Restaurar valor predeterminado" @@ -2864,10 +2879,10 @@ msgstr "Cambiar las opciones de la modalidad de visualización" msgid "Customize default options" msgstr "Personalizar las opciones predeteminadas" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3469,7 +3484,7 @@ msgid "Maximum displayed SQL length" msgstr "Máxima longitud al mostrar consulta SQL" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Los usuarios no pueden definir un valor más alto" @@ -3533,41 +3548,36 @@ msgstr "Límite de la memoria" msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "Estos son los enlaces para Editar, Editar en el lugar, Copiar y Borrar" -# Defines where row-related links are located #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "Mostrar enlaces a la izquierda de filas de tabla" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "Mostrar enlaces a la derecha de las filas de tabla" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "Utilizar orden natural para ordenar nombres de tablas y bases de datos" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Orden natural" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Use solamente íconos, solamente texto o ambos" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Barra de navegación mediante íconos" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "Utilizar búfer en salida de GZip para mayor velocidad en transferencias HTTP" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Buffer de salida de GZip" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3575,19 +3585,19 @@ msgstr "" "[kbd]SMART[/kbd] - es decir: orden descendente para columnas de tipo TIME, " "DATE, DATETIME y TIMESTAMP, ascendente en los demás casos" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Orden de despliegue predeterminado" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Use conexiones persistentes para las bases de datos MySQL" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Conexiones persistentes" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3597,23 +3607,23 @@ msgstr "" "de los detalles de la base de datos si alguna de las tablas requeridas por " "phpMyAdmin no pudo ser encontrada en el almacenamiento de configuración" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Faltan las tablas de almacenaje de configuración de phpMyAdmin" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Operaciones de las tablas mediante íconos" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "No permitir la edición de columnas BLOB y BINARIAS" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Proteger los campos binarios" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3624,123 +3634,123 @@ msgstr "" "rutinas JavaScript para mostrar el histórico de consultas (olvidado al " "cerrar la ventana)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Histórico permanente de consultas" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Cuántas consultas se guardan en el histórico" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Longitud del histórico de consultas" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "La ceja se muestra cuando abre una nueva ventana de consulta" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Ceja predetermnada para la ventana de consulta" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Altura (en pixels) de la ventana de consultas" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Altura de ventana de consulta" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Anchura de ventana de consulta (en píxeles)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Anchura de ventana de consulta" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Seleccione cuáles funciones se usarán para la conversión del conjunto de " "caracteres" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Motor de recodificación" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Cambiar el nombre de la tabla a" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Repetir cabecera cada X celdas, [kbd]0[/kbd] desactiva esta funcionalidad" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Repetir cabeceras" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Mostrar botón de ayuda en lugar de texto de documentación" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Mostrar el botón de ayuda" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" "Directorio donde los archivos exportados se pueden guardar en el servidor" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Directorio de almacenamiento" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Deje en blanco si no necesita usarlo" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "Orden en que se autentica el Host" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Deje en blanco para usar los valores predeterminados" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "Reglas de autorización del Host" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Permitir inicio de sesión sin contraseña" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Permitir el inicio de sesión como root" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "Nombre a mostrar como dominio (HTTP Basic Auth Realm) durante la " "autenticación HTTP" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "Dominio HTTP (Realm)" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3750,19 +3760,19 @@ msgstr "" "dispositivo SweKey[/a] (no localizado en su raíz de documentos; valor " "sugerido: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "Archivo de configuración SweKey" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Método de autenticación a usar" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Tipo de autenticación" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3770,11 +3780,11 @@ msgstr "" "Deje en blanco para no dar soporte [a@http://wiki.cihar.com/pma/bookmark]" "bookmark[/a], de manera predeterminada: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Agregar tabla a favoritos" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3782,33 +3792,33 @@ msgstr "" "Dejar en blanco para evitar comentarios/tipos MIME en celdas, sugerido: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Tabla con información de la columna" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Conexión de compresión con el servidor SQL" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Conexión de compresión" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Cómo conectar con el servidor, mantenga el valor [kbd]tcp[/kbd] en caso de " "no estar seguro" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Tipo de conexión" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Controlar la contraseña del usuario" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3816,19 +3826,19 @@ msgstr "" "Un usuario MySQL especial configurado con permisos limitados, más " "información disponible en [a@http://wiki.cihar.com/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Controlar al usuario" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Contar las tablas cuando muestra el listado de las bases de datos" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Contar las tablas" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3836,11 +3846,11 @@ msgstr "" "Dejar en blanco para evitar el soporte de diseñador, sugerido: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Tabla del diseñador" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3848,30 +3858,30 @@ msgstr "" "Más información en [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] y [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Deshabilitar el uso de INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Cuál extensión PHP debe usar; usted debe usar mysqli si su sistema lo permite" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "extensión PHP para usar" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" "Ocultar las bases de datos que cumplen con los criterios de las expresiones " "regulares (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Ocultar las bases de datos" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3879,31 +3889,31 @@ msgstr "" "Dejar en blanco para evitar soporte de histórico de consultas SQL, sugerido: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "Tabla de histórico de consultas SQL" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Descripción del servidor" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Nombre del servidor" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "URL de fin de sesión" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Intente conectar sin contraseña" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Conecte sin contraseña" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3917,30 +3927,30 @@ msgstr "" "bases de datos, sólo ingrese sus nombres en orden y utilice [kbd]*[/kbd] al " "final para mostrar las restantes en orden alfabético." -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Muestre solamente las bases de datos listadas" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Deje vacío si no está usando config auth" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Contraseña para config auth" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Dejar en blanco para evitar soporte para esquema en PDF, sugerido: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "Esquema de PDF: tabla de páginas" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3951,21 +3961,21 @@ msgstr "" "completa. Deje en blanco para que no exita soporte. Predeterminado: [kbd]" "phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Nombre de la base de datos" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "El puerto al cual ha sido asociado el servidor MySQL, deje vacío para usar " "el predeterminado" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Puerto del servidor" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -3977,13 +3987,13 @@ msgstr "" "Deje en blanco para eliminar soporte de almacenamiento de preferencias en " "base de datos, valor sugerido : [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Currently opened table" msgid "Recently used table" msgstr "La tabla abierta actualmente" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3991,19 +4001,19 @@ msgstr "" "Deje en blanco para no dar soporte [a@http://wiki.cihar.com/pma/relation]" "relation-links[/a], de manera predeterminada: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Tabla de relaciones" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "Comando SQL para llamar las bases de datos disponibles" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "Comando SHOW DATABASES" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4011,44 +4021,44 @@ msgstr "" "Ver [a@http://wiki.cihar.com/pma/auth_types#signon]tipos de autenticación[/" "a] para conocer un ejemplo" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Nombre de la sesión al signon" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "URL de signon" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "El puerto escuchado por el servidor MySQL, deje vacío para usar los valores " "predeterminados" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Puerto del servidor" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "Habilitar SSL para conexión con el servidor SQL" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Usar SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Dejar en blanco para evitar soporte de esquema en PDF, sugerido: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "Esquema en PDF: tabla de coordenadas" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4056,11 +4066,11 @@ msgstr "" "Tabla para describir la presentación de las celdas, deje en blanco para " "quitar soporte, sugerido: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Mostrar tabla de columnas" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4072,13 +4082,13 @@ msgstr "" "Deje en blanco para eliminar soporte de almacenamiento de preferencias en " "base de datos, valor sugerido : [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "Tabla de almacenamiento de preferencias de usuario" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4086,11 +4096,11 @@ msgstr "" "Si se incluye la sentencia DROP DATABASE IF EXISTS como primera línea del " "registro al crear una base de datos o no." -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "Agregar DROP DATABASE" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4098,11 +4108,11 @@ msgstr "" "Si se incluye la sentencia DROP TABLE IF EXISTS como primera línea del " "registro al crear una tabla." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "Agregar DROP TABLE" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4110,21 +4120,21 @@ msgstr "" "Si se incluye la sentencia DROP VIEW IF EXISTS como primera línea del " "registro al crear una vista." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "Agregar DROP VIEW" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Definir la lista de sentencias que la creación automática usa para nuevas " "versiones." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "Sentencias a hacer seguimiento" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4132,11 +4142,11 @@ msgstr "" "Deje en blanco para eliminar soporte de seguimiento de consultas SQL, valor " "sugerido: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "Tabla de seguimiento de consultas SQL" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4144,11 +4154,11 @@ msgstr "" "Si el mecanismo de seguimiento crea versiones para tablas y vistas " "automáticamente o no." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Crear versiones automáticamente" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -4156,15 +4166,15 @@ msgstr "" "Deje en blanco para eliminar soporte de almacenamiento de preferencias en " "base de datos, valor sugerido : [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "Tabla de almacenamiento de preferencias de usuario" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "Usuario para config auth" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4172,31 +4182,31 @@ msgstr "" "Deshabilite si conoce que sus tablas pma_* se encuentran actualizadas. Esto " "previene chequeos de compatibilidad e incrementa por tanto el rendimiento" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Revisión detallada" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "Nombre del servidor donde el servidor SQL se está ejecutando." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Nombre del servidor, forma extendida" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Si el usuario puede ver un botón "mostrar todos (los registros)" o " "no" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Permitir que se muestren todas las filas" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4206,15 +4216,15 @@ msgstr "" "debido a que la contraseña está incluída en el archivo de configuración; " "esto no limita la capacidad de ejecutar la misma orden directamente" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Mostrar el formulario para cambio de contraseña" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Mostrar el formulario para crear una base de datos" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -4222,19 +4232,19 @@ msgstr "" "Si inicialmente se muestran los campos de tipo en el modo de edición/" "inserción o no" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Mostrar tipo de campos" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Mostrar campos de función en el modo de edición/inserción" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Mostrar los campos de función" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4242,33 +4252,33 @@ msgstr "" "Mostrar enlace a salida de [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Mostrar el enlace phpinfo()" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Mostrar información detallada acerca del servidor SQL" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Define si los enunciados SQL generados por phpMyAdmin se deben mostrar" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Mostrar las consultas SQL" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Permitir mostrar estadísiticas de base de datos y tablas (por ejemplo uso de " "espacio)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Mostrar estadísticas" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4276,11 +4286,11 @@ msgstr "" "Si los consejos están habilitados y hay un comentario de base de datos " "definido, esto intercambiará el comentario y nombre real" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Mostrar el comentario de la tabla en lugar de su nombre" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4292,30 +4302,30 @@ msgstr "" "['LeftFrameTableSeparator'], de forma que sólo la carpeta sea llamada como " "el alias, el nombre de la tabla en sí mismo permanece intacto" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Mostrar el comentario de la tabla en lugar de su nombre" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Mostrar los comentarios de las tablas en los tooltips" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Marcar tablas usadas y hacer posible el mostrar bases de datos con tablas " "bloqueadas" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Saltarse las tablas bloqueadas" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "Requiere que el Validador SQL esté habilitado" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4325,7 +4335,7 @@ msgstr "Requiere que el Validador SQL esté habilitado" msgid "Password" msgstr "Contraseña" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4333,11 +4343,11 @@ msgstr "" "[strong]Advertencia:[/strong] necesita extensión PHP SOAP o PEAR SOAP " "instalada" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "Habilitar Validador SQL" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4345,12 +4355,12 @@ msgstr "" "Si se posee un nombre de usuario propio, especifícalo aquí (valor por " "defecto: [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Nombre de usuario" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4358,19 +4368,19 @@ msgstr "" "Sugerir nombre de base de datos en el formulario de "Crear base de " "datos" (si es posible) o dejar vacío el campo de texto" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Sugerir un nuevo nombre para la base de datos" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Mostrar advertencia en la página principal si se detecta Suhosin" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Advertencia Suhosin" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4379,12 +4389,12 @@ msgstr "" "será aumentado en áreas de texto para consultas SQL (x2) y en la venta de " "consultas (x1,25)" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "Columnas para las áreas de texto" # See translation string 813 -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4393,31 +4403,31 @@ msgstr "" "aumentado en áreas de texto para consultas SQL (x2) y en la venta de " "consultas (x1,25)" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "Filas para áreas de texto" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "Título de la ventana al seleccionar una base de datos" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "Título de la ventana cuando no hay nada seleccionado" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Título predeterminado" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "Título de la ventana cuando se ha seleccionado un servidor" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "Título de la ventana cuando se ha seleccionado un tabla" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4429,27 +4439,27 @@ msgstr "" "HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente del proxy 1.2.3.4:[br]" "[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "Listado de proxies de confianza para autorización/bloqueo de IP" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "Directorio en el servidor donde puede subir archivos para importar" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Directorio desde donde se cargarán los archivos" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Permite hacer una búsqueda dentro de toda la base de datos" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Use búsquedas en la base de datos" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4458,11 +4468,11 @@ msgstr "" "opciones situadas más abajo, sin importar la casilla de la derecha" # see translation string 529 -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "Habilitar la pestaña Desarrolladores en la configuración" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4472,21 +4482,21 @@ msgstr "" "sentencias. Ver libraries/import.lib.php para saber el valor predeterminado " "de la cantidad de sentencias que puede tener una consulta." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Opción detallada para múltiples sentencias" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Buscar si existe una versión más reciente" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" "Habilita la verificación de la última versión en la página principal de " "phpMyAdmin" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4494,7 +4504,7 @@ msgstr "" msgid "Version check" msgstr "Revise la versión" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4502,7 +4512,7 @@ msgstr "" "Habilite la compresión [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP" "[/a] para las operaciones de importación y exportación" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4524,61 +4534,61 @@ msgstr "Autenticación por HTTP" msgid "Signon authentication" msgstr "Autenticación por sesión" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV usando LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Cuaderno XLS Excel 97-2003" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Cuaderno XLSX Excel 2007" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Hoja de cálculo Open Document" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "Rápido" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "Personalizado" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Opciones de exportación de la base de datos" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV para datos de MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Texto Open Document" @@ -4672,7 +4682,7 @@ msgstr "Rutinas" msgid "Return type" msgstr "Muestre el tipo" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5076,58 +5086,58 @@ msgstr "Mostrar contenido BLOB" msgid "Browser transformation" msgstr "Transformación del navegador" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Copiar" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "La fila se ha borrado" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Matar el proceso" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "en la consulta" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Mostrando registros" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tardó %01.4f seg" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Operaciones sobre los resultados de la consulta" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Previsualización para imprimir (documento completo)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "Mostrar gráfico" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "Crear vista" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "No se encontró el enlace" @@ -10393,6 +10403,13 @@ msgstr "VER nombre" msgid "Rename view to" msgstr "Cambiar el nombre de la vista a" +# Defines where row-related links are located +#~ msgid "Show table row links on left side" +#~ msgstr "Mostrar enlaces a la izquierda de filas de tabla" + +#~ msgid "Show table row links on right side" +#~ msgstr "Mostrar enlaces a la derecha de las filas de tabla" + #~ msgid "Background color" #~ msgstr "Color de fondo" diff --git a/po/et.po b/po/et.po index ff1c3c0a0d..3418814d9c 100644 --- a/po/et.po +++ b/po/et.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" @@ -198,7 +198,7 @@ msgstr "Kommentaarid" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -214,7 +214,7 @@ msgstr "Ei" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -361,7 +361,7 @@ msgid "Edit or export relational schema" msgstr "Seoseskeem" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -429,19 +429,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Sorteeri" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Kasvav" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -555,8 +555,8 @@ msgstr "Vaata" msgid "Delete the matches for the %s table?" msgstr "Tabeli andmete salvestamine" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -630,7 +630,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -658,20 +658,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +682,15 @@ msgid "Check tables having overhead" msgstr "Kontrolli ülekulusid" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Trükivaade" @@ -750,7 +750,7 @@ msgstr "Andmesõnastik" msgid "Tracked tables" msgstr "Kontrolli tabelit" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -955,7 +955,7 @@ msgstr "" "pikenda." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1212,8 +1212,8 @@ msgstr "Mootor" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1978,13 +1978,13 @@ msgstr "" msgid "Tables" msgstr "Tabelid" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2094,7 +2094,7 @@ msgstr "Vigane serveri indeks: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Vigane hostname serverile %1$s. Palun kontrolli seadeid." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2156,7 +2156,7 @@ msgstr "MySQL ütles: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Seleta SQL-i" @@ -2168,11 +2168,11 @@ msgstr "Jäta SQL-i seletamine vahele" msgid "Without PHP Code" msgstr "ilma PHP koodita" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Loo PHP kood" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Uuenda" @@ -2181,7 +2181,7 @@ msgstr "Uuenda" msgid "Skip Validate SQL" msgstr "Jäta SQL-i kontroll vahele" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Kontrolli SQL-i" @@ -2281,11 +2281,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2332,21 +2332,34 @@ msgstr "Kataloog mille Te üleslaadimiseks sättisite ei ole ligipääsetav" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Sulgemata jutumärk/ülakoma" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2354,13 +2367,13 @@ msgstr "Sulgemata jutumärk/ülakoma" msgid "structure" msgstr "Struktuur" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2368,35 +2381,35 @@ msgstr "" msgid "structure and data" msgstr "Struktuur ja andmed" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Täispikk INSERT" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Laiendatud lisamised" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2484,7 +2497,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2980,10 +2993,10 @@ msgstr "" msgid "Customize default options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3577,7 +3590,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3635,356 +3648,352 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Muuda tabeli sorteeringut" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Päringuaken" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Päringuaken" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Päringuaken" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Nimeta tabel ümber" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Paranda lõimud" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 #, fuzzy msgid "Save directory" msgstr "Andmete kodukataloog" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "Ühendused" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Pole tabeleid" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 #, fuzzy msgid "Designer table" msgstr "Defrgamenteeri tabel" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 #, fuzzy msgid "PHP extension to use" msgstr "PHP versioon" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "Pole andmebaase" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "serveri nimi" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3993,326 +4002,326 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "andmebaasi nimi" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "Serveri ID" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analüüsi tabelit" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Paranda tabelit" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "Serveri valik" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Näitan veeru kommentaare" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defrgamenteeri tabel" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Parameerid" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automaatne taastamine" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Näita avatud tabeleid" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "Näita täispikkasid päringuid" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Rea statistika" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4320,29 +4329,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Skip locked tables" msgstr "Näita avatud tabeleid" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4352,90 +4361,90 @@ msgstr "" msgid "Password" msgstr "Parool" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "Kasutajanimi:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Lisa/Kustuta välja veerud" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy msgid "Default title" msgstr "Nimeta andmebaas ümber" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4443,57 +4452,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 #, fuzzy msgid "Upload directory" msgstr "Andmete kodukataloog" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4501,13 +4510,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4527,61 +4536,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV kasutades LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Ava dokumendi arvutustabel" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Andmebaasi eksportimise seaded" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV MS Exceli jaoks" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Ava dokumendi tekst" @@ -4669,7 +4678,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5119,61 +5128,61 @@ msgstr "" msgid "Browser transformation" msgstr "Browseri transformatsioon" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Kopeeri" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Rida kustutatud" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Tapa" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "päringus" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Näita ridu" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "kokku" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Päring kestis %01.4f sek" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Päringu tulemuste tegevused" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Trükivaade (täispikkade tekstidega)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Näita PDF skeemi" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Suhte loomine (relation)" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Linki ei leitud" diff --git a/po/eu.po b/po/eu.po index 5c3e7ebbe1..916e4ea6f1 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: basque \n" @@ -199,7 +199,7 @@ msgstr "Iruzkinak" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "Ez" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -365,7 +365,7 @@ msgid "Edit or export relational schema" msgstr "Erlazio-eskema" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -433,19 +433,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Ordenatu" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Goranzko" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -559,8 +559,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -634,7 +634,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -663,20 +663,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +687,15 @@ msgid "Check tables having overhead" msgstr "Arazteko hondakinak egiaztatu" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Inprimatzeko ikuspegia" @@ -753,7 +753,7 @@ msgstr "Datu-hiztegia" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -944,7 +944,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1192,8 +1192,8 @@ msgstr "" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1949,13 +1949,13 @@ msgstr "" msgid "Tables" msgstr "Taulak" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2063,7 +2063,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2125,7 +2125,7 @@ msgstr "MySQL-ek zera dio: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "SQL-a azaldu" @@ -2137,11 +2137,11 @@ msgstr "SQL-ren azalpena saltatu" msgid "Without PHP Code" msgstr "PHP Koderik gabe" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP kodea sortu" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "" @@ -2150,7 +2150,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "SQL-ren balidapena saltatu" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "SQL balidatu" @@ -2248,11 +2248,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2299,21 +2299,34 @@ msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Itxi gabeko komatxoak" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2321,13 +2334,13 @@ msgstr "Itxi gabeko komatxoak" msgid "structure" msgstr "Egitura" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2335,35 +2348,35 @@ msgstr "" msgid "structure and data" msgstr "Egitura eta datuak" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "\"Insert\"ak osatu" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "\"insert\" hedatuak" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2452,7 +2465,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2947,10 +2960,10 @@ msgstr "" msgid "Customize default options" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV datuak" @@ -3526,7 +3539,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3583,351 +3596,347 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Taularen \"Order By\" aldatu" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Kontsulta-leihoa" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Kontsulta-leihoa" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Kontsulta-leihoa" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Taula berrizendatu izen honetara: " -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "Konexioak" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Taularik ez" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "Datu-baserik ez" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "Zerbitzariaren hautaketa" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3936,322 +3945,322 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Datu-basea" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "Zerbitzariaren hautaketa" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Taula aztertu" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Taula konpondu" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "Zerbitzariaren hautaketa" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Zutabearen iruzkinak erakusten" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Sententziak" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy msgid "Automatically create versions" msgstr "Zerbitzariaren bertsioa" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy msgid "Show field types" msgstr "Taulak erakutsi" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "Kontsulta osoak erakutsi" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Errenkadaren estatistikak" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4259,28 +4268,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4290,91 +4299,91 @@ msgstr "" msgid "Password" msgstr "Pasahitza" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "Erabiltzaile-izena:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Lehenetsia" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4382,56 +4391,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4439,13 +4448,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4465,61 +4474,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Datu-basea esportatzeko aukerak" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel datuentzako CSV" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4606,7 +4615,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5033,61 +5042,61 @@ msgstr "" msgid "Browser transformation" msgstr "Nabigatzailearen eraldaketa" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Errenkada ezabatua izan da" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Hil" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "kontsultan" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Errenkadak erakusten" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "guztira" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Kontsulta exekutatzeko denbora %01.4f seg" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Inprimatzeko ikuspena (testu osoak)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF eskema erakutsi" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Zerbitzariaren bertsioa" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Esteka aurkitugabea" diff --git a/po/fa.po b/po/fa.po index 43767b305c..c9f90b65a9 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" "Last-Translator: \n" "Language-Team: persian \n" @@ -196,7 +196,7 @@ msgstr "توضيحات" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -212,7 +212,7 @@ msgstr "خير" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -354,7 +354,7 @@ msgid "Edit or export relational schema" msgstr "ویرایش یا صدور نمای رابطه ای" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -420,19 +420,19 @@ msgid "visual builder" msgstr "سازنده ی تصویری" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "ترتيب" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "صعودي" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -541,8 +541,8 @@ msgstr "مشاهده" msgid "Delete the matches for the %s table?" msgstr "داده های همتا در جدول %s حذف شوند؟" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -610,7 +610,7 @@ msgstr "پیگردی فعال می باشد." msgid "Tracking is not active." msgstr "پیگردی فعال نمی باشد." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -640,20 +640,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +664,15 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "نماي چاپ" @@ -730,7 +730,7 @@ msgstr "فرهنگ داده‌ها" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -919,7 +919,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1158,8 +1158,8 @@ msgstr "موتور" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1910,13 +1910,13 @@ msgstr "" msgid "Tables" msgstr "جدولها" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2021,7 +2021,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2083,7 +2083,7 @@ msgstr "پيغام MySQL :" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "شرح دادن SQL" @@ -2096,11 +2096,11 @@ msgstr "شرح دادن SQL" msgid "Without PHP Code" msgstr "بدون كد PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "ساخت كد PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "" @@ -2110,7 +2110,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "معتبرسازي SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "معتبرسازي SQL" @@ -2210,11 +2210,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2260,19 +2260,32 @@ msgstr "پوشه‌اي را كه براي انتقال فايل انتخاب ك msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2280,13 +2293,13 @@ msgstr "" msgid "structure" msgstr "ساختار" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2294,35 +2307,35 @@ msgstr "" msgid "structure and data" msgstr "ساختار و داده‌ها" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "تمام وروديها" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "وروديهاي تمديدشده" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2411,7 +2424,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2900,10 +2913,10 @@ msgstr "" msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "داده‌هاي CSV" @@ -3472,7 +3485,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3528,343 +3541,339 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "تغيير جدول مرتب شده با" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "بازناميدن جدول به" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "No tables" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "No databases" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3873,319 +3882,319 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "پايگاه داده" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "تحليل جدول" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "مرمت جدول" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "نمايش توضيحات ستون" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "شرج" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy msgid "Automatically create versions" msgstr "نسخه سرور" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy msgid "Show field types" msgstr "نمايش جدولها" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "آمار سطرها" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4193,28 +4202,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4224,91 +4233,91 @@ msgstr "" msgid "Password" msgstr "اسم رمز" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "نام كاربر:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "اضافه يا حذف ستونها" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "پيش‌فرض" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4316,56 +4325,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4373,13 +4382,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4399,62 +4408,62 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 #, fuzzy msgid "Database export options" msgstr "آمار پايگاههاي داده" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV براي داده‌هاي MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4541,7 +4550,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4956,61 +4965,61 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "سطر حذف گرديد ." -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "جمع كل" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "نمايش توضيحات ستون" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "نسخه سرور" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "پيوند پيدا نشد" diff --git a/po/fi.po b/po/fi.po index b297f20e81..ede39773d4 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-11-26 21:29+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" @@ -199,7 +199,7 @@ msgstr "Kommentit" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "Ei" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -354,7 +354,7 @@ msgid "Edit or export relational schema" msgstr "Relaatioskeeman muokkaus tai vienti" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -421,19 +421,19 @@ msgid "visual builder" msgstr "visuaalinen luonti" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Järjestys" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Nouseva" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -541,8 +541,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -611,7 +611,7 @@ 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:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -641,20 +641,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +665,15 @@ msgid "Check tables having overhead" msgstr "Valitse taulut, joissa on ylijäämää" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Tulostusversio" @@ -733,7 +733,7 @@ msgstr "Tietosanasto" msgid "Tracked tables" msgstr "Seurattavat taulut" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -931,7 +931,7 @@ msgstr "" "asti ellei PHP:n suoritusaikarajaa nosteta." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1159,8 +1159,8 @@ msgstr "Rivin muokkaus" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1884,13 +1884,13 @@ msgstr "" msgid "Tables" msgstr "Taulut" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1989,7 +1989,7 @@ msgstr "Virheellinen palvelimen indeksi: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Palvelimella %1$s virheellinen nimi. Tarkista asetukset." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2051,7 +2051,7 @@ msgstr "MySQL ilmoittaa: " msgid "Failed to connect to SQL validator!" msgstr "SQL-validaattoriin ei voitu yhdistää" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Selitä SQL-kysely" @@ -2063,11 +2063,11 @@ msgstr "Älä selitä SQL-kyselyä" msgid "Without PHP Code" msgstr "Kätke PHP-koodi" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Näytä PHP-koodi" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Päivitä" @@ -2076,7 +2076,7 @@ msgstr "Päivitä" msgid "Skip Validate SQL" msgstr "Älä tarkista SQL-kyselyä" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Tarkista SQL-lause" @@ -2174,11 +2174,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2224,64 +2224,77 @@ msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää" msgid "There are no files to upload" msgstr "Lähetettäviä tiedostoja ei ole" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Close" msgid "Closed" msgstr "Sulje" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "rakenne" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "tiedot" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "rakenne ja tiedot" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Nopea asetusten määritys - näytä asetuksia mahdollisimman vähän" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Mukautettu - näytä kaikki mahdolliset asetukset" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "Mukautettu - kuten yllä, mutta ilman pika-/mukautettu-valintaa" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "Kokonaiset lisäyslauseet" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "Laajennetut lisäyslauseet" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "molemmat yltä" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "ei kumpikaan yltä" @@ -2366,7 +2379,7 @@ msgid "Set value: %s" msgstr "Aseta arvo: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Palauta oletusarvo" @@ -2886,10 +2899,10 @@ msgstr "Mukauta selaustilaa" msgid "Customize default options" msgstr "Mukauta viennin oletusasetuksia" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3511,7 +3524,7 @@ msgid "Maximum displayed SQL length" msgstr "Näytettävän SQL-kyselyn enimmäispituus" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3574,42 +3587,36 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -#, fuzzy -#| msgid "Show logo in left frame" -msgid "Show table row links on left side" -msgstr "Näytä vasemmassa kehyksessä logo" - -#: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" +msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Lajittele taulu" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Käytä vain kuvakkeita, vain tekstiä tai molempia" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Navigointipalkki, jossa kuvakkeet" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "käytä Gzip-ulostulon puskurointia nopeuttaaksesi HTTP-siirtoja" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip-ulostulon puskurointi" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -3621,46 +3628,46 @@ msgstr "" "[kbd]SMART[/kbd] - eli laskeva järjestys kentille, joiden tyyppi on TIME, " "DATE, DATETIME tai TIMESTAMP; muulloin nouseva järjestys" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Oletuslajittelujärjestys" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Käytä MySQL-tietokantojen jatkuvia yhteyksiä" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Jatkuvat yhteydet" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Kuvakkeellisen taulun toiminnot" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 #, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "Estä BLOB- ja BINARY-kenttien muokkaus" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Suojaa binäärikentät" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3674,129 +3681,129 @@ msgstr "" "tarvitaan). Jos poistettu käytöstä, tämä käyttää JavaScript-rutiineja " "kyselyhistorian näyttämisessä (katoaa, kun ikkuna suljetaan)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Pysyvä kyselyhistoria" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Kuinka monta kyselyä historiassa pidetään" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Kyselyhistorian pituus" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Uutta kyselyikkunaa avattaessa näytettävä välilehti" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Oletusarvoinen kyselyikkunavälilehti" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Kyselyikkuna" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Kyselyikkuna" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Kyselyikkuna" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Valitse, mitä funktioita käytetään merkistömuunnoksessa" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Merkistön uudelleenkoodaus" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Nimeä taulu uudelleen" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Korjaa säikeet" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Hakemisto, jonne viennit voi tallentaa palvelimella" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Tallennushakemisto" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Jätä tyhjäksi, jos tätä ei käytetä" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Palvelintodennuksen järjestys" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Käytä oletusarvoja jättämällä tyhjäksi" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Palvelintodennuksen säännöt" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Salli kirjautumiset ilman salasanaa" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Salli pääkäyttäjän kirjautuminen" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3805,19 +3812,19 @@ msgstr "" "[a@http://swekey.com]SweKey-laitteistotodennuksen[/a] asetustiedoston polku " "(ei dokumenttijuuressa; suositeltu: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "SweKey-asetustiedosto" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Käytettävä todennustyyppi" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Todennustyyppi" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3825,11 +3832,11 @@ msgstr "" "Jätä tyhjäksi, jos et halua [a@http://wiki.phpmyadmin.net/pma/bookmark]" "kirjanmerkki[/a]tukea; oletusarvo: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Kirjanmerkkitaulu" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3837,31 +3844,31 @@ msgstr "" "Jätä tyhjäksi, jos et halua sarakkeiden kommentteja ja mime-tyyppejä; " "oletusarvo: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Saraketietojen taulu" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Pakkaa MySQL-palvelimen yhteys" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Pakkaa yhteys" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Kuinka palvelimeen yhdistetään; käytä tcp:tä, jos olet epävarma" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Yhteystyyppi" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Hallintakäyttäjän salasana" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3870,19 +3877,19 @@ msgstr "" "lisätietoja saatavilla [a@http://wiki.phpmyadmin.net/pma/controluser]wikissä" "[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Hallintakäyttäjä" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Laske taulujen määrä, kun tietokantaluettelo näytetään" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Laske taulujen määrä" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3890,11 +3897,11 @@ msgstr "" "Jätä tyhjäksi, jos et halua Suunnittelija-taulua; oletusarvo: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Suunnittelija-taulu" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3903,28 +3910,28 @@ msgstr "" "virheenjäljittimestä[/a] ja [a@http://bugs.mysql.com/19588]MySQL:n " "ohjelmavirheistä[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Poista INFORMATION_SCHEMA käytöstä" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Käytettävä PHP-laajennus; mysqli-laajennusta tulisi käyttää, jos sitä tuetaan" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Käytettävä PHP-laajennus" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Piilota tietokannat, jotka vastaavat säännöllistä lauseketta (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Piilota tietokannat" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3932,31 +3939,31 @@ msgstr "" "Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "SQL-kyselyhistorian taulu" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "MySQL-palvelimen verkkonimi" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Palvelimen verkkonimi" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "Uloskirjautumisen verkko-osoite" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Yritä yhdistää ilman salasanaa" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Yhdistä ilman salasanaa" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3972,30 +3979,30 @@ msgstr "" "koodinvaihtomerkin, mikäli haluat käyttää niiden todellista ilmentymää; " "käytä esimerkiksi 'oma\\_db' eikä 'oma_db'." -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Näytä vain luetteloidut tietokannat" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Jätä tyhjäksi, jot et käytä config-todennusta" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Config-todennuksen salasana" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF-kaavio: sivujen taulu" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4005,22 +4012,22 @@ msgstr "" "Katso täydet tiedot aiheesta [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/" "a]. Jätä tyhjäksi, jos et halua tukea. Oletusarvo: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "tietokannan nimi" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Portti, jota MySQL-palvelin kuuntelee; käytä oletusarvoa jättämällä tyhjäksi" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Palvelinportti" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4032,13 +4039,13 @@ msgstr "" "Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Anna käyttäjänimi" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4046,19 +4053,19 @@ msgstr "" "Jätä tyhjäksi, jos et halua [a@http://wiki.phpmyadmin.net/pma/relation]" "relaatiolinkki[/a]tukea; oletusarvo: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Relaatiotaulu" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "Mahdollisten tietokantojen noutoon käytettävä SQL-käsky" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES -käsky" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4066,44 +4073,44 @@ msgstr "" "Katso [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]todennustyyppien[/" "a] esimerkit" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Signon-istunnon nimi" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "Signon-kirjautumisen verkko-osoite" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Palvelinpistoke, jota MySQL-palvelin kuuntelee; käytä oletusarvoa jättämällä " "tyhjäksi" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Palvelinpistoke" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "Yhdistä MySQL-palvelimeen käyttäen SSL-yhteyttä" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Käytä SSL-yhteyttä" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea; oletusarvo: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF-kaavio: taulun koordinaatit" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -4115,13 +4122,13 @@ msgstr "" "Taulu, joka kuvaa näyttökentät; jätä tyhjäksi, jos et halua tukea; " "oletusarvo: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Näyttökenttien taulu" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4133,53 +4140,53 @@ msgstr "" "Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Eheytä taulu" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Tieto" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4191,25 +4198,25 @@ msgstr "" "Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL-kyselyhistorian taulu" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automaattinen palautuminen" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4221,15 +4228,15 @@ msgstr "" "Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "Config-todennuksen käyttäjä" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4237,11 +4244,11 @@ msgstr "" "Poista käytöstä, mikäli tiedät pma_*-taulujesi olevan ajan tasalla. Tämä " "estää yhteensopivuustarkistukset ja lisää siten suorituskykyä." -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Yksityiskohtainen tarkistus" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4249,22 +4256,22 @@ msgstr "" "Käyttäjäystävällinen kuvaus tästä palvelimesta. Jätä tyhjäksi, jos haluat, " "että tässä lukee sen sijaan palvelimen verkkonimi." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Tämän palvelimen yksityiskohtainen nimi" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Pitääkö käyttäjälle näyttää \"Näytä kaikki (tietueet)\" -painike" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Salli kaikkien rivien näyttäminen" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4274,35 +4281,35 @@ msgstr "" "todennusta käytettäessä, koska salasana lukee suoraan asetustiedostossa; " "tämä ei estä saman komennon suorittamista suoraan." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Näytä salasananvaihtolomake" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Näytä tietokannanluontilomake" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Näytä avoimet taulut" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Näytä funktiokentät muokkaus- ja liäsystilassa" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Näytä funktiokentät" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4310,31 +4317,31 @@ msgstr "" "Näyät linkki [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]-" "käskyn tulosteeseen" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Näytä phpinfo()-linkki" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Näytä MySQL-palvelimen tarkat tiedot" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Määrittele, pitääkö phpMyAdminin luomat SQL-kyselyt näyttää" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Näytä SQL-kyselyt" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "Salli tietokannan ja taulun tilastojen (eli tilankäytön) näyttäminen" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Näytä tilastot" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4342,11 +4349,11 @@ msgstr "" "Jos työkaluvihjeet ovat päällä ja tietokannan kommentti on asetettu, tämä " "näyttää kommentin ja oikean nimen" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Näytä tietokannan kommentti, ei nimi" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4358,30 +4365,30 @@ msgstr "" "['LeftFrameTableSeparator']-asetuksen mukaisesti, jolloin vain kansiota " "kutsutaan aliaksena, itse taulun nimi pysyy muuttumattomana" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Näytä taulun kommentti, ei nimi" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Näytä taulun kommentit työkaluvihjeissä" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Merkitse käytetyt taulut ja mahdollista lukittuja tauluja sisältävien " "tietokantojen näyttäminen" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Ohita lukitut taulut" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4391,28 +4398,28 @@ msgstr "" msgid "Password" msgstr "Salasana" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Käyttäjänimi" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4420,65 +4427,65 @@ msgstr "" "Ehdota tietokannan nimeä "Luo tietokanta" -lomakkeessa " "(mahdollisuuksien mukaan) tai pidä tekstikenttä tyhjänä" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Ehdota uuden tietokannan nimeä" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR-tekstikentän sarakkeet" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR-tekstikentän rivit" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Oletusarvoinen tauluvälilehti" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4490,39 +4497,39 @@ msgstr "" "HTTP_X_FORWARDED_FOR (X-Forwarded-For) -otsakkeeseen, joka tulee " "välipalvelimelta 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" "Luotettujen välipalvelimien luettelo IP-osoitteden sallimista ja estämistä " "varten" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "Palvelimen hakemisto, jonne tuotavia tiedostoja voi lähettää" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Lähetyshakemisto" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Antaa hakea koko tietokannasta" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Käytä tietokantahakua" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4531,19 +4538,19 @@ msgstr "" "Näytä monilausekyselyjen kaikki vaikuttuneet rivit. Katso libraries/import." "lib.php-tiedoston oletusarvoista, kuinka monta kyselyä lauseessa voi olla." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Yksityiskohtaiset peräkkäiset lauseet" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Tarkista uusin versio" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4551,7 +4558,7 @@ msgstr "" msgid "Version check" msgstr "Version tarkistus" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4559,7 +4566,7 @@ msgstr "" "Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/ZIP_" "(file_format)]ZIP[/a]-pakkausta" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4587,63 +4594,63 @@ msgstr "Palvelintodennuksen järjestys" msgid "Signon authentication" msgstr "Palvelintodennuksen järjestys" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV käyttäen LOAD DATA -kyselyä" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS -työkirja" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX -työkirja" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Muu väri" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Tietokannan tulostusvalinnat" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excelin CSV-muoto" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4731,7 +4738,7 @@ msgstr "Rutiinit" msgid "Return type" msgstr "Paluutyyppi" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5197,62 +5204,62 @@ msgstr "Näytä BLOB-sisältö" msgid "Browser transformation" msgstr "Selaimen muunnos (transformation)" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Rivi on poistettu" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Lopeta" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "lauseessa" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Näkyvillä rivit " -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "yhteensä" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "kysely kesti %01.4f sek." -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Kyselytulosten toimenpiteet" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Tulostusversio (kokonaisin tekstein)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Näytä PDF-kaavio" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy #| msgid "Create User" msgid "Create view" msgstr "Luo käyttäjä" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Linkkiä ei löydy" @@ -10702,6 +10709,11 @@ msgstr "VIEW-arvon nimi" msgid "Rename view to" msgstr "Nimeä taulu uudelleen" +#, fuzzy +#~| msgid "Show logo in left frame" +#~ msgid "Show table row links on left side" +#~ msgstr "Näytä vasemmassa kehyksessä logo" + #~ msgid "Delete the matches for the " #~ msgstr "Poista taulusta %s löytyneet tulokset?" diff --git a/po/fr.po b/po/fr.po index 54a9d612f4..176ffb7258 100644 --- a/po/fr.po +++ b/po/fr.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-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-05-31 17:18+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" @@ -200,7 +200,7 @@ msgstr "Commentaires" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -216,7 +216,7 @@ msgstr "Non" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -355,7 +355,7 @@ msgid "Edit or export relational schema" msgstr "Éditer ou exporter un schéma relationnel" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -422,19 +422,19 @@ msgid "visual builder" msgstr "mode visuel" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Tri" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Croissant" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -542,8 +542,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -612,7 +612,7 @@ 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:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -642,20 +642,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +666,15 @@ msgid "Check tables having overhead" msgstr "Cocher tables avec pertes" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Version imprimable" @@ -728,7 +728,7 @@ msgstr "Dictionnaire de données" msgid "Tracked tables" msgstr "Tables faisant l'objet d'un suivi" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -932,7 +932,7 @@ msgstr "" "limite de temps de PHP ne soit augmentée." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1151,8 +1151,8 @@ msgstr "Éditer en place" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1872,13 +1872,13 @@ msgstr "partagé" msgid "Tables" msgstr "Tables" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1983,7 +1983,7 @@ msgstr "" "Nom d'hôte invalide pour le serveur %1$s. Veuillez vérifier votre " "configuration." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2046,7 +2046,7 @@ msgstr "MySQL a répondu: " msgid "Failed to connect to SQL validator!" msgstr "Connexion au validateur SQL impossible" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Expliquer SQL" @@ -2058,11 +2058,11 @@ msgstr "Ne pas expliquer SQL" msgid "Without PHP Code" msgstr "Sans source PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Créer source PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Actualiser" @@ -2071,7 +2071,7 @@ msgstr "Actualiser" msgid "Skip Validate SQL" msgstr "Ne pas valider SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Valider SQL" @@ -2169,11 +2169,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2220,62 +2220,77 @@ msgstr "Le répertoire de transfert est inaccessible" msgid "There are no files to upload" msgstr "Aucun fichier n'est disponible pour le transfert" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Les deux" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "Hauteur" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Ouvert" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Fermé" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "structure" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "données" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "structure et données" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Rapide - n'afficher qu'un minimum d'options à configurer" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Personnalisée - afficher toutes les options possibles" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "Personnalisée - comme ci-haut mais sans les choix rapide/personnalisée" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "Insertions complètes" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "Insertions étendues" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "tous les choix ci-haut" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "aucun des choix ci-haut" @@ -2361,7 +2376,7 @@ msgid "Set value: %s" msgstr "Assigner la valeur: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Ramener la valeur par défaut" @@ -2849,10 +2864,10 @@ msgstr "Personnaliser le mode affichage" msgid "Customize default options" msgstr "Personnaliser les options par défaut" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3448,7 +3463,7 @@ msgid "Maximum displayed SQL length" msgstr "Taille maximum des requêtes SQL affichées" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Les utilisateurs ne peuvent choisir une plus grande valeur" @@ -3514,39 +3529,35 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "Il s'agit des liens Modifier, Éditer en place, Copier et Effacer" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "Montrer les liens des lignes de données du côté gauche" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "Montrer les liens des lignes de données du côté droit" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" "Utiliser l'ordre naturel pour trier les noms de tables et de bases de données" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Ordre naturel" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Afficher seulement des icônes, seulement du texte ou les deux" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Apparence de la barre de navigation" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "sert à augmenter la vitesse des transferts HTTP" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Tampon de sortie GZip" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3554,19 +3565,19 @@ msgstr "" "[kbd]SMART[/kbd] signifie un ordre décroissant pour les colonnes TIME, DATE, " "DATETIME et TIMESTAMP, et croissant pour les autres" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Ordre de tri par défaut" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "...au serveur MySQL" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Connexions persistentes" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3575,23 +3586,23 @@ msgstr "" "Désactiver l'avertissement affiché sur la page Structure de bases de données " "si l'une des tables du stockage de configurations phpMyAdmin est manquante" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Tables manquantes pour le stockage de configurations phpMyAdmin" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Icônes pour les actions sur les tables" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Empêche l'édition des colonnes BLOB et BINARY" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Protéger les colonnes avec contenu binaire" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3601,121 +3612,121 @@ msgstr "" "configurations phpMyAdmin). Si désactivé, utilise Javascript pour afficher " "un historique temporaire (sera perdu à la fermeture de la fenêtre)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Historique permanent des requêtes" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Le nombre de requêtes à conserver dans l'historique" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Taille de l'historique" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "L'onglet affiché à l'ouverture d'une fenêtre de requêtes." -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Onglet par défaut pour fenêtre de requêtes" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Hauteur de la fenêtre de requêtes (en pixels)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Hauteur de la fenêtre de requêtes" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Largeur de la fenêtre de requêtes (en pixels)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Largeur de la fenêtre de requêtes" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Détermine quelles fonctions seront utilisées pour effectuer la conversion " "des caractères" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Moteur de conversion" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Changer le nom de la table pour" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "Répète les en-têtes toutes les X cellules, [kbd]0[/kbd] désactive ceci" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Répéter les en-têtes" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Affiche un bouton d'aide au lieu du message Documentation" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Afficher un bouton d'aide" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" "Répertoire où les exportations peuvent être sauvegardées sur le serveur" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Répertoire de sauvegarde" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Laisser vide si non utilisé" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "Ordre d'autorisation des serveurs" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Laisser vide pour la valeur par défaut" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "Règles d'autorisation des serveurs" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Permettre les connexions sans fournir de mot de passe" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Permettre une connexion à root" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "Domaine de protection à afficher lors d'une authentification HTTP Basic" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "Domaine de protection HTTP" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3725,19 +3736,19 @@ msgstr "" "l'authentification matérielle Swekey[/a] (ne pas placer sous la racine des " "documents; suggestion : /etc/swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "Fichier de configuration SweKey" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Type d'authentification" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Type d'authentification" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3745,11 +3756,11 @@ msgstr "" "Laisser vider pour désactiver le support des [a@http://wiki.phpmyadmin.net/" "pma/bookmark]signets[/a], suggéré : [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Table pour signets" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3757,33 +3768,33 @@ msgstr "" "Laisser vider pour désactiver les commentaires sur les colonnes et les types " "MIME; suggéré : [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Table pour informations sur les colonnes" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Comprime la connexion au serveur MySQL" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Utiliser le mode compression sur la connexion" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Comment se connecter au serveur, utilisez [kbd]tcp[/kbd] si vous êtes dans " "le doute" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Type de connexion" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Mot de passe de l'utilisateur de contrôle" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3791,30 +3802,30 @@ msgstr "" "Un compte MySQL spécial avec des permissions limitées, voir [a@http://wiki." "phpmyadmin.net/pma/controluser] notre wiki[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Utilisateur de contrôle" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Comptage du nombre de tables en montrant la liste des bases de données" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Comptage des tables" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" "Laisser vider pour désactiver, suggéré : [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Table pour la fonctionnalité Concepteur" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3822,27 +3833,27 @@ msgstr "" "Voir [a@http://sf.net/support/tracker.php?aid=1849494]ce bogue phpMyAdmin[/" "a] et [a@http://bugs.mysql.com/19588]ce bogue MySQL[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Empêcher l'accès à INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "Quelle extension PHP utiliser; vous devriez choisir mysqli si possible" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Extension PHP" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Masquer les bases dont le nom correspond à l'expression (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Masquer les bases de données" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3850,31 +3861,31 @@ msgstr "" "Laisser vider pour désactiver l'historique des requêtes SQL, suggéré : [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "Tables pour historique des requêtes SQL" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Le nom du serveur sur lequel MySQL est en exécution." -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Nom du serveur" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "URL pour quitter" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Essayer de se connecter sans mot de passe" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Connexion sans mot de passe" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3889,31 +3900,31 @@ msgstr "" "de liste pour montrer le reste des noms de base de données en ordre " "alphabétique." -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Restreindre la liste des bases de données" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" "Laisser vide si vous n'utilisez pas la méthode d'authentification config" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Mot de passe pour méthode config" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Laisser vider pour désactiver le support des schémas en PDF, suggéré : [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "Table pour décrire les schémas en PDF" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3923,21 +3934,21 @@ msgstr "" "Voir [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Laisser vider pour " "désactiver. Suggéré : [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Nom de base de données" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Port sur lequel MySQL est en écoute, laisser vide pour utiliser la valeur " "par défaut" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Port" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -3949,13 +3960,13 @@ msgstr "" "Laisser vider pour désactiver les préférences utilisateur, valeur suggérée : " "[kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Currently opened table" msgid "Recently used table" msgstr "Table actuellement ouverte" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3963,19 +3974,19 @@ msgstr "" "Laisser vider pour désactiver le support [a@http://wiki.phpmyadmin.net/pma/" "relation]relationnel[/a], suggéré : [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Table relationnelle" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "La commande SQL à utiliser pour acquérir la liste des bases de données" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "Commande SHOW DATABASES" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3983,42 +3994,42 @@ msgstr "" "Voir [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] pour un exemple" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Nom de session pour méthode signon" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "URL pour connexion" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Interface de connexion du serveur MySQL, laisser vide pour utiliser la " "valeur par défaut" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Interface de connexion socket" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "Utiliser SSL pour la connexion au serveur MySQL" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Utiliser SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "Laisser vider pour désactiver, suggéré : [kbd]pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "Table pour coordonnées du schéma en PDF" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4026,11 +4037,11 @@ msgstr "" "Sert à définir les colonnes descriptives, laisser vide pour désactiver; " "suggéré : [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Table pour colonnes descriptives" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4042,13 +4053,13 @@ msgstr "" "Laisser vider pour désactiver les préférences utilisateur, valeur suggérée : " "[kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "Table de stockage des préférences utilisateur" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4056,11 +4067,11 @@ msgstr "" "Définit si un énoncé DROP DATABASE IF EXISTS sera ajouté en première ligne " "du journal lors de la création d'une base de données." -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "Ajouter DROP DATABASE" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4068,11 +4079,11 @@ msgstr "" "Définit si un énoncé DROP TABLE IF EXISTS sera ajouté en première ligne du " "journal lors de la création d'une table." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "Ajouter DROP TABLE" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4080,21 +4091,21 @@ msgstr "" "Définit si un énoncé DROP VIEW IF EXISTS sera ajoutée en première ligne dans " "le journal lors de la création de la vue." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "Ajouter DROP VIEW" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Définit la liste des énoncés que le mécanisme d'auto-création utilise pour " "les nouvelles versions." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "Énoncés à suivre" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4102,11 +4113,11 @@ msgstr "" "Laisser vider pour désactiver le suivi des changements SQL, valeur " "suggérée : [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "Table pour le suivi des changements SQL" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4114,11 +4125,11 @@ msgstr "" "Définit si le mécanisme de suivi crée automatiquement des versions pour les " "tables et les vues." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Création automatique de versions" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -4126,15 +4137,15 @@ msgstr "" "Laisser vider pour désactiver les préférences utilisateur, valeur suggérée : " "[kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "Table de stockage des préférences utilisateur" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "Utilisateur pour méthode config" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4142,11 +4153,11 @@ msgstr "" "Désactiver si vous savez que vos tables pma_* sont à jour. Ceci contourne " "une vérification et améliore la performance" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Vérification détaillée" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4154,19 +4165,19 @@ msgstr "" "Une description conviviale de ce serveur. Laisser vide pour utiliser à la " "place le nom du serveur." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Nom à afficher pour ce serveur" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Devrait-on afficher un bouton «Tout afficher»" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Permettre l'affichage de toutes les lignes" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4176,15 +4187,15 @@ msgstr "" "cependant on peut exécuter un changement de mot de passe manuellement avec " "la commande appropriée" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Afficher le dialogue de changement de mot de passe" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Afficher le formulaire de création de base de données" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -4192,19 +4203,19 @@ msgstr "" "Définit si les champs des types de données MySQL doivent être affichés en " "mode modification/insertion." -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Montrer les champs de type de données" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "En insertion/édition, montrer la colonne contenant les fonctions" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Montrer les fonctions" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4212,46 +4223,46 @@ msgstr "" "Montre un lien vers le résultat de [a@http://php.net/manual/function.phpinfo." "php]phpinfo()[/a]" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Afficher un lien vers phpinfo()" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Afficher les informations détaillées sur le serveur MySQL" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Détermine si les requêtes SQL générées par phpMyAdmin devraient être " "affichées" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Afficher les requêtes SQL" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Affiche les statistiques sur les bases de données et les tables (espace " "utilisé)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Afficher les statistiques" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "Inverse l'affichage du nom et des commentaires" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" "Affiche le commentaire décrivant la base de données, au lieu de son nom" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4261,30 +4272,30 @@ msgstr "" "Si défini à [kbd]nested[/kbd], l'alias du nom de table ne sert qu'à " "subdiviser les tables selon $cfg['LeftFrameTableSeparator']" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Affiche le commentaire de table au lieu de son nom" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Affichage des commentaires de table en infobulle" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Marque les tables utilisées et rend possible l'affichage des bases de " "données comportant des tables verrouillées" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Saute les tables verrouillées" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "Requiert que le validateur SQL soit activé" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4294,7 +4305,7 @@ msgstr "Requiert que le validateur SQL soit activé" msgid "Password" msgstr "Mot de passe" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4302,11 +4313,11 @@ msgstr "" "[strong]Avis:[/strong] l'extension PHP SOAP ou le module PEAR SOAP doit être " "installé" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "Activer le validateur SQL" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4314,12 +4325,12 @@ msgstr "" "Si vous avez un code d'utilisateur, indiquez-le ici ([kbd]anonymous[/kbd] " "par défaut)" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Utilisateur" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4327,20 +4338,20 @@ msgstr "" "...dans le dialogue de création de base, si possible, sinon laisser le champ " "vide" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Suggérer un nom de nouvelle base de données" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" "Un avertissement est affiché sur la page principale si Suhosin est détecté" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Avertissement Suhosin" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4348,11 +4359,11 @@ msgstr "" "Taille des zones de texte (colonnes) en mode édition, cette valeur sera " "augmentée pour les zones SQL (*2) et la fenêtre de requêtes (*1.25)" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "Taille horizontale pour une zone de texte" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4360,32 +4371,32 @@ msgstr "" "Taille des zones de texte (lignes) en mode édition, cette valeur sera " "augmentée pour les zones SQL (*2) et la fenêtre de requêtes (*1.25)" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "Taille verticale pour une zone de texte" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" "Titre de la fenêtre de navigateur quand une base de données est choisie" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "Titre de la fenêtre de navigateur quand rien n'est choisi" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Titre par défaut" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "Titre de la fenêtre du navigateur quand un serveur est choisi" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "Titre de la fenêtre du navigateur quand une table est choisie" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4397,29 +4408,29 @@ msgstr "" "Forwarded-For) provient du serveur 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "Liste des serveurs mandataires de confiance en vue de IP allow/deny" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" "Répertoire sur le serveur, dans lequel vous téléchargez des fichiers en vue " "de les importer" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Répertoire de téléchargement" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Permet la recherche dans la base de données au complet" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Permet une recherche dans toute la base de données" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4427,11 +4438,11 @@ msgstr "" "Si désactivé, les utilisateurs ne peuvent régler aucune des options ci-bas, " "peu importe la case à cocher à droite" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "Active le menu Développeur dans les paramètres" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4440,19 +4451,19 @@ msgstr "" "Montre le nombre de lignes affectées par chaque énoncé. Voir libraries/" "import.lib.php pour le nombre d'énoncés qu'une requête peut comporter." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Détails pour les requêtes multi-énoncés" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Vérifier la présence d'une nouvelle version" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Active la vérification de version sur la page principale" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4460,7 +4471,7 @@ msgstr "Active la vérification de version sur la page principale" msgid "Version check" msgstr "Vérification de version" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4468,7 +4479,7 @@ msgstr "" "Active la compression [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/" "a] pour les opérations d'importation et d'exportation" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4488,61 +4499,61 @@ msgstr "Mode d'authentification « HTTP »" msgid "Signon authentication" msgstr "Mode d'authentification « signon »" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV via LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Workbook" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "Rapide" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "Personnalisé" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Options d'exportation des bases de données" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV pour MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Texte Open Document" @@ -4630,7 +4641,7 @@ msgstr "Procédures stockées" msgid "Return type" msgstr "Type retourné" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5030,58 +5041,58 @@ msgstr "Montrer le contenu BLOB" msgid "Browser transformation" msgstr "Transformation" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Copier" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "La ligne a été effacée" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Supprimer" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "dans la requête" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Affichage des lignes" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Traitement en %01.4f sec" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Opérations sur les résultats de la requête" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Version imprimable (avec textes complets)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "Afficher le graphique" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "Créer une vue" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Lien absent" @@ -10299,6 +10310,12 @@ msgstr "Nom de la vue" msgid "Rename view to" msgstr "Changer le nom de la vue pour" +#~ msgid "Show table row links on left side" +#~ msgstr "Montrer les liens des lignes de données du côté gauche" + +#~ msgid "Show table row links on right side" +#~ msgstr "Montrer les liens des lignes de données du côté droit" + #~ msgid "Background color" #~ msgstr "Couleur d'arrière-plan" diff --git a/po/gl.po b/po/gl.po index b6e7704700..aa8af1b79c 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-07-21 14:50+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: galician \n" @@ -202,7 +202,7 @@ msgstr "Comentarios" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -218,7 +218,7 @@ msgstr "Non" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -366,7 +366,7 @@ msgid "Edit or export relational schema" msgstr "Esquema relacional" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -434,19 +434,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Ordenar" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Ascendente" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -560,8 +560,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -635,7 +635,7 @@ 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:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -665,20 +665,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +689,15 @@ msgid "Check tables having overhead" msgstr "Exceso na comprobación" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Visualización previa da impresión" @@ -757,7 +757,7 @@ msgstr "Dicionario de datos" msgid "Tracked tables" msgstr "Táboas seguidas" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -955,7 +955,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:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1220,8 +1220,8 @@ msgstr "Motores" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -2009,13 +2009,13 @@ msgstr "" msgid "Tables" msgstr "Táboas" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2130,7 +2130,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "O nome de servidor non é válido para o servidor %1$s. Revise a configuración." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2194,7 +2194,7 @@ msgstr "Mensaxes do MySQL: " msgid "Failed to connect to SQL validator!" msgstr "Non se puido conectar co servidor de MySQL" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Explicar SQL" @@ -2206,11 +2206,11 @@ msgstr "Saltar a explicacion de SQL" msgid "Without PHP Code" msgstr "sen código PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Refrescar" @@ -2219,7 +2219,7 @@ msgstr "Refrescar" msgid "Skip Validate SQL" msgstr "Omitir a validacion de" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Validar o SQL" @@ -2319,11 +2319,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2370,34 +2370,47 @@ msgstr "Non se pode acceder ao directorio que designou para os envíos" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Close" msgid "Closed" msgstr "Fechar" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "estrutura" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2405,35 +2418,35 @@ msgstr "" msgid "structure and data" msgstr "Estrutura e datos" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Insercións completas" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Insercións estendidas" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2523,7 +2536,7 @@ msgid "Set value: %s" msgstr "Poñer como valor: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Volver ao valor por omisión" @@ -3055,10 +3068,10 @@ msgstr "Personalizar o modo de navegación" msgid "Customize default options" msgstr "Personalizar as opcións de exportación por omisión" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3683,7 +3696,7 @@ msgid "Maximum displayed SQL length" msgstr "Lonxitude máxima de SQL que se mostra" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3746,44 +3759,38 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -#, fuzzy -#| msgid "Show logo in left frame" -msgid "Show table row links on left side" -msgstr "Mostrar o logotipo na moldura esquerda" - -#: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" +msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Ordenar a táboa por" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Empregar só iconas, só texto ou ambos os dous" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Barra de navegación por iconas" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "Empregar un búfer para a saída de GZip para atinxir unha maior velocidade " "nas transferencias HTTP" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Búfer para a saída de GZip" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -3795,46 +3802,46 @@ msgstr "" "[kbd]INTELIXENTE[/kbd] - isto é, orde descendente para os campos do tipo " "TIME, DATE, DATETIME e TIMESTAMP e ascendente para os demais" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Ordenación por omisión" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Empregar conexións persistentes coas bases de datos MySQL" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Conexións persistentes" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Operacións de tábocas con iconas" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 #, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "Impedir que se poidan editar os ficheiros BLOB e BINARY" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Protexer os campos binarios" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3848,131 +3855,131 @@ msgstr "" "Se estiver desactivado, utiliza rutinas JS para mostrar o historial de " "procuras (que se perde cando se fecha a xanela)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Historial de procuras permanente" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Cantas procuras se gardan no historial" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Lonxitude do historial de procuras" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "O separador que aparece cando se entra nunha xanela de procuras" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Separador por omisión das xanelas de procuras" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Xanela de procuras" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Xanela de procuras" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Xanela de procuras" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Seleccione as funcións que quere empregar para a conversión dos conxuntos de " "caracteres" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Motor de recodificación" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Mudar o nome da táboa para" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Reparar os fíos" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Directorio no que se poden gravar as exportacións no servidor" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Directorio de gardado" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Déixeo en branco se non o vai empregar" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Orde de autenticación do servidor" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Déixeo en branco para o predefinido" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Regras de autenticación do servidor" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Permitir rexistrarse sen contrasinal" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Permitir o rexistro de root" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3982,19 +3989,19 @@ msgstr "" "de hardware SweKey[/a] (non se localiza na raíz dos documentos; suxírese: /" "etc/swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "Ficheiro de configuración SweKey" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Método de autenticación que se quere empregar" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Tipo de autenticación" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4002,11 +4009,11 @@ msgstr "" "Déixeo en branco se non quere a funcionalidade de [a@http://wiki.phpmyadmin." "net/pma/bookmark]marcadores[/a]; por omisión: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Táboa de marcadores" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4014,31 +4021,31 @@ msgstr "" "Déixeo en branco se non quere comentarios/tipos mime das columnas; por " "omisión: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Táboa de información das columnas" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Comprimir a conexión ao servidor de MySQL" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Comprimir a conexión" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Como ligar co servidor; déixeo como tc se non está segura/a" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Tipo de conexión" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Contrasinal do usuario de control" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4047,19 +4054,19 @@ msgstr "" "información dispoñíbel no [a@http://wiki.phpmyadmin.net/pma/controluser]wiki" "[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Usuario de control" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Contar as táboas cando se mostre a listaxe de bases de datos" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Contar as táboas" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4067,11 +4074,11 @@ msgstr "" "Déixeo en branco se non quere empregar Designer; por omisión: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Táboa de Designer" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -4080,28 +4087,28 @@ msgstr "" "Seguidor de erros dePMA[/a] e en [a@http://bugs.mysql.com/19588]Erros do " "MySQL[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Desactivar o uso de INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "O engadido de PHP que quere empregar; debería empregar mysqli se se admite" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Engadido PHP que empregar" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Acochar as bases de datos que coincidan cunha expresión regular (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Acochar as bases de datos" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4109,31 +4116,31 @@ msgstr "" "Déixeo en branco se non quere un histórico das procuras SQL; por omisión: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "Táboa do historial de procuras SQL query" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Nome da máquina na que se executa o servidor de MySQL" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Nome do servidor" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "URL de desconexión" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Tentar conectarse sen contrasinal" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Conectarse sen contrasinal" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -4149,30 +4156,30 @@ msgstr "" "empregar os caracteres en si, isto é, empregue 'aminha\\_bd' no canto de " "'amiña_bd'" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Mostrar só as bases de datos listadas" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Déixeo en branco se non vai empregar config auth" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Contrasinal para config auth" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma_pdf_pages[/" "kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF schema: táboa de páxinas" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4183,23 +4190,23 @@ msgstr "" "completa. Déixeo en branco se non lle interesan. Por omisión: [kbd]phpmyadmin" "[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "nome da base de datos" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Porto polo que está a escoitar o servidor de MySQL server; déixeo en branco " "para deixar o predefinido" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Porto do servidor" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4211,13 +4218,13 @@ msgstr "" "Déixeo en branco se non quere un histórico das procuras SQL; por omisión: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Lembrar o nome de usuario" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4225,19 +4232,19 @@ msgstr "" "Déixeo en branco se non quere [a@http://wiki.phpmyadmin.net/pma/relation]" "ligazóns de relación[/a]; por omisión: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Táboa de relacións" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "Comando SQL para obter as bases de datos dispoñíbeis" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "Mostrar o orde SHOW DATABASES" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4245,45 +4252,45 @@ msgstr "" "Vexa os [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipos de " "autenticación[/a] se quere un exemplo" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Nome de sesión de rexistro de entrada" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "URL de rexistro de entrada" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Socket polo que está a escoitar o servidor de MySQL; déixeo en branco para " "deixar o predefinido" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Socket do servidor" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 #, fuzzy msgid "Enable SSL for connection to MySQL server" msgstr "Comprimir a conexión ao servidor de MySQL" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Empregar SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma_table_coords" "[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF schema: coordenadas de táboa" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -4295,13 +4302,13 @@ msgstr "" "Táboa para describir os campos a exhibir; déixeo en branco se non a quere; " "por omisión: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Táboa de campos a exhibir" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4313,53 +4320,53 @@ msgstr "" "Déixeo en branco se non quere un histórico das procuras SQL; por omisión: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Táboa de desfragmentación" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Informacións" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4371,25 +4378,25 @@ msgstr "" "Déixeo en branco se non quere un histórico das procuras SQL; por omisión: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "Táboa do historial de procuras SQL query" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Modo de recuperación automática" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4401,15 +4408,15 @@ msgstr "" "Déixeo en branco se non quere un histórico das procuras SQL; por omisión: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "Usuario para config auth" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4417,11 +4424,11 @@ msgstr "" "Desactíveo se sabe que as táboas pma_* tables están actualizadas. Isto evita " "as comprobacións de compatibilidade e, polo tanto, mellora o desempeño" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Comprobación estensa" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4429,11 +4436,11 @@ msgstr "" "Unha descrición lexíbel deste servidor. Déixea en branco para que no seu " "canto apareza o nome da máquina." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Nome longo deste servidor" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" @@ -4442,11 +4449,11 @@ msgstr "" "Se se lle debería mostrar un botón "mostrar todos (rexistros)" ao " "usuario" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Permitir que se mostren todas as fileiras" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4457,35 +4464,35 @@ msgstr "" "configuración; isto non limita a capacidade de executar a mesmo orde " "directamente" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Mostrar o formulario para mudar de contrasinal" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Mostrar o formulario para crear bases de datos" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Mostrar as táboas abertas" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Mostrar os campos de función no modo editar/inserir" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Mostrar os campos de función" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4493,33 +4500,33 @@ msgstr "" "Mostra unha ligazón á saída de [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Mostrar a ligazón a phpinfo()" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Mostrar información detallada do servidor de MySQL" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Define se se deben mostrar as procuras SQL xeradas polo phpMyAdmin" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Mostrar as procuras SQL" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Permitir que se mostren as estatísticas das bases de datos e das táboas (p." "ex. o uso do espazo)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Mostrar as estatísticas" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4527,11 +4534,11 @@ msgstr "" "Se as mensaxes estiveren activadas e existir un comentario da base de datos, " "isto substitúe o comentario polo nome real" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Mostrar o comentario da base de datos no canto do seu nome" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4543,30 +4550,30 @@ msgstr "" "['LeftFrameTableSeparator'], polo que só o cartafol se chama como o alcume; " "o nome mesmo da táboa fica sen cambiar" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Mostrar o comentario da táboa no canto do seu nome" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Mostrar os comentarios das táboas nas mensaxes" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Marcar as táboas empregadas e permitir que se mostren as bases de datos con " "táboas bloqueadas" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Ignorar as táboas bloqueadas" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4576,28 +4583,28 @@ msgstr "" msgid "Password" msgstr "Contrasinal" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Nome de usuario" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4605,65 +4612,65 @@ msgstr "" "Suxerir un nome para as bases de datos no formulario "Crear base de " "datos" (de ser posíbel) ou manter o campo de texto baleiro" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Suxerir un nome novo para as bases de datos" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "Columnas de área de texto de CHAR" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "Fileiras de área de texto de CHAR" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Separador por omisión das táboas" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4675,38 +4682,38 @@ msgstr "" "HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente do proxy 1.2.3.4:[br][kbd]" "1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "Lista de proxies de confianza para permiso/denegación de IP" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" "Directorio do servidor ao que se poden enviar os ficheiros que importar" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Directorio de envíos" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Permitir procurar na base de datos completa" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Empregar procuras na base de datos" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4716,19 +4723,19 @@ msgstr "" "múltiplas. Vexa libraries/import.lib.php para o que está predeterminado para " "cantas procuras pode conter unha afirmación." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Afirmacións múltiplas estensas" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Comprobar cal é a última versión" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4736,7 +4743,7 @@ msgstr "" msgid "Version check" msgstr "Comprobación da versión" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4744,7 +4751,7 @@ msgstr "" "Activar a compresión [a@http://gl.wikipedia.org/wiki/ZIP_(formato de " "ficheiro)]ZIP[/a] nas operacións de importación e exportación" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4772,63 +4779,63 @@ msgstr "Orde de autenticación do servidor" msgid "Signon authentication" msgstr "Orde de autenticación do servidor" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV utilizando LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Libro de traballo XLS do Excel 97-2003" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Libro de traballo XLSX do Excel 2007" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Folla de cálculo Open Document" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Cor personalizada" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Opcións de exportación da base de datos" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV (para datos de MS Excel)" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Texto Open Document" @@ -4922,7 +4929,7 @@ msgstr "Rutinas" msgid "Return type" msgstr "Tipo de retorno" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5386,62 +5393,62 @@ msgstr "Mostrar os contidos BLOB" msgid "Browser transformation" msgstr "Transformación do navegador" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Eliminouse o rexistro" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Matar (kill)" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "a procurar" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "A mostrar rexistros " -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "a pesquisa levou %01.4f segundos" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Operacións de resultados da procura" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Vista previa da impresión (con textos completos)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Mostrar o esquema PDF" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Crear unha versión" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Non se atopou o vínculo" @@ -10903,6 +10910,11 @@ msgstr "Nome da VISTA" msgid "Rename view to" msgstr "Mudar o nome da táboa para" +#, fuzzy +#~| msgid "Show logo in left frame" +#~ msgid "Show table row links on left side" +#~ msgstr "Mostrar o logotipo na moldura esquerda" + #, fuzzy #~| msgid "Dumping data for table" #~ msgid "Delete the matches for the " diff --git a/po/he.po b/po/he.po index ded8b18710..9207779b88 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-03-02 20:17+0200\n" "Last-Translator: \n" "Language-Team: hebrew \n" @@ -196,7 +196,7 @@ msgstr "הערות" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -212,7 +212,7 @@ msgstr "לא" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -358,7 +358,7 @@ msgid "Edit or export relational schema" msgstr "הצגת תרשים PDF" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -426,19 +426,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "סידור" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "עולה" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -551,8 +551,8 @@ msgstr "עיון" msgid "Delete the matches for the %s table?" msgstr "הוצאת מידע עבור טבלה" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -626,7 +626,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -655,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +679,15 @@ msgid "Check tables having overhead" msgstr "בדיקת טבלאות עבור תקורה" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "תצוגת הדפסה" @@ -745,7 +745,7 @@ msgstr "מילון מידע" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -934,7 +934,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1186,8 +1186,8 @@ msgstr "מנועים" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1946,13 +1946,13 @@ msgstr "" msgid "Tables" msgstr "טבלאות" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2055,7 +2055,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2117,7 +2117,7 @@ msgstr "MySQL אמר: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "הסברת SQL" @@ -2129,11 +2129,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "ללא קוד PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "ייצור קוד PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "רענון" @@ -2143,7 +2143,7 @@ msgstr "רענון" msgid "Skip Validate SQL" msgstr "בדיקת תקינות SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "בדיקת תקינות SQL" @@ -2243,11 +2243,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2293,19 +2293,32 @@ msgstr "" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2313,13 +2326,13 @@ msgstr "" msgid "structure" msgstr "מבנה" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2327,35 +2340,35 @@ msgstr "" msgid "structure and data" msgstr "מבנה ומידע" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "השלם הכנסות" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "הכנסות מורחבות" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2444,7 +2457,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2936,10 +2949,10 @@ msgstr "" msgid "Customize default options" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3518,7 +3531,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3575,353 +3588,349 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "שינוי סדר הטבלה לפי" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "חלון שאילתה" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "חלון שאילתה" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "חלון שאילתה" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "שינוי שם טבלה אל" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 #, fuzzy msgid "Save directory" msgstr "תיקיית בית של נתונים" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "חיבורים" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "אין טבלאות" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 #, fuzzy msgid "Designer table" msgstr "איחוי טבלה" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "אין מאגרי נתונים" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "בחירת שרת" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3930,324 +3939,324 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "מאגר נתונים" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "קוד שרת (ID)" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "ניתוח טבלה" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "תיקון טבלה" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "בחירת שרת" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "מציג הערות עמודה" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "איחוי טבלה" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "משפטים" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy msgid "Automatically create versions" msgstr "גרסת שרת" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy msgid "Show field types" msgstr "ראיית טבלאות" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "הראה שאילתות שלמות" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "סטטיסטיקת שורה" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4255,28 +4264,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4286,91 +4295,91 @@ msgstr "" msgid "Password" msgstr "סיסמא" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "שם משתמש:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "הוספת/מחיקת עמודות שדה" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "ברירת מחדל" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4378,56 +4387,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4435,13 +4444,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4461,61 +4470,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "אפשרויות ייצוא מאגר נתונים" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV עבור MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4602,7 +4611,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5030,61 +5039,61 @@ msgstr "" msgid "Browser transformation" msgstr "שינויי צורה זמינים" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "העתקה" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "השורה נמחקה" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "בשאילתה" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "מראה שורות" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "סה\"כ" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "שאילתה לקחה %01.4f שניות" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "תצוגת הדפסה (עם טקסטים מלאים)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "מציג הערות עמודה" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "גרסת שרת" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "קישור לא נמצא" diff --git a/po/hi.po b/po/hi.po index 5109c17b5f..4ab10e7be9 100644 --- a/po/hi.po +++ b/po/hi.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-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-05-06 09:13+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" @@ -198,7 +198,7 @@ msgstr "टिप्पणी" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -214,7 +214,7 @@ msgstr "नहीं" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -353,7 +353,7 @@ msgid "Edit or export relational schema" msgstr "संबंधपरक स्कीमा को संपादित या निर्यात करें " #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -420,19 +420,19 @@ msgid "visual builder" msgstr "दृश्य बिल्डर" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "सॉर्ट" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "आरोही" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -540,8 +540,8 @@ msgstr "ब्राउज़" msgid "Delete the matches for the %s table?" msgstr "इस %s टेबल से मैच हटाएँ" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -610,7 +610,7 @@ msgstr "ट्रैकिंग सक्रिय है" msgid "Tracking is not active." msgstr "ट्रैकिंग सक्रिय नहीं है." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -638,20 +638,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +662,15 @@ msgid "Check tables having overhead" msgstr " ओवर्हेअद वाली तालुकाओं को चेक करें." #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "छापने वाला द्रश्य." @@ -730,7 +730,7 @@ msgstr "डेटा शब्दकोश" msgid "Tracked tables" msgstr "ट्रैक की गयी टेबलएं" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -925,7 +925,7 @@ msgstr "" "सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1152,8 +1152,8 @@ msgstr "इनलाइन संपादन" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1859,13 +1859,13 @@ msgstr "साझा" msgid "Tables" msgstr "टेबल" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1964,7 +1964,7 @@ msgstr "अवैध सर्वर सूचकांक: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s सर्वर के लिए होस्टनाम अवैध कृपया अपना विन्यास की समीक्षा करें" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2026,7 +2026,7 @@ msgstr "MySQL ने कहा: " msgid "Failed to connect to SQL validator!" msgstr "SQL वलिदटर से जुड़ने में विफल" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "SQL की व्याख्या " @@ -2038,11 +2038,11 @@ msgstr "SQL की व्याख्या को छोड़ जाना" msgid "Without PHP Code" msgstr "php कोड के बिना" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP Code बनाओ" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "ताज़ा करना" @@ -2051,7 +2051,7 @@ msgstr "ताज़ा करना" msgid "Skip Validate SQL" msgstr "SQL की पुष्टि को छोड़ जाना" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "SQL की पुष्टि करना" @@ -2149,11 +2149,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s कार्यक्षमताएक एक बग के द्वारा जनि जाती है| %s पर ध्यान दे " #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2199,62 +2199,77 @@ msgstr "आपकी अपलोड दिरेक्टोरी तक प msgid "There are no files to upload" msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "दोनों" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "ऊँचाई" + +#: libraries/config.values.php:75 msgid "Open" msgstr "खोले" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "बंद" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "संरचना" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "डेटा" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "संरचना और डेटा" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "जल्दी - कॉन्फ़िगर करने के लिए केवल न्यूनतम विकल्पों को प्रदर्शित करें" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "कस्टम - कॉन्फ़िगर करने के लिए सभी विकल्पों को प्रदर्शित करें" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "कस्टम - उपरोक्त की तरह लेकिन जल्दी / कस्टम विकल्प के बिना" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "पूरा इनसर्टस" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "विस्तृत इनसर्टस" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "ऊपर के दोनों" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "उपरोक्त में से कोई भी नहीं" @@ -2339,7 +2354,7 @@ msgid "Set value: %s" msgstr "मान निर्धारित: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "मूलभूत मान को बहाल" @@ -2814,10 +2829,10 @@ msgstr "ब्राउज़ मोड अनुकूलित" msgid "Customize default options" msgstr "डिफ़ॉल्ट विकल्प अनुकूलित" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3394,7 +3409,7 @@ msgid "Maximum displayed SQL length" msgstr "SQL प्रदर्शित अधिकतम लम्बाई" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "यूसरओं एक उच्च मूल्य निर्धारित नहीं कर सकते" @@ -3453,56 +3468,52 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "ये हैं संपादित करें, इनलाइन संपादन, प्रतिलिपि बनाएँ और हटाएँ लिंक" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "रो लिंक बाईं ओर देखएं" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "रो लिंक दायां ओर देखएं" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "टेबल और डेटाबेस नाम सॉर्ट करने के लिए प्राकृतिक व्यवस्था का उपयोग" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "प्राकृतिक आदेश" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "उपयोग चिह्न, पाठ या दोनों" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "प्रतिष्ठित नेविगेशन पट्टी" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "तेज HTTPट्रान्सफर के लिए GZip आउटपुट बफरिंग का उपयोग करें" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip आउटपुट बफरिंग" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "डिफ़ॉल्ट सॉर्ट क्रम" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "MySQL के लिए लगातार कनेक्शन का उपयोग" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "के लिए" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3511,199 +3522,199 @@ msgstr "" "डेटाबेस पर डिफ़ॉल्ट चेतावनी जो प्रदर्शित की जाती है उसे निष्क्रिय करें. संरचना पृष्ठ अगर " "phpMyAdmin विन्यास भंडारण के लिए आवश्यक टेबल को पाया नहीं जा सका " -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "चिह्न टेबल ऑपरेटरों" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "BLOB और BINARY काँलम को एडिट नहीं किया जा सकता" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "बाइनरी काँलम की रक्षा" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "स्थायी क्वरी इतिहास" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "इतिहास में कितने क्वरी रखने है" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "क्वरी इतिहास लंबाई" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "टैब प्रदर्शित जब एक क्वेरी विंडो खोलें" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "मूलभूत क्वरी विंडो टैब" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "क्वेरी विंडो ऊंचाई (पिक्सेल्स में)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "क्वेरी विंडो ऊंचाई" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "क्वेरी विंडो चौड़ाई (पिक्सेल्स में)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "क्वेरी विंडो चौड़ाई" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "चरित्र रूपांतरण के लिए functions चुने" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "टेबल का नाम बदलें" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "हर सेल्स बाद हेडर दोहराना, [kbd]0[/kbd] इस सुविधा को निष्क्रिय करें" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "हेडर दोहराना" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "प्रलेखन पाठ दिखाने के बजाय मदद बटन दिखाएँ" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "मदद बटन दिखाएँ" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "निर्देशिका जहां निर्यात सर्वर पर सहेजा जा सकता है" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "निर्देशिका बचाना" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "इस्तेमाल नहीं तो खाली छोड़ें" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "होस्ट प्राधिकरण आदेश" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "डिफ़ॉल्ट के लिए खाली छोड़ें" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "होस्ट प्राधिकरण नियम" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "पासवर्ड के बिना प्रवेश की अनुमति" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "रूट लॉगिन की अनुमति" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP Basic Auth Realm name to display when doing HTTP Auth" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "http दायरे" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "SweKey config फाइल" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "प्रमाणीकरण विधि उपयोग करने के लिए" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "प्रमाणीकरण पद्धति का उपयोग" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "बुकमार्क टेबल" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "काँलम जानकारी टेबल" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "MySQL सर्वर कनेक्शन संक्षिप्त करना" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "कनेक्शन संक्षिप्त करना" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "सर्वर से कैसे कनेक्ट करें, [kbd]tcp[/kbd] रखें अगर अनिश्चित" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "कनेक्शन के प्रकार" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "यूसर पासवर्ड नियंत्रण" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3711,56 +3722,56 @@ msgstr "" "एक विशेष MySQL सर्वर सीमित अनुमति के साथ, ज्यादा जानकारी के लिए [a@http://wiki." "phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "नियंत्रण यूसर" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "डेटाबेस सूची दिखाते समय टेबल गणना करें" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "टेबल गणना" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" "कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "डिजाइनर टेबल" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA का उपयोग असमर्थ करें" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "किस PHPएक्सटेंशन का उपयोग करें, अगर समर्थित तो, आपको mysqli चुनना चाहिए" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "PHP विस्तार का उपयोग करें" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "डेटाबेस छिपाना" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3768,31 +3779,31 @@ msgstr "" "अगर आपको SQL क्वरी इतिहास नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "SQL इतिहास क्वेरी टेबल" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "होस्ट नाम जहाँ MySQL सर्वर चल रहा है" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "सर्वर होस्ट नाम" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "लॉगआउट URL" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "पासवर्ड के बिना कनेक्ट करने का प्रयास" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "पासवर्ड के बिना कनेक्ट करें" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3801,48 +3812,48 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "केवल सूचीबद्ध डेटाबेस दिखाएँ" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "अगर विन्यास प्राधिकरण का उपयोग नहीं तो खाली छोड़ दें" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "विन्यास प्राधिकरण के लिए पासवर्ड" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF स्कीमा: पृष्ठों टेबल" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "डेटाबेस नाम" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "MySQL सर्वर किस port पर सुन रहा है: डिफ़ॉल्ट के लिए खाली छोड़" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "सर्वर" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" @@ -3853,80 +3864,80 @@ msgid "" msgstr "" "कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "याद यूसर नाम" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "संबंध टेबल" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "उपलब्ध डेटाबेस लाने के लिए प्रशन" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES आदेश" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "signon सत्र नाम" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "MySQL किस गर्तिका पर सुन रहा है: डिफ़ॉल्ट के लिए खाली छोड़" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "सर्वर गर्तिका" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "MySQL कनेक्शन के लिए SSL सक्षम करने" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "SSL का उपयोग" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "काँलम टेबल दिखाएँ" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -3936,33 +3947,33 @@ msgid "" msgstr "" "अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "यूसर वरीयताओं की भंडारण टेबल" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "ड्रॉप डेटाबेस जोड़ें" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "ड्रॉप टेबल जोड़ें" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -3970,154 +3981,154 @@ msgstr "" "क्या DROP VIEW IF EXISTS बयान पहली लाइन की तरह जोड़े जायेगा, जब एक दृश्य का लोग बन " "रहा है" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "DROP VIEW जोडें" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "बयान ट्रैक करने के लिए" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "SQL क्वरी ट्रैकिंग टेबल" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "स्वतः संस्करण बनाना" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "यूसर वरीयताओं की भंडारण टेबल" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "विन्यास प्राधिकरण के लिए यूसर" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "चेक वाचाल" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "इस सर्वर का विवरण, होस्ट नाम दिखने के लिए खाली छोडें" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "इस सर्वर का वाचाल नाम" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "क्या एक उसेर को "show all (rows)" बटन दिखाना है" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "सभी रोयों को प्रदर्शित करने की अनुमति" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "पासवर्ड बदलने के फार्म" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "डेटाबेस बनाने का फार्म" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "फ़ील्ड प्रकार दिखाएँ" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "phpinfo() लिंक दिखाएँ" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "विस्तृत mysql सर्वर जानकारी" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "क्या phpMyAdmin द्वारा उत्पन SQL प्रशन प्रदर्शित करनी है" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "SQL प्रशन दिखाएँ" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "डेटाबेस और टेबल आँकड़े प्रदर्शित करने की अनुमति दें" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "आँकड़े दिखाएँ" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "डेटाबेस के नाम के बजाय टिप्पणी प्रदर्शित करें" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4125,28 +4136,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "टेबल के नाम के बजाय टिप्पणी प्रदर्शित करें" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "प्रदर्शन टूलटिप्स में टेबल टिप्पणियाँ " -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "बंद टेबलओं को छोड़" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4156,87 +4167,87 @@ msgstr "" msgid "Password" msgstr "पासवर्ड" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "SQL मान्य करता सक्षम" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" "अगर आप एक कस्टम यूसर हैं,तो यहाँ निर्दिष्ट करें, (defaults to [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "यूसर नाम" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "नए डेटाबेस नाम का सुझाव" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "अगर Suhosin का पता चलता है तो चेतावनी दी जाएगी" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Suhosin चेतावनी" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "क्षेत्र रोयाँ" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "ब्राउज़र विंडो का शीर्षक है जब एक डेटाबेस का चयन किया " -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "ब्राउज़र विंडो का शीर्षक है जब किसी भी डेटाबेस का चयन नहीं किया है" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "डिफ़ॉल्ट शीर्षक" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "ब्राउज़र विंडो का शीर्षक है जब एक सर्वर का चयन किया" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "ब्राउज़र विंडो का शीर्षक है जब किसी भी सर्वर का चयन नहीं किया है" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4244,56 +4255,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "विश्वसनीय proxies की सूची IP ​​अनुमति / इनकार के लिए" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "सर्वर पर निर्देशिका जहाँ आप आयात करने के लिए फाइल अपलोड कर सकते हैं" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "अपलोड निर्देशिका" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "संपूर्ण डेटाबेस के अंदर तलाश करने के लिए अनुमति" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "डेटाबेस खोज का प्रयोग" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "सेटिंग्स में डेवलपर टैब को सक्रिय करें" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "वाचाल बयान" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "नवीनतम संस्करण के लिए जाँच" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "phpMyAdmin के मुख्य पृष्ठ पर नवीनतम संस्करण के लिए जाँच की अनुमति" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4301,13 +4312,13 @@ msgstr "phpMyAdmin के मुख्य पृष्ठ पर नवीनत msgid "Version check" msgstr "संस्करण की जांच" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4327,61 +4338,61 @@ msgstr "HTTP प्रमाणीकरण" msgid "Signon authentication" msgstr "signon प्रमाणीकरण" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "तुरंत" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "कस्टम" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "डेटाबेस निर्यात विकल्प" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV for MX Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4468,7 +4479,7 @@ msgstr "नियमित कार्य" msgid "Return type" msgstr "रिटर्न प्रकार" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4849,60 +4860,60 @@ msgstr "BLOB सामग्री दिखाने" msgid "Browser transformation" msgstr "सामग्री दिखाने" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "अनुकृति" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "रौ को डिलीट कर दिया" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "रौ देखिये" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr " कुल" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "क्वरी को %01.4f सेकेंड का समय लगा" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display Features" msgid "Display chart" msgstr "फीचरस दिखाओ" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "दृश्य बनाइये" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "लिंक नहीं मिला" @@ -9734,3 +9745,9 @@ msgstr "दृश्य का नाम" #: view_operations.php:91 msgid "Rename view to" msgstr "दृश्य का नाम बदलो" + +#~ msgid "Show table row links on left side" +#~ msgstr "रो लिंक बाईं ओर देखएं" + +#~ msgid "Show table row links on right side" +#~ msgstr "रो लिंक दायां ओर देखएं" diff --git a/po/hr.po b/po/hr.po index 289f4ee7cd..5d5cf2de24 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: croatian \n" @@ -202,7 +202,7 @@ msgstr "Komentari" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -218,7 +218,7 @@ msgstr "Ne" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -365,7 +365,7 @@ msgid "Edit or export relational schema" msgstr "Shema relacija" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -433,19 +433,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Presloži" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Uzlazno" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -559,8 +559,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -634,7 +634,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -663,20 +663,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +687,15 @@ msgid "Check tables having overhead" msgstr "Provjeri za prepunjene tablice" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Prikaz ispisa" @@ -755,7 +755,7 @@ msgstr "Rječnik podataka" msgid "Tracked tables" msgstr "Provjeri tablicu" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -961,7 +961,7 @@ msgstr "" "povećate vremenska ograničenja unutar php." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1220,8 +1220,8 @@ msgstr "Pogoni" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1992,13 +1992,13 @@ msgstr "" msgid "Tables" msgstr "Tablice" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2110,7 +2110,7 @@ msgstr "" "Neispravan naziv za poslužitelj %1$s. Molimo, pregledajte svoju " "konfiguraciju." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2172,7 +2172,7 @@ msgstr "MySQL je poručio: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Objasni SQL" @@ -2184,11 +2184,11 @@ msgstr "Preskoči Objasni SQL" msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Izradi PHP kod" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Osvježi" @@ -2197,7 +2197,7 @@ msgstr "Osvježi" msgid "Skip Validate SQL" msgstr "Preskoči provjeru valjanosti SQL-a" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Provjera valjanosti SQL-a" @@ -2297,11 +2297,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2348,21 +2348,34 @@ msgstr "Mapu koju ste odabrali za potrebe učitavanja nije moguće dohvatiti" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Navodnik nije zatvoren" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2370,13 +2383,13 @@ msgstr "Navodnik nije zatvoren" msgid "structure" msgstr "Strukturu" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2384,35 +2397,35 @@ msgstr "" msgid "structure and data" msgstr "Strukturu i podatke" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Dovrši umetanja" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Proširena umetanja" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2500,7 +2513,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2996,10 +3009,10 @@ msgstr "" msgid "Customize default options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3591,7 +3604,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3649,356 +3662,352 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Izmijeni rasporede tablice po" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Preimenuj tablicu u" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Popravi grane" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 #, fuzzy msgid "Save directory" msgstr "Osnovna mapa podataka" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "Veze" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Nema tablica" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 #, fuzzy msgid "Designer table" msgstr "Defragmentiraj tablicu" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 #, fuzzy msgid "PHP extension to use" msgstr "PHP ekstenzija" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "Nema baza podataka" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "naziv poslužitelja" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4007,326 +4016,326 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "naziv baze podataka" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "ID poslužitelja" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analiziraj tablicu" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Popravi tablicu" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "Odabir poslužitelja" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Prikazivanje stupca komentara" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragmentiraj tablicu" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Izjave" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Rad s automatskim povratom" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Prikaži otvorene tablice" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "Prikaži pune upite" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Statistike redova" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4334,29 +4343,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Skip locked tables" msgstr "Prikaži otvorene tablice" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4366,90 +4375,90 @@ msgstr "" msgid "Password" msgstr "Lozinka" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dodaj/Izbriši stupce polja" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy msgid "Default title" msgstr "Preimenuj bazu podataka u" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4457,57 +4466,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 #, fuzzy msgid "Upload directory" msgstr "Osnovna mapa podataka" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4515,13 +4524,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4541,63 +4550,63 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV upotrebom LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Otvori izračunsku tablicu dokumenta" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Prilagođena boja" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Opcije izvoza baze podataka" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Otvori tekst dokumenta" @@ -4684,7 +4693,7 @@ msgstr "Rutine" msgid "Return type" msgstr "Vrsta povratka" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5137,61 +5146,61 @@ msgstr "" msgid "Browser transformation" msgstr "Pretvaranje preglednika" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Redak je izbrisan" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Eliminiraj" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "unutar upita" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Prikazivanje redaka" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sek" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Operacije rezultata upita" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Prikaz ispisa (s potpunim tekstovima)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Izradi relaciju" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Veza nije pronađena" diff --git a/po/hu.po b/po/hu.po index 027c20cdf7..c01df6dc66 100644 --- a/po/hu.po +++ b/po/hu.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-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-05-27 18:52+0200\n" "Last-Translator: \n" "Language-Team: hungarian \n" @@ -199,7 +199,7 @@ msgstr "Megjegyzések" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "Nem" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -354,7 +354,7 @@ msgid "Edit or export relational schema" msgstr "Kapcsolati séma szerkesztése, exportálása" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -421,19 +421,19 @@ msgid "visual builder" msgstr "vizuális tervező" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Rendezés" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Növekvő" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -541,8 +541,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -611,7 +611,7 @@ 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:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -641,20 +641,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +665,15 @@ 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:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Nyomtatási nézet" @@ -727,7 +727,7 @@ msgstr "Adatkönyvtár" msgid "Tracked tables" msgstr "Nyomon követett táblák" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -929,7 +929,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:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1155,8 +1155,8 @@ msgstr "Inline szerkesztés" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1871,13 +1871,13 @@ msgstr "megosztott" msgid "Tables" msgstr "Táblák" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1980,7 +1980,7 @@ msgstr "Érvénytelen szerverindex: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "A(z) %1$s szerver hosztneve érvénytelen. Ellenőrizze a beállításokat." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2042,7 +2042,7 @@ msgstr "A MySQL mondta: " msgid "Failed to connect to SQL validator!" msgstr "Nem lehetett kapcsolódni a MySQL-validátorhoz" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Az SQL magyarázata" @@ -2054,11 +2054,11 @@ msgstr "SQL magyarázat átugrása" msgid "Without PHP Code" msgstr "PHP kód nélkül" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP-kód létrehozása" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Frissítés" @@ -2067,7 +2067,7 @@ msgstr "Frissítés" msgid "Skip Validate SQL" msgstr "SQL érvényesítés átugrása" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "SQL érvényesítése" @@ -2165,11 +2165,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2215,62 +2215,77 @@ msgstr "Nem elérhető a feltöltésekhez megadott könyvtár" msgid "There are no files to upload" msgstr "Nincsenek feltöltendő fájlok" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Mind" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "Magasság" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Nyitott" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Zárt" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "szerkezet" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "adat" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "szerkezet és adatok" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Gyors - csak a minimális beállítási lehetőségeket mutatja" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Egyéni - az összes beállítási lehetőségeket mutatja" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "Egyéni - mint fentebb, de gyors/egyéni választási lehetőség nélkül" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "teljes beillesztések" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "kiterjesztett beillesztések" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "a fentiekből mindkettő" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "a fentiekből egyik sem" @@ -2356,7 +2371,7 @@ msgid "Set value: %s" msgstr "Adja meg az értéket: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Alapértelmezett érték visszaállítása" @@ -2845,10 +2860,10 @@ msgstr "A tallózó mód testreszabása" msgid "Customize default options" msgstr "Alapértelmezett beállítások testreszabása" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3446,7 +3461,7 @@ msgid "Maximum displayed SQL length" msgstr "A SQL kijelzett hossza legfeljebb" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "A felhasználók nem adhatnak meg nagyobb értéket" @@ -3510,40 +3525,36 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "Ezek a Szerkesztés, Inline szerkesztés, Másolás és Törlés linkek" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "A sorhoz tartozó linkek mutatása a bal oldalon" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "A sorhoz tartozó linkek mutatása a jobb oldalon" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" "Használjon természetes rendezést a tábla, és adatbázis nevek sorrendjéhez" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Természetes rendezés" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Csak ikonok, csak szöveg, vagy mindkettő használata" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Navigációs sáv ikonokkal" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "A GZip-kimenet pufferelése a HTTP-átvitelekben megnövekedett sebességhez" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip-kimenet pufferelése" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3551,19 +3562,19 @@ msgstr "" "[kbd]SMART[/kbd] - pl. a TIME, DATE, DATETIME és TIMESTAMP típusú mezők " "sorrendje csökkenő, egyéb esetben növekvő" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Alapértelmezett rendezési mód" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Állandó kapcsolatok használata a MySQL adatbázisokhoz" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Állandó kapcsolatok" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3573,23 +3584,23 @@ msgstr "" "Struktúra oldalon jelenik meg, ha a phpMyAdmin konfiguráció tároló táblák " "valamelyike nem található" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Hiányzó phpMyAdmin konfiguráció tároló táblák" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Ikonos táblaműveletek" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "A BLOB vagy a BLOB és BINARY mezők módosításának tiltása" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "A bináris mezők védelme" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3599,119 +3610,119 @@ msgstr "" "szükséges hozzá). Ha letiltja, akkor JS-rutinokat használ fel a lekérdezési " "előzmények megjelenítéséhez (ablak bezárásakor elvész)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Állandó lekérdezési előzmények" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Hány lekérdezés tartandó meg az előzményekben" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "A lekérdezési előzmények hossza" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Új lekérdezési ablak megnyitásakor fül megjelenítése" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Alapértelmezett lekérdezési ablak fül" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Lekérdezési ablak magassága (pixelekben)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Lekérdezés ablak magassága" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Lekérdezés ablak szélessége (pixelekben)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Lekérdezés ablak szélessége" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Válassza ki a karakterkészlet-konvertáláshoz használandó funkciókat" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Átkódoló motor" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Tábla átnevezése" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Megismétli a fejléceket minden X cellánként, a [kbd]0[/kbd] kikapcsolja ezt " "a lehetőséget" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Fejlécek kijavítása" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Mutassa a Segítség gombot a Dokumentáció szöveg helyett" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Segítség gomb mutatása" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "A könyvtár, melybe az exportálások menthetők a szerveren" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Mentési könyvtár" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Hagyja üresen, ha nem használja" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "Az állomás hitelesítési sorrendje" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Hagyja üresen az alapértelmezésekhez" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "Az állomás hitelesítési szabályai" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "A jelszó nélküli bejelentkezés engedélyezése" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "A root bejelentkezés engedélyezése" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP Basic Auth Realm neve, ami HTTP hitelesítés közben jelenik meg" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3721,19 +3732,19 @@ msgstr "" "fájljának elérési útja (nem a dokumentumgyökérben található; javaslat: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "SweKey konfigurációs fájl" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Használandó hitelesítési módszer" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Hitelesítés típusa" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3741,11 +3752,11 @@ msgstr "" "Hagyja üresen, ha nincs [a@http://wiki.phpmyadmin.net/pma/bookmark]könyvjelző" "[/a] támogatás, alapértelmezés: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Könyvjelzők táblája" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3753,32 +3764,32 @@ msgstr "" "Hagyja üresen, ha nincs oszlopmegjegyzés/mime-típus, alapértelmezés: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Oszlopinformációs tábla" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "A MySQL-szerverhez csatlakozás tömörítése" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "A kapcsolat tömörítése" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "A szerverhez csatlakozás módja, hagyja meg a tcp értéket, ha nem biztos benne" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Csatlakozás típusa" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "A kontrollfelhasználó jelszava" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3786,19 +3797,19 @@ msgstr "" "Korlátozott jogokkal rendelkező, speciális MySQL felhasználó, bővebben a " "[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a] címen olvashat róla" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Kontrollfelhasználó" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "A táblák megszámolása az adatbázislista megjelenítésekor" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Táblák megszámolása" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3806,11 +3817,11 @@ msgstr "" "Hagyja üresen, ha nem akar Tervező támogatást, alapértelmezés: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Tervező tábla" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3819,29 +3830,29 @@ msgstr "" "[/a] és a [a@http://bugs.mysql.com/19588]MySQL hibabejelentőben[/a] olvashat " "róla" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Az INFORMATION_SCHEMA használatának letiltása" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Melyik PHP-kiterjesztés használandó, használja a mysqli kiterjesztést, ha " "támogatott" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Használandó PHP-kiterjesztés" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "A (PCRE) reguláris kifejezéssel megegyező adatbázisok elrejtése" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Adatbázisok elrejtése" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3849,31 +3860,31 @@ msgstr "" "Hagyja üresen, ha nincs szükség az SQL-lekérdezések előzményeinek " "támogatására, alapértelmezés: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "SQL-lekérdezések előzményeinek táblája" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Az állomás neve, ahol a MySQL-szerver fut" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "A szerver állomásneve" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "Kijelentkezési URL" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "A csatlakozás jelszó nélküli megkísérlése" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Jelszó nélküli csatlakozás" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3887,30 +3898,30 @@ msgstr "" "adatbázislistákat, beírva a nevüket sorrendben és használja a [kbd]*[/kbd]-t " "a végén, hogy a többi abc-sorrendben jelenjen meg." -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Csak a kilistázott adatbázisok megjelenítése" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Hagyja üresen, ha nem a konfigurációs hitelesítést használja" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "A konfigurációs hitelesítés jelszava" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Hagyja üresen, ha nincs PDF-séma támogatás, alapértelmezés: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF-séma: pages table" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3921,20 +3932,20 @@ msgstr "" "oldalon. Hagyja üresen, ha nincs szükség a támogatására. Alapértelmezés: " "[kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Adatbázis neve" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "A port, melyen a MySQL-szerver figyel, hagyja üresen, ha az alapértelmezett" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "A szerver portja" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -3946,13 +3957,13 @@ msgstr "" "Hagyja üresen, ha nincs szükség a felhasználói beállítások tárolására az " "adatbázisban, javaslat: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "A felhasználónév újrahívása" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3960,19 +3971,19 @@ msgstr "" "Hagyja üresen, ha nincs [a@http://wiki.phpmyadmin.net/pma/relation]relációs " "hivatkozás[/a] támogatás, alapértelmezés: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Relációs tábla" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "A meglévő adatbázisokat kiolvasó SQL-parancs" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES parancs" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3980,44 +3991,44 @@ msgstr "" "Lásd a [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]hitelesítési " "típusok[/a] példáját" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Az egyszeri bejelentkezési munkamenet neve" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "Az egyszeri bejelentkezés URL-címe" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "A szoftvercsatorna, melyen a MySQL-szerver figyel, hagyja üresen, ha az " "alapértelmezett" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "A szerver szoftvercsatornája" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "SSL engedélyezése a MySQL-szerverhez való csatlakozáshoz" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "SSL használata" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Hagyja üresen, ha nincs PDF-séma támogatás, alapértelmezés: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF-séma: table coordinates" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4025,11 +4036,11 @@ msgstr "" "Tábla a megjelenített oszlopok leírásához, hagyja üresen, ha nem kíván " "megadni leírást; javasolt: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Oszlopok tábla megjelenítése" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4041,13 +4052,13 @@ msgstr "" "Hagyja üresen, ha nincs szükség a felhasználói beállítások tárolására az " "adatbázisban, javaslat: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Tábla töredezettségmentesítése" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4055,11 +4066,11 @@ msgstr "" "DROP DATABASE IF EXISTS utasítás hozzá lesz adva a napló első sora ként az " "adatbázis létrehozása során." -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "DROP DATABASE hozzáadása" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4067,11 +4078,11 @@ msgstr "" "DROP TABLE IF EXISTS utasítás hozzá lesz adva a napló első sora ként a tábla " "létrehozása során." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "DROP TABLE hozzáadása" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4079,20 +4090,20 @@ msgstr "" "DROP VIEW IF EXISTS utasítás hozzá lesz adva a napló első sora ként a nézet " "létrehozása során." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "DROP VIEW hozzáadása" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Állítások listájának definiálása az új verziójú automata-létrehozások során." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "Utasítások követésre" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4100,21 +4111,21 @@ msgstr "" "Hagyja üresen, ha nincs szükség az SQL-lekérdezések előzményeinek " "támogatására, javasolt: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "SQL-lekérdezések előzményeinek táblája" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Verziók automatikus létrehozása" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -4122,15 +4133,15 @@ msgstr "" "Hagyja üresen, ha nincs szükség a felhasználói beállítások tárolására az " "adatbázisban, javaslat: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "A konfigurációs hitelesítés felhasználóneve" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4138,11 +4149,11 @@ msgstr "" "Tiltsa le, ha tudja, hogy a pma_* táblák naprakészek. Ez megelőzi a " "kompatibilitási ellenőrzéseket, s ezáltal növeli a teljesítményt" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Részletes ellenőrzés" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4150,11 +4161,11 @@ msgstr "" "A szerver felhasználóbarát leírása. Hagyja üresen az állomásnév " "megjelenítéséhez." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "A szerver részletes neve" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" @@ -4163,11 +4174,11 @@ msgstr "" "Meg kell-e jeleníteni egy felhasználó számára az "az összes (rekord) " "megjelenítése" gombot" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Az összes sor megjelenítésének engedélyezése" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4177,33 +4188,33 @@ msgstr "" "hitelesítési módra, mert a jelszót a konfigurációs fájl tartalmazza, ami " "közvetlenül nem korlátozza ugyanazon parancs végrehajtásának a lehetőségét." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "A jelszómódosító űrlap megjelenítése" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Az adatbázis létrehozása űrlap megjelenítése" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Mező típusok mutatása" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Szerkesztés/beszúrás módban a függvénymezők megjelenítése" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "A függvénymezők megjelenítése" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4211,35 +4222,35 @@ msgstr "" "Megjeleníti a [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "kimenetre mutató hivatkozást" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "A phpinfo() hivatkozás megjelenítése" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "A MySQL-szerver részletes adatainak megjelenítése" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Meghatározza, hogy meg kell-e jeleníteni a phpMyAdmin által generált SQL-" "lekérdezéseket" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Az SQL-lekérdezések megjelenítése" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Az adatbázis- és táblastatisztika megjelenítésének engedélyezése (pl. " "területhasználat)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "A statisztika megjelenítése" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4247,11 +4258,11 @@ msgstr "" "Ha engedélyezettek az eszközleírások, s ha megadták az adatbázis " "megjegyzését, akkor ez tükrözi a megjegyzést és a valódi nevet" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Az adatbázis megjegyzésének megjelenítése a neve helyett" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4263,30 +4274,30 @@ msgstr "" "['LeftFrameTableSeparator'] utasítás alapján, ezért csak a mappát hívják " "úgy, mint az aliast, a táblanév változatlan marad." -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "A tábla megjegyzésének megjelenítése a neve helyett" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "A tábla megjegyzéseinek megjelenítése az eszközleírásokban" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "A használt táblák megjelölése, s a zárolt táblákat tartalmazó adatbázisok " "láthatóvá tétele" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "A zárolt táblák kihagyása" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "Szükséges az SQL Validator engedélyezése" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4296,17 +4307,17 @@ msgstr "Szükséges az SQL Validator engedélyezése" msgid "Password" msgstr "Jelszó" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "SQL Validator engedélyezése" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4314,12 +4325,12 @@ msgstr "" "Ha Önnek egyedi felhasználóneve van, itt megnevezheti (alapértelmezett: [kbd]" "anonymous[/kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Felhasználónév" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4327,59 +4338,59 @@ msgstr "" "Javaslat adatbázisnévre az "Adatbázis létrehozása" űrlapon (ha " "lehet), vagy maradjon üres a szövegmező" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Új adatbázisnév javasolása" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Figyelmeztetés megjelenítése a főoldalon, Suhosin észlelésekor" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Suhosin figyelmeztetés" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "Szövegterület oszlopai" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "Szövegterület sorai" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "A böngésző ablak címe, ha ki van választva egy adatbázis" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "A böngésző ablak címe, ha semmi sincs kiválasztva" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Alapértelmezett cím" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "A böngésző ablak címe, ha ki van választva egy szerver" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "A böngésző ablak címe, ha ki van választva egy tábla" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4391,37 +4402,37 @@ msgstr "" "HTTP_X_FORWARDED_FOR (X-Forwarded-For) fejlécben:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "A megbízható proxyk listája az IP engedélyezéshez/elutasításhoz" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "A szerveren lévő könyvtár, melybe feltöltheti az importálandó fájlokat" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Feltöltések könyvtára" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "A teljes adatbázisban történő keresés engedélyezése" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Adatbázis-kereső használata" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4431,19 +4442,19 @@ msgstr "" "sorainak megjelenítése. Egy utasítás által tartalmazható lekérdezések " "számának alapértelmezéseit lásd libraries/import.lib.php fájlban." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Részletes, több utasítás" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Új verzió ellenőrzése" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4451,7 +4462,7 @@ msgstr "" msgid "Version check" msgstr "Verzió-ellenőrzés" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4459,7 +4470,7 @@ msgstr "" "A [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] tömörítés " "engedélyezése az importálási és az exportálási műveletekhez" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4479,61 +4490,61 @@ msgstr "HTTP hitelesítés" msgid "Signon authentication" msgstr "Signon hitelesítés" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV a LOAD DATA használatával" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Workbook" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document munkafüzet" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "Quick" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "Egyedi" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Adatbázis exportálási beállításai" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel CSV adat" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document szöveges dokumentum" @@ -4627,7 +4638,7 @@ msgstr "Eljárások" msgid "Return type" msgstr "Típus visszaadása" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5044,61 +5055,61 @@ msgstr "BLOB-tartalom megjelenítése" msgid "Browser transformation" msgstr "Böngésző átalakítása" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "A sor törlése megtörtént" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Leállít" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "lekérdezésben" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Megjelenített sorok:" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "összesen" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "a lekérdezés %01.4f másodpercig tartott" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Műveletek a lekérdezési eredménnyel" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Nyomtatási nézet (teljes szöveggel)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF séma megjelenítése" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Kapcsolat létrehozása" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Nem található a hivatkozás" @@ -10474,6 +10485,12 @@ msgstr "NÉZET neve" msgid "Rename view to" msgstr "Nézet átnevezése" +#~ msgid "Show table row links on left side" +#~ msgstr "A sorhoz tartozó linkek mutatása a bal oldalon" + +#~ msgid "Show table row links on right side" +#~ msgstr "A sorhoz tartozó linkek mutatása a jobb oldalon" + #~ msgid "Delete the matches for the " #~ msgstr "A tábla adatainak kiíratása" diff --git a/po/id.po b/po/id.po index 44eadff1f6..1f560fddee 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-04-16 22:04+0200\n" "Last-Translator: \n" "Language-Team: indonesian \n" @@ -199,7 +199,7 @@ msgstr "Komentar" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "Tidak" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -354,7 +354,7 @@ msgid "Edit or export relational schema" msgstr "Edit atau ekspor skema relasional" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -420,19 +420,19 @@ msgid "visual builder" msgstr "pembangun visual" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Urutkan" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Urutan menaik" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -539,8 +539,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -608,7 +608,7 @@ msgstr "Pelacakan aktif" msgid "Tracking is not active." msgstr "Pelacakan tidak aktif." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -638,20 +638,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +662,15 @@ msgid "Check tables having overhead" msgstr "Periksa Overheaded" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Pandangan cetak" @@ -728,7 +728,7 @@ msgstr "Kamus Data" msgid "Tracked tables" msgstr "Tabel-tabel yang dilacak" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -926,7 +926,7 @@ msgstr "" "waktu eksekusi php." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1156,8 +1156,8 @@ msgstr "Inline Edit" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1876,13 +1876,13 @@ msgstr "" msgid "Tables" msgstr "Tabel" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1984,7 +1984,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Hostname tidak sah untuk server %1$s. Silakan lihat kembali konfigurasi Anda." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2046,7 +2046,7 @@ msgstr "MySQL menyatakan: " msgid "Failed to connect to SQL validator!" msgstr "Gagal melakukan koneksi ke validator SQL!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Terangkan SQL" @@ -2058,11 +2058,11 @@ msgstr "Melewati keterangan SQL" msgid "Without PHP Code" msgstr "Kode PHP tidak ditemukan" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Ciptakan kode PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Menyegarkan" @@ -2071,7 +2071,7 @@ msgstr "Menyegarkan" msgid "Skip Validate SQL" msgstr "Melewati pengesahan (validation) SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Mengesahkan (validate) SQL" @@ -2169,11 +2169,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2219,62 +2219,75 @@ msgstr "Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi" msgid "There are no files to upload" msgstr "Tidak ada arsip untuk diunggah" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Keduanya" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Buka" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Tutup" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "struktur" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "data" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "struktur dan data" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Cepat - hanya menampilkan opsi untuk konfigurasi" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Custom - menampilkan semua opsi yang mungkin untuk konfigurasi" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "Custom - seperti di atas, namun tanpa pilihan cepat/custom" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "INSERT lengkap" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "INSERT yang diperluas" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "keduanya dari yang di atas" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "tidak keduanya dari yang di atas" @@ -2361,7 +2374,7 @@ msgid "Set value: %s" msgstr "Tetapkan nilai: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Kembalikan nilai default" @@ -2857,10 +2870,10 @@ msgstr "" msgid "Customize default options" msgstr "Pilihan cara untuk mengekspor Database" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "Data CSV" @@ -3439,7 +3452,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3496,355 +3509,351 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Urutkan tabel berdasarkan" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Jendela Pencarian" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Jendela Pencarian" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Jendela Pencarian" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Ubah nama tabel menjadi " -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Perbaiki proses" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 #, fuzzy msgid "Save directory" msgstr "Home direktori data" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "Koneksi" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Tabel tidak ditemukan" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 #, fuzzy msgid "Designer table" msgstr "Defragmentasikan tabel" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "Database tidak ditemukan" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "Pilihan Server" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3853,325 +3862,325 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Database" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "ID Server" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analisa tabel" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Perbaiki tabel" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "Pilihan Server" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Tampilkan komentar kolom" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragmentasikan tabel" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Keterangan" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Modus restorasi otomatis" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy msgid "Show field types" msgstr "Tampilkan tabel" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "Tampilkan pencarian yang lengkap" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Statistik Baris" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4179,28 +4188,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4210,90 +4219,90 @@ msgstr "" msgid "Password" msgstr "Kata Sandi" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Nama Pengguna" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete columns" msgid "Textarea columns" msgstr "Tambahkan/Hapus kolom" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Default" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4301,56 +4310,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4358,13 +4367,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4384,63 +4393,63 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Warna kustom" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Pilihan cara untuk mengekspor Database" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV untuk data MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4527,7 +4536,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4961,62 +4970,62 @@ msgstr "" msgid "Browser transformation" msgstr "Transformasi Browser" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Baris telah dihapus" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Tutup" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "dalam susunan pemeriksaan" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Tampilan baris" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "jumlah" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "pencarian membutuhkan waktu %01.4f detik" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Pandangan cetak (dengan teks lengkap)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Tampilkan skema PDF" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Membuat versi" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Link tidak ditemukan" diff --git a/po/it.po b/po/it.po index b1e0e74a79..fb11df086f 100644 --- a/po/it.po +++ b/po/it.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-05-25 22:43+0200\n" "Last-Translator: Rouslan Placella \n" "Language-Team: italian \n" @@ -200,7 +200,7 @@ msgstr "Commenti" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -216,7 +216,7 @@ msgstr "No" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -355,7 +355,7 @@ msgid "Edit or export relational schema" msgstr "Modifica o esporta schema relazionale" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -422,19 +422,19 @@ msgid "visual builder" msgstr "creazione query assistita" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Ordinamento" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Crescente" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -542,8 +542,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -612,7 +612,7 @@ msgstr "Il tracking è attivo." msgid "Tracking is not active." msgstr "Il tracking non è attivo." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -642,20 +642,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +666,15 @@ msgid "Check tables having overhead" msgstr "Controllo addizionale" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Visualizza per stampa" @@ -728,7 +728,7 @@ msgstr "Data Dictionary" msgid "Tracked tables" msgstr "Tabelle monitorate" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -932,7 +932,7 @@ msgstr "" "basso per consentire a phpMyAdmin di terminare l'operazione." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1150,8 +1150,8 @@ msgstr "Modifica in linea" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1868,13 +1868,13 @@ msgstr "condiviso" msgid "Tables" msgstr "Tabelle" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1977,7 +1977,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome host per il server %1$s non valido. Controlla la tua configurazione." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2039,7 +2039,7 @@ msgstr "Messaggio di MySQL: " msgid "Failed to connect to SQL validator!" msgstr "Non sono riuscito a connettermi all'SQL Validator!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Spiega SQL" @@ -2051,11 +2051,11 @@ msgstr "Non Spiegare SQL" msgid "Without PHP Code" msgstr "Senza codice PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Crea il codice PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Aggiorna" @@ -2064,7 +2064,7 @@ msgstr "Aggiorna" msgid "Skip Validate SQL" msgstr "Non Validare SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Valida SQL" @@ -2162,11 +2162,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2212,62 +2212,77 @@ msgstr "La directory impostata per l'upload non può essere trovata" msgid "There are no files to upload" msgstr "Nessun file da caricare" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Entrambi" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "Altezza" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Aperto" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Chiuso" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "struttura" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "dati" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "struttura e dati" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Rapido - mostra solo le opzioni minime di configurazione" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Personalizzato - mostra tutte le possibili opzioni di configurazione" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "Personalizzato - come sopra ma senza la scelta quick/custom" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "inserimenti completi" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "inserimenti estesi" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "entrambi i precedenti" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "nessuno dei precedenti" @@ -2354,7 +2369,7 @@ msgid "Set value: %s" msgstr "Imposta valore: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Ripristinare valori predefiniti" @@ -2843,10 +2858,10 @@ msgstr "Personalizza modalità di navigazione" msgid "Customize default options" msgstr "Personalizza le opzioni predefinite" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3445,7 +3460,7 @@ msgid "Maximum displayed SQL length" msgstr "Lunghezza massima per visualizzazione SQL" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Gli utenti non possono impostare un valore maggiore" @@ -3512,41 +3527,37 @@ msgstr "" "Eliminazione" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "Mostra collegamenti alle righe della tabbella sulla sinistra" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "Mostra i collegamenti alle righe sulla destra" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" "Utilizza un ordine naturale per ordinare i nomi delle tabelle e dei database" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Ordine naturale" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Utilizza solo icone, solo testo o entrambi" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Barra di navigazione iconica" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "utilizza il buffer di uscita GZip per una maggiore velocità nei " "trasferimenti via HTTP" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "utilizza il buffer di uscita GZip" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3554,19 +3565,19 @@ msgstr "" "[kbd]SMART[/kbd] - ad esempio ordine decrescente per i campi dei tipi TIME, " "DATE, DATETIME e TIMESTAMP, ordine crescente altrimenti" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Ordinamento predefinito" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Usa connessioni persistenti per i server MySQL" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Connessione persistente" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3576,23 +3587,23 @@ msgstr "" "dettagli della Struttura dei database, se qualche tabella necessaria per la " "memorizzazzione della configurazione di phpMyAdmin non viene trovata" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Mancano le tabbelle di configurazione di phpMyAdmin" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Operazioni iconiche per le tabelle" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Disabilita l'opzione di modifica dei campi BLOB e BINARY" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Proteggi campi binari" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3603,123 +3614,123 @@ msgstr "" "disabilitata, questa utilizzera funzioni JS per visualizzare la cronologia " "delle query (persa alla chiusura della finstra)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Cronologia delle query permanente" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Il numero di query da mantenere nella cronologia" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Lunghezza per la cronologia delle query" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" "La tabulazione da visualizzare quando una nuova finestra di query viene " "aperta" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Scheda predefinita per la finestra query" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Altezza finestra query (in pixels)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Altezza finestra query" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Larghezza finestra query (in pixel)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Larghezza finestra query" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Seleziona le funzioni che saranno usate per la conversione dell'insieme di " "caratteri" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Motore di registrazione" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Rinomina la tabella in" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Repeti le instestazioni ogni X celle, [kbd]0[/kbd] disattiva questa " "funzionalitá" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Ripeti intestazioni" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Mostra il pulsante della guida invece del testo della Documentazione" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Mostra il pulsante della guida" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "La cartella sul server dove é possibile salvare le esportazioni" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Salva cartella" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Lascia vuoto se non usato" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "Ordine dei permessi del host" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Lascia vuoto per i valori predefiniti" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "Regole dei permessi del host" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Consenti login senza la parola chiave" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Consenti login per utenti root" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "Il nome del Basic Auth Realm da visualizzare durante HTTP Auth" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "Realm HTTP" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3729,19 +3740,19 @@ msgstr "" "autenticazione hardware SweKey[/a] (not salvata nella cartella document " "root; percorso consigliato: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "File di configurazione SweKey" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Metodo di autenticazione da usare" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Tipo di autenticazione" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3749,11 +3760,11 @@ msgstr "" "Lascia vuoto per disattivare il supporto per i [a@http://wiki.phpmyadmin.net/" "pma/bookmark]segnalibri[/a], consigliato: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Tabella dei segnalibri" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3761,31 +3772,31 @@ msgstr "" "Lascia vuoto per diattivare i commenti/tipi mime per i campi, consigliato: " "[kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Tabella delle informazioni sui campi" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Comprimi la connessione al server MySQL" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Comprimi la connessione" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Come connettersi al server, lascia [kbd]tcp[/kbd] se non sei sicuro" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Tipo di connessione" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Parola chiave per l'utente di controllo" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3794,19 +3805,19 @@ msgstr "" "ulteriori informazioni disponibili nella [a@http://wiki.phpmyadmin.net/pma/" "controluser]wiki[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Utente di controllo" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Conta le tabelle quando la lista dei database viene mostrata" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Conta tabbelle" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3814,11 +3825,11 @@ msgstr "" "Lascia vuoto disattivare il supporto per Designer, consigliato: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Tabbella di design assistito" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3826,29 +3837,29 @@ msgstr "" "Maggiori informazioni su [a@http://sf.net/support/tracker.php?aid=1849494]" "PMA bug tracker[/a] e [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Disabilita l'utilizzo di INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Il tipo di estensione PHP da utilizzare; dovresti utilizzare mysqli, se " "questo é supportato" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Estensioni PHP da utilizzare" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Nascondi i database corrispondenti all'espressione regolare (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Nascondi i database" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3856,31 +3867,31 @@ msgstr "" "Lascia vuoto per disabilitare il supporto per la cronologia delle query SQL, " "consigliato: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "Tabella di cronologia delle query SQL" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Il nome host dove is server MySQL é in esecuzione" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Nome host del server" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "Url di logout" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Prova ad effettuare la connessione senza una parola chiave" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Effettua connessione senza la parola chiave" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3895,30 +3906,30 @@ msgstr "" "utilizzare [kbd]*[/ kbd] alla fine per mostrare il resto in ordine " "alfabetico." -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Mostra solo i database dalla lista" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Lascia vuoto su il config auth non é utilizzato" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Parola chiave per config auth" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Lascia vuoto disabilitare il supporto per i schemi PDF, consigliato: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "Schema PDF: tabella delle pagine" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3929,20 +3940,20 @@ msgstr "" "Lascia vuoto per disabilitarne il supporto. Consigliato: [kbd]phpmyadmin[/" "kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Nome del database" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "La dove il server MySQL ascolta, lascia vuoto per il valore predefinito" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Porta del server" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -3954,13 +3965,13 @@ msgstr "" "Lascia vuoto per disabilitare la memorizzazione delle preferenze degli " "utenti nel database, consigliato: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Ricorda nome utente" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3968,19 +3979,19 @@ msgstr "" "Lascia vuoto per disabilitare il supporto per [a@http://wiki.phpmyadmin.net/" "pma/relation]relation-links[/a], consigliato: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Tabella relazionale" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "Commando SQL per ritrovare i database disponibili" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "Commando SHOW DATABASES" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3988,44 +3999,44 @@ msgstr "" "Vedi [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipi di " "autenticazione[/a] per un esempio" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Nome della sessione di signon" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "L'URL di signon" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Il socket sul quale il server MySQL ascolta, lascia vuoto per il valore " "predefinito" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Socket del server" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "Abilita SSL per la connessione al server MySQL" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Utilizza SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Lascia vuoto per disabilita il supporto dello schema PDF, consigliato: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "Schema PDF: coordinate delle tabelle" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4033,11 +4044,11 @@ msgstr "" "La tabella che descrive i campi di visualizzazione, lascia vuoto per " "disabilitarne il supporto; consigliato: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Visualizza i campi della tabella" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4049,13 +4060,13 @@ msgstr "" "Lascia vuoto per disabilitare la memorizzazione delle preferenze degli " "utenti nel database, consigliato: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "Tabella di memorizzazione delle preferenze degli utenti" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4063,11 +4074,11 @@ msgstr "" "Se aggiungere un instruzione DROP DATABASE IF EXISTS sulla prima linea del " "log quando viene creato un database." -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "Aggiungi DROP DATABASE" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4075,11 +4086,11 @@ msgstr "" "Se aggiungere un instruzione DROP TABLE IF EXISTS sulla prima linea del log " "quando viene creato una tabella." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "Aggiungi DROP TABLE" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4087,21 +4098,21 @@ msgstr "" "Se aggiungere un instruzione DROP VIEW IF EXISTS sulla prima linea del log " "quando viene creata una vista." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "Aggiungi DROP VIEW" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Definisce la lista delle istruzioni the l'auto-creazione utilizza per le " "nuove versioni." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "Istruzioni da monitorare" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4109,11 +4120,11 @@ msgstr "" "Lascia vuoto per disabilitare il supporto per il monitoriaggio delle query " "SQL, consigliato: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "Tabella de monitoraggio delle query SQL" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4121,11 +4132,11 @@ msgstr "" "Se il meccanismo di monitoraggio crea versioni per tabelle e viste " "automaticamente." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Crea versioni automaticamente" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -4133,15 +4144,15 @@ msgstr "" "Lascia vuoto per disabilitare la memorizzazione delle preferenze degli " "utenti nel database, consigliato: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "Tabella di memorizzazione delle preferenze degli utenti" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "Utente per il config auth" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4149,11 +4160,11 @@ msgstr "" "Disabilita se sai che le tua tabelle pma_* sono aggiornate. Questo previene " "dei controlli di compatibilitá e cosí aumente le prestazioni" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Controllo dettagliato" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4161,20 +4172,20 @@ msgstr "" "Una descrizione di facile utilizzo di questo server. Lascia vuoto per " "visualizzare il nome host, invece." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Nome completo di questo server" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Se visualizzare all'utente un pulsante "mostra tutte le (righe)"" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Consenti la visualizzazione di tutte le righe" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4185,15 +4196,15 @@ msgstr "" "di configurazione; questo non limita la capacità di eseguire lo stesso " "comando direttamente" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Mostra il modulo di modifica della parola chiave" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Mostra il modulo di creazione dei database" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -4201,20 +4212,20 @@ msgstr "" "Stabilisce se i tipi dei campi dovrebbero essere visualizzati inizialmente " "nella modalitá di inserimento/modifica" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Mostra i tipi di campi" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" "Visualizza i campi delle funzioni nelle modalita di inserimento/modifica" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Mostra i campi delle funzioni" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4222,35 +4233,35 @@ msgstr "" "Mostra un collegamento all'output di [a@http://php.net/manual/function." "phpinfo.php]phpinfo()[/a]" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Mostra un collegamento a phpinfo()" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Mostra informazioni dettagliate del server MySQL" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Definisce se le query SQL generate da phpMyAdmin devrebbero essere " "visualizzate" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Mostra query SQL" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Consenti la visualizzazione delle statistiche dei database e tabelle (ad " "esempio spazio utilizzato)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Mostra statistiche" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4258,11 +4269,11 @@ msgstr "" "Se i tooltip sono abilitati e un commento del database è impostato, questo " "scambierá il commento ed il vero nome" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Visualizza i commenti dei database, invece dei nomi corrispondenti" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4275,30 +4286,30 @@ msgstr "" "cartella é chiamata come l'alias, ma il nome della tabella stessa rimane " "invariato" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Visualizza i commenti delle tabelle, invece dei nomi corrispondenti" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Visualizza i commenti delle tabelle nei tooltip" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Segna le tabelle come utilizzate e quindi consenti la visualizzazione dei " "database con delle tabelle bloccate" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Ignora le tabelle bloccate" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "Richiede l'abilitazione del validatore SQL" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4308,7 +4319,7 @@ msgstr "Richiede l'abilitazione del validatore SQL" msgid "Password" msgstr "Password" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4316,11 +4327,11 @@ msgstr "" "[strong]Avviso:[/strong] richiede l'estensione SOAP di PHP o l'installazione " "di PEAR SOAP" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "Abilita il validatore SQL" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4328,12 +4339,12 @@ msgstr "" "Se hai un nome utente personalizzato, specificalo qui (il predefinito é [kbd]" "anonymous[/kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Nome utente" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4341,19 +4352,19 @@ msgstr "" "Suggerisci un nome di database nel modulo \"Crea database\" (se possibile) o " "lascia il campo di testo vuoto" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Suggerisci un nuovo nome per il database" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Mostra un avviso sulla pagina principale se Suhosin é stato trovato" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Avviso Suhosin" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4362,11 +4373,11 @@ msgstr "" "valore incrementato per le aree di testo delle query SQL (x2) e per la " "finestra di query (x1.25)" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "Campi di aree di testo" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4375,31 +4386,31 @@ msgstr "" "valore incrementato per le aree di testo delle query SQL (x2) e per la " "finestra di query (x1.25)" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "Righe con aree di testo" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "Totolo della finestra del browser quando un database é selezionato" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "Totolo della finestra del browser quando nessun oggetto é selezionato" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Titolo Predefinito" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "Totolo della finestra del browser quando un server é selezionato" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "Totolo della finestra del browser quando una tebella é selezionata" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4411,28 +4422,28 @@ msgstr "" "HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente dalla proxy 1.2.3.4[br]" "[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "Lista dei proxy di fiducia per filtarre gli IP, accetta/rifiuta" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" "La cartella sul server dove é possibile caricare i file per l'importazione" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Cartella dei upload" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Consenti la ricerca all'interno di un intero database" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Utilizza la ricerca dei datatbase" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4440,11 +4451,11 @@ msgstr "" "Quando disabilitato, gli utenti non possono impostare alcune opzioni " "sottostanti, indipendentemente dalla casella di controllo sulla destra" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "Abilita la tabulazione per i Sviluppatori nelle impostazioni" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4454,21 +4465,21 @@ msgstr "" "istruzioni. Vedi libraries/import.lib.php per i valori predefiniti di quante " "instruzioni possono essere contenute in una query." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Instruzioni multiple verbose" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Controlla l'ultima versione" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" "Abilita la prova per la versione piú recente sulla pagina principale di " "phpMyAdmin" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4476,7 +4487,7 @@ msgstr "" msgid "Version check" msgstr "Controllo versione" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4484,7 +4495,7 @@ msgstr "" "Abilita la compressione [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP" "[/a] per le operazioni di importazione ed esportazione" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4504,61 +4515,61 @@ msgstr "Autenticazione HTTP" msgid "Signon authentication" msgstr "Autenticazione via signon" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV usando LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Workbook" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Foglio di calcolo nel formato Open Document" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "Veloce" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "Personalizzazato" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Opzioni di esportazione per database" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV per dati MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Testo nel formato Open Document" @@ -4653,7 +4664,7 @@ msgstr "Routines" msgid "Return type" msgstr "Tipo di risultato" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5053,58 +5064,58 @@ msgstr "Mostra contenuti BLOB" msgid "Browser transformation" msgstr "Trasformazione del browser" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Copia" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "La riga è stata cancellata" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Rimuovi" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "nella query" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Mostrando i righi" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "totale" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "La query ha impiegato %01.4f sec" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Operazioni sui risultati della query" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Vista stampa (con full text)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "Mostra diagramma" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "Crea vista" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Link non trovato" @@ -10327,3 +10338,9 @@ msgstr "Nome VISTA" #: view_operations.php:91 msgid "Rename view to" msgstr "Rinomina la vista in" + +#~ msgid "Show table row links on left side" +#~ msgstr "Mostra collegamenti alle righe della tabbella sulla sinistra" + +#~ msgid "Show table row links on right side" +#~ msgstr "Mostra i collegamenti alle righe sulla destra" diff --git a/po/ja.po b/po/ja.po index 55651aab24..7434dbc088 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-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-05-31 12:04+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" @@ -199,7 +199,7 @@ msgstr "コメント" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "いいえ" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -354,7 +354,7 @@ msgid "Edit or export relational schema" msgstr "リレーショナルスキーマを編集またはエクスポートする" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -420,19 +420,19 @@ msgid "visual builder" msgstr "Visual query builder" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "ソート" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "昇順" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -539,8 +539,8 @@ msgstr "表示" msgid "Delete the matches for the %s table?" msgstr "テーブル %s に対して条件に一致したものを削除しますか?" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -608,7 +608,7 @@ msgstr "SQL コマンドの追跡はアクティブです。" msgid "Tracking is not active." msgstr "SQL コマンドの追跡は非アクティブです。" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -636,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +660,15 @@ msgid "Check tables having overhead" msgstr "オーバーヘッドのあるテーブルを確認する" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "印刷用画面" @@ -722,7 +722,7 @@ msgstr "データ辞書" msgid "Tracked tables" msgstr "SQL コマンドを追跡しているテーブル" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -923,7 +923,7 @@ msgstr "" "PHP の時間制限を伸ばさない限りこのデータのインポートはできません" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1142,8 +1142,8 @@ msgstr "インライン編集" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1855,13 +1855,13 @@ msgstr "共有" msgid "Tables" msgstr "テーブル" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1961,7 +1961,7 @@ msgstr "サーバのインデックスが不正です: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "サーバ %1$s のホスト名が不正です。設定を確認してください" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2023,7 +2023,7 @@ msgstr "MySQLのメッセージ: " msgid "Failed to connect to SQL validator!" msgstr "SQL 検証への接続に失敗しました!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "EXPLAIN で確認" @@ -2035,11 +2035,11 @@ msgstr "SQL の EXPLAIN 解析をスキップ" msgid "Without PHP Code" msgstr "PHP コードを省略" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP コードの作成" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "再描画" @@ -2048,7 +2048,7 @@ msgstr "再描画" msgid "Skip Validate SQL" msgstr "SQL の検証をスキップ" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "SQL の検証" @@ -2146,11 +2146,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s の機能には既知のバグがあります。%s をご覧ください" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2196,62 +2196,77 @@ msgstr "指定したアップロードディレクトリが利用できません msgid "There are no files to upload" msgstr "アップロードファイルがありません" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "両方" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "高さ" + +#: libraries/config.values.php:75 msgid "Open" msgstr "開いておく" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "閉じておく" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "構造" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "データ" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "構造とデータ" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "簡易 - 設定するための最小限のオプションのみ表示" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "詳細 - 設定に必要な全てのオプションを表示" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "詳細 - 上とほぼ同じ、ただし簡易/詳細の選択はなし" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "完全な INSERT 文を作成する" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "長い INSERT 文を作成する" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "上の両方を行う" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "上のどちらでもない" @@ -2336,7 +2351,7 @@ msgid "Set value: %s" msgstr "値「%s」を設定" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "デフォルト値に戻す" @@ -2820,10 +2835,10 @@ msgstr "閲覧モードの詳細設定" msgid "Customize default options" msgstr "デフォルトオプションの詳細設定" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3413,7 +3428,7 @@ msgid "Maximum displayed SQL length" msgstr "表示できる SQL 文の最大の長さ" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "ユーザはこれより高い値を設定することはできません。" @@ -3475,38 +3490,34 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "編集、インライン編集、コピー、削除のリンクことです。" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "左側にテーブルの行リンクを表示する" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "右側にテーブルの行リンクを表示する" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "テーブルやデータベースの名前のソートを人間が行うような手法で行います。" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "自然順" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "「アイコンのみ」、「テキストのみ」、「両方」のいずれかが使えます。" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "ナビゲーションバーのアイコン" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "HTTP 転送の高速化のために GZip の出力バッファリングを使用します。" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZipの出力バッファリング" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3514,19 +3525,19 @@ msgstr "" "[kbd]SMART[/kbd] とは TIME、DATE、DATETIME、TIMESTAMP 型のカラムに対しては " "DESC、それ以外はASCの並び順にします。" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "デフォルトの並び順" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "MySQL データベースへの永続的な接続を使用します。" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "永続的な接続" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3535,23 +3546,23 @@ msgstr "" "phpMyAdmin の設定保存に必要なテーブルを見つけることができなかった場合、データ" "ベースの構造詳細ページに表示されるデフォルトの警告を無効にします。" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "phpMyAdmin の設定保存用テーブルが不明" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "アイコンによるテーブルの操作" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "BLOB および BINARY カラムへの編集を禁止します。" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "バイナリカラムの保護" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3561,119 +3572,119 @@ msgstr "" "の設定保存場所の設定が必要です)。無効にした場合、クエリ履歴の表示に " "JavaScript を利用します(ウィンドウを閉じると履歴は消えます)。" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "永続的なクエリの履歴" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "履歴に残るクエリの件数。" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "クエリ履歴の長さ" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "新しいクエリウィンドウを開いたときに開いておくタブ。" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "クエリウィンドウのデフォルトタブ" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "クエリウィンドウの高さ(ピクセルで指定)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "クエリウィンドウの高さ" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "クエリウィンドウの幅(ピクセルで指定)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "クエリウィンドウの幅" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "文字セットの変換に使用される関数を選択します。" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "コード変換エンジン" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "リネーム後のテーブル名" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "カラム名ヘッダを何行に置きに挿入するか。[kbd]0[/kbd] でこの機能は無効になりま" "す。" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "カラム名ヘッダの繰り返し" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "ドキュメントテキストの代わりにヘルプボタンを表示します。" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "ヘルプボタンの表示" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "エクスポートをサーバ上に保存できるディレクトリ" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "保存ディレクトリ" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "使用しない場合は空欄にします。" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "ホストの認証順番" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "デフォルトにする場合は空欄にします。" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "ホスト認証のルール" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "パスワードなしログインの許可" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "root ログインの許可" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP 認証を行うときに表示される HTTP 基本認証領域名" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "HTTP 領域" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3682,19 +3693,19 @@ msgstr "" "[a@http://swekey.com]SweKey ハードウェア認証[/a]用の設定ファイルのパス (ド" "キュメントルートには配置しないこと。/etc/swekey.conf がいいでしょう。)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "SweKey 設定ファイル" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "使用する認証方法" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "認証タイプ" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3702,11 +3713,11 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/bookmark]ブックマーク[/a]機能を使わない場合" "は空欄にします。[kbd]pma_bookmark[/kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "ブックマークテーブル" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3714,31 +3725,31 @@ msgstr "" "カラムのコメントと MIME タイプ機能を使わない場合は空欄にします。[kbd]" "pma_column_info[/kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "カラム情報テーブル" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "MySQL サーバと圧縮プロトコルで接続します。" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "圧縮通信を行う" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "サーバへの接続方法。確信がなければ [kbd]tcp[/kbd] のままにします。" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "接続方法" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "phpMyAdmin ユーザのパスワード" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3746,19 +3757,19 @@ msgstr "" "権限を制限して設定しておいた特別な MySQL ユーザを使います。詳細は [a@http://" "wiki.phpmyadmin.net/pma/controluser]wiki[/a] を参照してください。" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "phpMyAdmin ユーザ" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "データベースリストを表示するときにテーブル数も表示するかどうか。" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "テーブル数" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3766,11 +3777,11 @@ msgstr "" "デザイナを使わない場合は空欄にします。[kbd]pma_designer_coords[/kbd] としてお" "くのがいいでしょう。" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "デザイナテーブル" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3778,27 +3789,27 @@ msgstr "" "詳細は [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug tracker[/a] " "と [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]。" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA の使用を無効にする" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "mysqli がサポートされているなら、そちらを使うべきでしょう。" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "使用する PHP 拡張" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "正規表現 (PCRE) で一致するデータベースを非表示にします" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "非表示にするデータベース" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3806,31 +3817,31 @@ msgstr "" "SQL クエリの履歴機能を使わない場合は空欄にします。[kbd]pma_history[/kbd] とし" "ておくのがいいでしょう。" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "SQL クエリ履歴テーブル" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "稼働している MySQL サーバのホスト名" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "サーバのホスト名" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "ログアウト URL" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "パスワード無しでの接続を試みます" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "パスワード無しで接続する" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3846,30 +3857,30 @@ msgstr "" "入力しておきます。[kbd]'*'[/kbd] は残ったものをアルファベット順に並べて表示す" "る働きをします。" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "リスト化したデータベースだけを表示する" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "config 認証を使用しない場合は空欄のままにします。" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "config 認証用のパスワード" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "PDF スキーマを使用しない場合は空欄のままにします。[kbd]pma_pdf_pages[/kbd] と" "しておくのがいいでしょう。" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF スキーマ:ページテーブル" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3880,20 +3891,20 @@ msgstr "" "れらの機能を使わない場合は空欄にします。[kbd]phpmyadmin[/kbd] としておくのが" "いいでしょう。" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "データベース名" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "MySQL サーバで開いているポート。デフォルトにしたい場合は空欄のままにします。" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "サーバのポート" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -3905,13 +3916,13 @@ msgstr "" "データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_config[/" "kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Currently opened table" msgid "Recently used table" msgstr "現在開いているテーブル" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3919,19 +3930,19 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]リレーションリンク[/a]機能を使わな" "い場合は空欄にします。[kbd]pma_relation[/kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "リレーションテーブル" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "使用可能なデータベースを取得するための SQL コマンド" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES コマンド" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3939,44 +3950,44 @@ msgstr "" "設定例は[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]認証モード[/a]を" "参照してください。" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "サインオンセッション名" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "サインオン URL" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "MySQL サーバで開いているソケット。デフォルトにしたい場合は空欄のままにしま" "す。" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "サーバのソケット" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "MySQL サーバへの接続において SSL を有効にします。" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "SSL の使用" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "PDF スキーマを使用しない場合は空欄にします。[kbd]pma_table_coords[/kbd] とし" "ておくのがいいでしょう。" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF スキーマ:テーブルの座標" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -3984,11 +3995,11 @@ msgstr "" "表示するカラムを記述するためのテーブル。使用しない場合は空欄にします。[kbd]" "pma_table_info[/kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "表示するカラムためのテーブル" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4000,13 +4011,13 @@ msgstr "" "データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_config[/" "kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "ユーザ設定保存テーブル" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4014,11 +4025,11 @@ msgstr "" "データベースを作成するときにログの最初の行に DROP DATABASE IF EXISTS コマンド" "を追加するかどうか。" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "DROP DATABASE を追加" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4026,11 +4037,11 @@ msgstr "" "テーブルを作成するときにログの最初の行に DROP TABLE IF EXISTS コマンドを追加" "するかどうか。" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "DROP TABLE を追加" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4038,19 +4049,19 @@ msgstr "" "ビューを作成するときにログの最初の行に DROP VIEW IF EXISTS コマンドを追加する" "かどうか。" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "DROP VIEW を追加" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "新しいバージョンに対して自動生成使用するコマンドのリストを定義します。" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "追跡するコマンド" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4058,11 +4069,11 @@ msgstr "" "SQL コマンドの追跡機能を使わない場合は空欄にします。[kbd]pma_tracking[/kbd] " "としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "SQL コマンド追跡テーブル" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4070,11 +4081,11 @@ msgstr "" "SQL コマンドの追跡機能が、テーブルやビューに対して自動的にバージョンを作成す" "るかどうか。" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "バージョンの自動作成" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -4082,15 +4093,15 @@ msgstr "" "データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_config[/" "kbd] としておくのがいいでしょう。" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "ユーザ設定保存テーブル" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "config 認証用のユーザ" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4098,11 +4109,11 @@ msgstr "" "pma_* テーブルが最新のものであることがわかっている場合、無効にします。これ" "は、互換性チェックをしないことにより、パフォーマンスを向上させます。" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "冗長なチェック" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4110,19 +4121,19 @@ msgstr "" "このサーバのわかりやすい説明。代わりにホスト名を表示するには、空欄のままにし" "ます。" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "このサーバの詳細な名前" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "「すべて表示」ボタンを表示するかどうか。" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "全ての行の表示を許可する" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4132,33 +4143,33 @@ msgstr "" "ください。なぜならパスワードが設定ファイルに直接書き込まれているからです。こ" "れは同じコマンドを直接実行する機能を制限するものではありません。" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "パスワード変更フォームの表示" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "「新規データベース作成」部分を表示する" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "編集/挿入モードで種別フィールドを表示するかどうか定義します。" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "種別フィールドの表示" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "編集/挿入モードで関数フィールドを表示します。" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "関数フィールドの表示" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4166,32 +4177,32 @@ msgstr "" "[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] の結果へのリンク" "を表示します" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "phpinfo() リンクの表示する" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "詳細な MySQL サーバ情報を表示する" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "phpMyAdmin によって生成される SQL クエリを表示するかどうかを定義します。" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "SQL クエリの表示" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "データベースやテーブルの状態(領域の使用状況など)の表示を許可します。" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "統計を表示する" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4199,11 +4210,11 @@ msgstr "" "ツールチップが有効でデータベースのコメントが設定されている場合、名前とコメン" "トを入れ替えて表示する形なります。" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "データベースの名前の代わりにコメントを表示する" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4215,30 +4226,30 @@ msgstr "" "されます。そのフォルダはエイリアスのように呼び出されるだけで、テーブル名自体" "はそのまま変わることありません。" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "テーブルの名前の代わりにコメントを表示する" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "ツールチップにテーブルのコメントを表示する" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "使われているテーブルには印をして、テーブルがロックされていても可能であれば" "データベースを閲覧します。" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "ロックされているテーブルをスキップする" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "SQL 検証を有効にするには必要です。" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4248,7 +4259,7 @@ msgstr "SQL 検証を有効にするには必要です。" msgid "Password" msgstr "パスワード" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4256,11 +4267,11 @@ msgstr "" "[strong]注意:[/strong] PHP SOAP 拡張か PEAR SOAP がインストールされている必" "要があります。" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "SQL 検証を有効にする" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4268,12 +4279,12 @@ msgstr "" "ユーザ名を所持している場合は、ここに記述します(デフォルトは [kbd]anonymous[/" "kbd])。" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "ユーザ名" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4281,21 +4292,21 @@ msgstr "" "「データベースの作成」フォームで(可能であれば)データベース名を提案します。" "そうでなければ、テキストフィールドを空欄にします。" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "新しいデータベース名の提案" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" "Suhosin が検出された場合、警告をメインページに表示します。チェックを入れると" "このメッセージを表示しないようにします。" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Suhosin 警告" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4303,11 +4314,11 @@ msgstr "" "編集モードでの textarea の1行の文字数。SQL クエリ用のでは 2 倍、クエリウィン" "ドウに対しては 1.25 倍になります。" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "textarea の 1 行の文字数" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4315,31 +4326,31 @@ msgstr "" "編集モードでの textarea の行数。SQL クエリ用のでは 2 倍、クエリウィンドウに対" "しては 1.25 倍になります。" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "textarea の行数" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "データベース選択時のブラウザのウィンドウタイトル" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "何も選択していないときのブラウザのウィンドウタイトル" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "デフォルトタイトル" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "サーバ選択時のブラウザのウィンドウタイトル" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "テーブル選択時のブラウザのウィンドウタイトル" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4351,27 +4362,27 @@ msgstr "" "HTTP_X_FORWARDED_FOR (X-Forwarded-For) ヘッダを信頼するように指定することにな" "ります。[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "信頼されたプロキシのリスト(IP アドレスの許可/拒否)" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "インポート用ファイルをアップロードできるサーバ上のディレクトリ" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "アップロードディレクトリ" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "全てのデータベース内を検索することを許可します。" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "データベース検索を使用する" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4379,11 +4390,11 @@ msgstr "" "無効にすると、右端のチェックボックスに関係なく、ユーザが以下のオプションを設" "定することはできません。" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "設定に開発者向けタブを追加する" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4393,19 +4404,19 @@ msgstr "" "トでは表示されます。どのように複数のクエリに表示を含めるかは、ソース " "libraries/import.lib.php を参照してください。" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "マルチクエリの冗長表示" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "バージョンアップの確認" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "phpMyAdmin のメインページ上で最終バージョンチェックを有効にします。" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4413,7 +4424,7 @@ msgstr "phpMyAdmin のメインページ上で最終バージョンチェック msgid "Version check" msgstr "バージョンの確認" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4421,7 +4432,7 @@ msgstr "" "インポートおよびエクスポートの操作に対して [a@http://ja.wikipedia.org/wiki/" "ZIP_(ファイルフォーマット)]ZIP[/a] 圧縮を有効にします。" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4441,61 +4452,61 @@ msgstr "HTTP 認証" msgid "Signon authentication" msgstr "サインオン認証" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "LOAD DATA 文を使用した CSV の読み込み" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS ワークブック" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX ワークブック" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document スプレッドシート" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "簡易" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "詳細" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "データベースエクスポートオプション" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel 用の CSV" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document テキスト" @@ -4582,7 +4593,7 @@ msgstr "ルーチン" msgid "Return type" msgstr "返り値の種類" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4978,58 +4989,58 @@ msgstr "BLOB の内容を表示する" msgid "Browser transformation" msgstr "ブラウザ変換機能" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "コピー" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "行を削除しました" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "停止" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "行/クエリ" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "行の表示" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "合計" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "クエリの実行時間 %01.4f 秒" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "クエリ結果操作" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "印刷用画面 (全テキストを含む)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "グラフで表示する" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "ビューを作成" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "リンク先が見つかりません" @@ -10135,6 +10146,12 @@ msgstr "ビューの名前" msgid "Rename view to" msgstr "リネーム後のビューの名前" +#~ msgid "Show table row links on left side" +#~ msgstr "左側にテーブルの行リンクを表示する" + +#~ msgid "Show table row links on right side" +#~ msgstr "右側にテーブルの行リンクを表示する" + #~ msgid "Delete the matches for the " #~ msgstr "テーブルのデータをダンプしています" diff --git a/po/ka.po b/po/ka.po index 6be7725cc4..c7e9b8c8d6 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" @@ -200,7 +200,7 @@ msgstr "კომენტარები" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -216,7 +216,7 @@ msgstr "არა" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -363,7 +363,7 @@ msgid "Edit or export relational schema" msgstr "Relational schema" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -431,19 +431,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "დალაგება" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "ზრდადობით" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -557,8 +557,8 @@ msgstr "არჩევა" msgid "Delete the matches for the %s table?" msgstr "Dumping data for table" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -632,7 +632,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -662,20 +662,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +686,15 @@ msgid "Check tables having overhead" msgstr "Check tables having overhead" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "ხედის ამობეჭდვა" @@ -754,7 +754,7 @@ msgstr "მონაცემების ლექსიკონი" msgid "Tracked tables" msgstr "დაბლოკილი ცხრილების გამოტოვება" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -957,7 +957,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:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1219,8 +1219,8 @@ msgstr "ძრავები" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -2002,13 +2002,13 @@ msgstr "" msgid "Tables" msgstr "ცხრილები" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2120,7 +2120,7 @@ msgstr "Invalid server index: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2184,7 +2184,7 @@ msgstr "MySQL-მა თქვა: " msgid "Failed to connect to SQL validator!" msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "SQL-ის ახსნა" @@ -2196,11 +2196,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "PHP კოდის გარეშე" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP კოდის შექმნა" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "განახლება" @@ -2209,7 +2209,7 @@ msgstr "განახლება" msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Validate SQL" @@ -2309,11 +2309,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2360,21 +2360,34 @@ msgstr "The directory you set for upload work cannot be reached" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Unclosed quote" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2382,13 +2395,13 @@ msgstr "Unclosed quote" msgid "structure" msgstr "სტრუქტურა" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2396,35 +2409,35 @@ msgstr "" msgid "structure and data" msgstr "სტრუქტურა და მონაცემები" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "სრული ჩასმები" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Extended inserts" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2514,7 +2527,7 @@ msgid "Set value: %s" msgstr "Set value: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Restore default value" @@ -3033,10 +3046,10 @@ msgstr "Customize browse mode" msgid "Customize default options" msgstr "Customize default export options" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3655,7 +3668,7 @@ msgid "Maximum displayed SQL length" msgstr "Maximum displayed SQL length" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3716,42 +3729,36 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -#, fuzzy -#| msgid "Show logo in left frame" -msgid "Show table row links on left side" -msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება" - -#: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" +msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Alter table order by" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Use only icons, only text or both" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Iconic navigation bar" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "use GZip output buffering for increased speed in HTTP transfers" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip output buffering" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -3763,46 +3770,46 @@ msgstr "" "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Default sorting order" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Use persistent connections to MySQL databases" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Persistent connections" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Iconic table operations" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 #, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "Disallow BLOB and BINARY fields from editing" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Protect binary fields" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3815,129 +3822,129 @@ msgstr "" "Enable if you want DB-based query history (requires pmadb). If disabled, " "this utilizes JS-routines to display query history (lost by window close)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Permanent query history" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "How many queries are kept in history" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Query history length" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Tab displayed when opening a new query window" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Default query window tab" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Query window" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Query window" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Query window" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Select which functions will be used for character set conversion" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Recoding engine" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Rename table to" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Repair threads" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Directory where exports can be saved on server" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "დირექტორიის შენახვა" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Leave blank if not used" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Host authentication order" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Leave blank for defaults" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Host authentication rules" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "root-ით შესვლის ნებართვა" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3947,19 +3954,19 @@ msgstr "" "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "SweKey config file" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Authentication method to use" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "ავთენტიფიკაციის ტიპი" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3967,11 +3974,11 @@ msgstr "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "ცხრილის ჩანიშვნა" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3979,31 +3986,31 @@ msgstr "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Column information table" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "MySQL სერვერთან კავშირის შეკუმშვა" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "კავშირის შეკუმშვა" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "კავშირის ტიპი" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Control user password" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4011,19 +4018,19 @@ msgstr "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Control user" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Count tables when showing database list" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "ცხრილების დათვლა" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4031,11 +4038,11 @@ msgstr "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Designer table" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -4043,27 +4050,27 @@ msgstr "" "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]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA-ის გამოყენების აკრძალვა" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "What PHP extension to use; you should use mysqli if supported" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "გამოსაყენებელი PHP გაფართოება" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Hide databases matching regular expression (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "მონაცემთა ბაზების დამალვა" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4071,31 +4078,31 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "SQL query history table" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Hostname where MySQL server is running" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "სერვერის ჰოსტის სახელი" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "Logout URL" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Try to connect without password" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "პაროლის გარეშე დაკავშირება" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -4110,29 +4117,29 @@ msgstr "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use 'my\\_db' and not 'my_db'" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Show only listed databases" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Leave empty if not using config auth" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Password for config auth" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF schema: pages table" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4142,21 +4149,21 @@ msgstr "" "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "მონაცემთა ბაზა" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "Port on which MySQL server is listening, leave empty for default" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "სერვერის პორტი" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4168,13 +4175,13 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Recall user name" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4182,19 +4189,19 @@ msgstr "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Relation table" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "SQL command to fetch available databases" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES command" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4202,42 +4209,42 @@ msgstr "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Signon session name" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "Socket on which MySQL server is listening, leave empty for default" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Server socket" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 #, fuzzy msgid "Enable SSL for connection to MySQL server" msgstr "MySQL სერვერთან კავშირის შეკუმშვა" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "SSL-ის გამოყენება" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF schema: table coordinates" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -4249,13 +4256,13 @@ msgstr "" "Table to describe the display fields, leave blank for no support; suggested: " "[kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Display fields table" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4267,53 +4274,53 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragment table" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Statements" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4325,25 +4332,25 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL query history table" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Automatic recovery mode" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4355,15 +4362,15 @@ msgstr "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "User for config auth" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4371,11 +4378,11 @@ msgstr "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Verbose check" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4383,11 +4390,11 @@ msgstr "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Verbose name of this server" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" @@ -4395,11 +4402,11 @@ msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Whether a user should be displayed a "show all (records)" button" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Allow to display all the rows" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4409,35 +4416,35 @@ msgstr "" "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "პაროლის შეცვლის ფორმის ჩვენება" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "მონაცემთა ბაზის შექმნის ფორმის ჩვენება" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Show open tables" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Display the function fields in edit/insert mode" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "ფუნქციების ველების ჩვენება" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4445,32 +4452,32 @@ msgstr "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "phpinfo() ბმულის ჩვენება" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "MySQL სერვერის შესახებ დეტალური ინფორმაციის ჩვენება" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Defines whether SQL queries generated by phpMyAdmin should be displayed" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "SQL მოთხოვნების ჩვენება" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "Allow to display database and table statistics (eg. space usage)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "სტატისტიკის ჩევნება" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4478,11 +4485,11 @@ msgstr "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Display database comment instead of its name" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4494,29 +4501,29 @@ msgstr "" "['LeftFrameTableSeparator'] directive, so only the folder is called like the " "alias, the table name itself stays unchanged" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Display table comment instead of its name" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Display table comments in tooltips" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Mark used tables and make it possible to show databases with locked tables" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "დაბლოკილი ცხრილების გამოტოვება" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4526,29 +4533,29 @@ msgstr "" msgid "Password" msgstr "პაროლი" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "მომხმარებელი:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4556,65 +4563,65 @@ msgstr "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Suggest new database name" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR textarea columns" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR textarea rows" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Default table tab" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4626,37 +4633,37 @@ msgstr "" "For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "List of trusted proxies for IP allow/deny" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "Directory on server where you can upload files for import" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "ატვირთვის დირექტორია" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Allow for searching inside the entire database" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Use database search" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4666,19 +4673,19 @@ msgstr "" "libraries/import.lib.php for defaults on how many queries a statement may " "contain." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Verbose multiple statements" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "უკანასკნელ ვერსიაზე შემოწმება" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4686,7 +4693,7 @@ msgstr "" msgid "Version check" msgstr "ვერსიის შემოწმება" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4694,7 +4701,7 @@ msgstr "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4722,63 +4729,63 @@ msgstr "Host authentication order" msgid "Signon authentication" msgstr "Host authentication order" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Custom color" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "მონაცემთა ბაზის ექსპორტის პარამეტრები" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV MS Excel-თვის" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4865,7 +4872,7 @@ msgstr "Routines" msgid "Return type" msgstr "Return type" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5318,61 +5325,61 @@ msgstr "Show BLOB contents" msgid "Browser transformation" msgstr "ინფორმაცია ბრაუზერის შესახებ" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "ასლი" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "სტრიქონი წაიშალა" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "მოთხოვნაში" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "სულ" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "მოთხოვნას დასჭირდა %01.4f წმ" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "ხედის ამობეჭდვა (სრული ტექსტებით)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF სქემის ჩვენება" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Create relation" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "ბმული ვერ მოიძებნა" @@ -10757,6 +10764,11 @@ msgstr "VIEW name" msgid "Rename view to" msgstr "Rename table to" +#, fuzzy +#~| msgid "Show logo in left frame" +#~ msgid "Show table row links on left side" +#~ msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება" + #~ msgid "Delete the matches for the " #~ msgstr "Dumping data for table" diff --git a/po/ko.po b/po/ko.po index 0cf6a28694..f7526b1c93 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-06-16 18:18+0200\n" "Last-Translator: \n" "Language-Team: korean \n" @@ -198,7 +198,7 @@ msgstr "설명(코멘트)" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -214,7 +214,7 @@ msgstr " 아니오 " #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -359,7 +359,7 @@ msgid "Edit or export relational schema" msgstr "" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -425,19 +425,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "정렬" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "오름차순" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -546,8 +546,8 @@ msgstr "보기" msgid "Delete the matches for the %s table?" msgstr "테이블의 덤프 데이터" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -618,7 +618,7 @@ msgstr "트래킹이 활성화되었습니다." msgid "Tracking is not active." msgstr "트래킹이 활성화되어 있지 않습니다." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -646,20 +646,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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" @@ -670,15 +670,15 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "인쇄용 보기" @@ -736,7 +736,7 @@ msgstr "데이터 사전 (전체 구조보기)" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -933,7 +933,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1180,8 +1180,8 @@ msgstr "" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1891,13 +1891,13 @@ msgstr "" msgid "Tables" msgstr "테이블 수" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2000,7 +2000,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2062,7 +2062,7 @@ msgstr "MySQL 메시지: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "SQL 해석" @@ -2074,11 +2074,11 @@ msgstr "해석(EXPLAIN) 생략" msgid "Without PHP Code" msgstr "PHP 코드 없이 보기" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP 코드 보기" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "" @@ -2087,7 +2087,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "SQL 검사 생략" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "SQL 검사" @@ -2185,11 +2185,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2236,21 +2236,34 @@ msgstr "업로드 디렉토리에 접근할 수 없습니다" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "따옴표(quote)가 닫히지 않았음" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2258,13 +2271,13 @@ msgstr "따옴표(quote)가 닫히지 않았음" msgid "structure" msgstr "구조" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2272,35 +2285,35 @@ msgstr "" msgid "structure and data" msgstr "구조와 데이터 모두" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "완전한 INSERT문 작성" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "확장된 inserts" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2387,7 +2400,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2880,10 +2893,10 @@ msgstr "" msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV 데이터" @@ -3457,7 +3470,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3514,351 +3527,347 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "다음 순서대로 테이블 정렬(변경)" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "질의 창" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "질의 창" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "질의 창" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "테이블 이름 바꾸기" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "연결 수" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "테이블이 없습니다" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "데이터베이스가 없습니다" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "서버 선택" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3867,321 +3876,321 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "데이터베이스명" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "서버 선택" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "테이블 분석" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "테이블 복구" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "서버 선택" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "열(칼럼) 설명(코멘트) 출력하기" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "명세" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy msgid "Automatically create versions" msgstr "서버 버전" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy msgid "Show field types" msgstr "테이블 보기" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "행(레코드) 통계" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4189,28 +4198,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4220,91 +4229,91 @@ msgstr "" msgid "Password" msgstr "암호" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "사용자명:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete columns" msgid "Textarea columns" msgstr "컬럼 추가/삭제" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "기본값" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4312,56 +4321,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4369,13 +4378,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4403,64 +4412,64 @@ msgstr "인증중입니다..." msgid "Signon authentication" msgstr "인증중입니다..." -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "사용자 지정 색상" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 #, fuzzy msgid "Database export options" msgstr "데이터베이스 사용량 통계" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS엑셀 CSV 데이터" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4547,7 +4556,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4970,61 +4979,61 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "선택한 줄(레코드)을 삭제 하였습니다." -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "질의(in query)" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "행(레코드) 보기" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "합계" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "질의 실행시간 %01.4f 초" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "열(칼럼) 설명(코멘트) 출력하기" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "서버 버전" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "" diff --git a/po/lt.po b/po/lt.po index 5885a4bfad..bb3a09e035 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-04-05 15:52+0200\n" "Last-Translator: Kęstutis \n" "Language-Team: lithuanian \n" @@ -199,7 +199,7 @@ msgstr "Komentarai" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "Ne" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -353,7 +353,7 @@ msgid "Edit or export relational schema" msgstr "Keisti arba eksportuoti ryšių schemą" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -421,19 +421,19 @@ msgid "visual builder" msgstr "vizuali daryklė" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Rūšiuoti" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Didėjimo tvarka" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -542,8 +542,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -613,7 +613,7 @@ msgstr "Sekimas yra aktyvus." msgid "Tracking is not active." msgstr "Sekimas yra neaktyvus." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -643,20 +643,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +667,15 @@ msgid "Check tables having overhead" msgstr "Pažymėti turinčias perteklių" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Spausdinti struktūrą" @@ -735,7 +735,7 @@ msgstr "Duomenų žodynas" msgid "Tracked tables" msgstr "Sekamos lentelės" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -933,7 +933,7 @@ msgstr "" "padidintumėte PHP laiko limitą." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1161,8 +1161,8 @@ msgstr "Redaguoti čia" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1880,13 +1880,13 @@ msgstr "padalintas" msgid "Tables" msgstr "Lentelės" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1987,7 +1987,7 @@ msgstr "Blogas serverio indeksas: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Blogas serverio %1$s hostname. Prašome peržiūrėti nustatymus." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2049,7 +2049,7 @@ msgstr "MySQL atsakymas: " msgid "Failed to connect to SQL validator!" msgstr "Nepavyko prisijungti prie SQL tikrintuvo!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Paaiškinti SQL" @@ -2061,11 +2061,11 @@ msgstr "Praleisti SQL užklausos aiškinimą" msgid "Without PHP Code" msgstr "be PHP kodo" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP kodas" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Atnaujinti" @@ -2074,7 +2074,7 @@ msgstr "Atnaujinti" msgid "Skip Validate SQL" msgstr "Praleisti SQL užklausos tikrinimą" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Patikrinti SQL užklausą" @@ -2172,11 +2172,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2222,63 +2222,78 @@ msgstr "Nepasiekimas nurodytas www-serverio katalogas atsiuntimams." msgid "There are no files to upload" msgstr "Nėra failų išsiuntimui" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Abu" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "Aukštis" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Atverti" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Uždarytas" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "struktūra" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "duomenys" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "struktūra ir duomenys" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Greitas - rodomi tik minimalūs nustatymai" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Individualizuotas - rodyti visus nustatymus" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" "Individualizuotas - kaip paminėtas, bet be greito/adaptuoto pasirinkimo" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "užbaigti įterpimus" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "praplėsti įterpimus" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "abu iš paminėtų" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "nei vieną iš paminėtų" @@ -2363,7 +2378,7 @@ msgid "Set value: %s" msgstr "Nustatyti reikšmę: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Atstatyti numatytąsias reikšmes" @@ -2847,10 +2862,10 @@ msgstr "Adaptuoti naršymo režimą" msgid "Customize default options" msgstr "Pasirinkti numatytuosius nustatymus" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3435,7 +3450,7 @@ msgid "Maximum displayed SQL length" msgstr "Maksimalus SQL rodymo ilgis" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Naudotojai negali nustatyti didesnės reikšmės" @@ -3498,58 +3513,54 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "Lentelių nuorodų eilę rodyti kairėje pusėje" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "Lentelių nuorodų eilę rodyti dešinėje pusėje" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" "Naudoti natūralią tvarką rikiuojant lentelių ir duomenų bazių pavadinimus" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Natūrali tvarka" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Naudoti tik piktogramas (ikonas), tik tekstą arba abu" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Piktograminė navigacijos juostelė" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "naudoti GZip išvedimo buferiui tam, kad padidinti greitį HTTP persiuntimų" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip išvedimo buferis" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Numatytoji rikiavimo tvarka" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Naudoti ilgalaikius prisijungimus prie MySQL duomenų bazių" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Ilgalaikiai sujungimai" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3559,23 +3570,23 @@ msgstr "" "puslapyje, kai neįmanoma rasti phpMyAdmin nustatytų saugyklai reikalingų " "lentelių" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Trūksta phpMyAdmin konfigūracijos saugojimo lentelės" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Piktograminės lentelių operacijos" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Neleisti redaguoti BLOB ir BINARY stulpelių" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Apsaugoti dvejetainius stulpelius" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3585,179 +3596,179 @@ msgstr "" "(reikalinga phpMyAdmin nustatymų saugykla). Jeigu išjungta, naudoja " "JavaScript užklausų istorijai rodyti (prarandama uždarius langą)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Nuolatinė užklausų istorija" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Kiek užklausų laikoma istorijoje" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Užklausų istorijos ilgis" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Parodoma kortelė kai atidaromas naujas užklausos langas" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Numatytoji užklausos lango kortelė" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Užklausos lango aukštis (taškais)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Užklausos lango aukštis" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Užklausos lango plotis (taškais)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Užklausos lango plotis" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Pasirinkti kokios funkcijos bus naudojamos ženklų rinkinio (koduotės) " "konvertavimui" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Įrašymo varikliukas" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Pervadinti lentelę į" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "Pakartoti antraštes kas X langelių, [kbd]0[/kbd] išjungia šią galimybę" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Pakartoti antraštes" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Rodyti pagalbos mygtuką vietoje dokumentacijos teksto" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Rodyti pagalbos mygtuką" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Katalogas kur eksportai gali būti išsaugomi serveryje" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Išsaugoti katalogą" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Palikite tuščią, jei nenaudojamas" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Palikite tuščią nutylėtoms reikšmėms" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Leisti prisijungti be slaptažodžio" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Leisti prisijungti kaip root" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Autentifikacijos tipas" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Pažymėti lentelę" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Naudoti suspaudimą jungiantis prie MySQL serverio" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Naudoti suspaustą susijungimą" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Kaip prisijungti prie serverio, jei nesate tikras palikite [kbd]tcp[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Susijungimo tipas" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Kontroliuoti naudotojų slaptažodį" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3765,19 +3776,19 @@ msgstr "" "Specialus MySQL naudotojas sukonfigūruotas su ribotom galimybėm, daugiau " "informacijos [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Kontroliuoti naudotoją" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Suskaičiuoti lenteles kai rodomas duomenų bazių sąrašas" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Suskaičiuoti lenteles" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3785,11 +3796,11 @@ msgstr "" "Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3797,28 +3808,28 @@ msgstr "" "Daugiau informacijos [a@http://sf.net/support/tracker.php?aid=1849494]PMA[/" "a] ir [a@http://bugs.mysql.com/19588]MySQL[/a] klaidų puslapiuose" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Neleisti matyti INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Kokius PHP plėtinius naudoti; Jūs turėtumėte naudoti mysqli jei palaikoma" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Naudoti PHP išplėtimą" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Slėpti duomenų bazės, atitinkančias standartines išraiškas (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Slėpti duomenų bazes" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3826,31 +3837,31 @@ msgstr "" "Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: [kbd]pma_history" "[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "SQL užklausų žurnalo lentelė" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Kompiuterio, kuriame veikia MySQL serveris, pavadinimas" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Serverio adresas" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "Atsijungimo nuoroda" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Bandyti prisijungti be slaptažodžio" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Prisijungti be slaptažodžio" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3865,30 +3876,30 @@ msgstr "" "ir pabaigoje nurodykite [kbd]*[/kbd], kad parodytumėte likusias abėcėlės " "tvarka." -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Rodyti tik šias duomenų bazes" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Palikite tuščią, jei nenaudojate autentifikacijos pagal nustatymus" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Palikite tuščią jei nenorite PDF schemų palaikymo, siūlome: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF schema: puslapių lentelė" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3898,21 +3909,21 @@ msgstr "" "informaciją rasite [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. " "Palikite tušią, kad nepalaikytų. Pasiūlymas: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Duomenų bazės vardas" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Jungtis per kurią MySQL serveris laukia atsakymo, palikite tuščią numatytam " "nustatymui" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Serverio jungtis" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" @@ -3924,13 +3935,13 @@ msgstr "" "Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analizuoti lentelę" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3938,19 +3949,19 @@ msgstr "" "Palikite tuščią jei nenorite, kad palaikytų [a@http://wiki.phpmyadmin.net/" "pma/relation]sąryšines nuorodas[/a], pasiūlymas: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Sąryšių lentelė" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "SQL komanda išgauti prieinamas duombazes" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES komanda" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3958,50 +3969,50 @@ msgstr "" "Žiūrėkite [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "autentifikacijos tipus[/a] dėl pavyzdžių" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Prisijungimo sesijos vardas" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "Prisijungimo adresas" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "Prievadas, kurio klausosi MySQL serveris, palikite tuščią įprastiniam" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Serverio prievadas (socket)" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "Įjungti SSL susijungimams prie MySQL serverio" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Naudoti SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF schema: lentelės koordinatės" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Rodyti lentelės stulpelius" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" @@ -4012,146 +4023,146 @@ msgstr "" "Palikite tuščią jei nenorite PDF schemų palaikymo, siūlome: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "User preferences" msgid "UI preferences table" msgstr "Naudotojo nuostatos" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "Pridėti DROP DATABASE" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "Pridėti DROP TABLE" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "Pridėti DROP VIEW" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "Sekamos užklausos" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "SQL užklausų sekimo lentelė" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Automatiškai sukurti versijas" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Išplėstinis patikrinimas" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Leisti rodyti visas eilutes (įrašus)" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Rodyti slaptažodžio keitimo formą" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Rodyti duomenų bazės sukūrimo formą" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Rodyti laukelių tipus" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Rodyti funkcijų laukelius redagavimo/įterpimo režime" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Rodyti funkcijų laukelius" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4159,44 +4170,44 @@ msgstr "" "Rodyti nuorodą į [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "išvedimą" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Rodyti phpinfo() nuorodą" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Rodyti išsamią MySQL serverio informaciją" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Nustato kada turi būti rodomos SQL užklausos kurias sugeneravo phpMyAdmin" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Rodyti SQL užklausas" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Leisti rodyti duomenų bazių ir lentelių statistiką (pavyzdžiui vietos " "naudojimą)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Rodyti statistika" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Rodyti duomenų bazės komentarą vietoje jos pavadinimo" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4204,28 +4215,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Rodyti lentelės komentarą vietoj jos pavadinimo" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Praleisti užrakintas lenteles" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "Reikalaujama, kad SQL Validator būtų įjungtas" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4235,7 +4246,7 @@ msgstr "Reikalaujama, kad SQL Validator būtų įjungtas" msgid "Password" msgstr "Slaptažodis" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4243,11 +4254,11 @@ msgstr "" "[strong]Įspėjimas:[/strong] reikalauja PHP SOAP įskiepio arba PEAR SOAP, kad " "būtų įdiegtas" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "Įjungti SQL Validator (tikrintoją)" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4255,12 +4266,12 @@ msgstr "" "Jeigu Jūs turite individualizuotą slapyvardį, parašykite jį čia (numatytasis " "yra [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Vartotojo vardas" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4268,59 +4279,59 @@ msgstr "" "Pasiūlo duombazės pavadinimą kai būnama „Sukurti duombazę“ punkte (jeigu " "įmanoma) arba palieka tuščią laukelį" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Pasiūlyti naują duomenų bazės pavadinimą" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Įspėjimas rodomas pagrindiniame puslapyje jeigu Suhosin yra aptinkamas" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Suhosin įspėjimas" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "Textarea laukeliai" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "Naršyklės lango pavadinimas kai duomenų bazė yra pasirinkta" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "Naršyklės lango pavadinimas kai niekas nepasirinkta" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Numatytasis pavadinimas" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "Naršyklės lango pavadinimas kai serveris yra pasirinktas" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "Naršyklės lango pavadinimas, kai pasirinkta lentelė" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4328,27 +4339,27 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "Serverio katalogas į kurį Jūs galite įkelti failus importavimui" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Įkelties katalogas" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Leisti paiešką visos duomenų bazės viduje" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Naudoti duomenų bazės paiešką" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4356,31 +4367,31 @@ msgstr "" "Kai išjungta, naudotojai negali nustatyti jokių žemiau esančių nustatymų, " "nepriklausomo nuo to, kad pažymėjimo laukelis yra dešinėje" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Patikrinti ar naujausia versija" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" "Įjungia naujausios versijos patikrinimą pagrindiniame phpMyAdmin puslapyje" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4388,7 +4399,7 @@ msgstr "" msgid "Version check" msgstr "Versijos patikrinimas" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4396,7 +4407,7 @@ msgstr "" "Įjungia [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] glaudinimą " "importo ir eksporto operacijoms" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4416,61 +4427,61 @@ msgstr "HTTP autentifikacija" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV naudojant LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS darbaknygė" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX darbaknygė" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document skaičiuoklė" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "Greitas" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "Pritaikytas" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Duomenų bazės eksportavimo nustatymai" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV formatas MS Excel programai" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document rašyklė" @@ -4557,7 +4568,7 @@ msgstr "" msgid "Return type" msgstr "Gražinimo tipas" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4952,60 +4963,60 @@ msgstr "Rodyti BLOB turinį" msgid "Browser transformation" msgstr "Naršyklės transformacija" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Kopijuoti" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Eilutė buvo ištrinta" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Stabdyti procesą" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "užklausa vykdoma" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Rodomi įrašai" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "iš viso " -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Užklausa užtruko %01.4f sek." -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Veiksmai su užklausos rezultatais" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Spausdinti rezultatus (su pilnais tekstais)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "Rodyti diagramą" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy #| msgid "Create User" msgid "Create view" msgstr "Sukurti naudotoją" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Sąryšis nerastas" @@ -10132,6 +10143,12 @@ msgstr "VIEW pavadinimas" msgid "Rename view to" msgstr "Pervadinti lentelę į" +#~ msgid "Show table row links on left side" +#~ msgstr "Lentelių nuorodų eilę rodyti kairėje pusėje" + +#~ msgid "Show table row links on right side" +#~ msgstr "Lentelių nuorodų eilę rodyti dešinėje pusėje" + #~ msgid "Background color" #~ msgstr "Fono spalva" diff --git a/po/lv.po b/po/lv.po index 4043ebf749..6b1729e00b 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" @@ -198,7 +198,7 @@ msgstr "Komentāri" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -214,7 +214,7 @@ msgstr "Nē" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -361,7 +361,7 @@ msgid "Edit or export relational schema" msgstr "Relāciju shēma" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -429,19 +429,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Kārtošana" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Augošā secībā" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -555,8 +555,8 @@ msgstr "Apskatīt" msgid "Delete the matches for the %s table?" msgstr "Dati tabulai" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -630,7 +630,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -659,20 +659,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +683,15 @@ msgid "Check tables having overhead" msgstr "Iezīmēt tabulas ar pārtēriņu" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Izdrukas versija" @@ -749,7 +749,7 @@ msgstr "Datu vārdnīca" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -940,7 +940,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1193,8 +1193,8 @@ msgstr "" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1956,13 +1956,13 @@ msgstr "" msgid "Tables" msgstr "Tabulas" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2068,7 +2068,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2130,7 +2130,7 @@ msgstr "MySQL teica: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Izskaidrot SQL" @@ -2142,11 +2142,11 @@ msgstr "Neizskaidrot SQL" msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Izveidot PHP kodu" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Atjaunot" @@ -2155,7 +2155,7 @@ msgstr "Atjaunot" msgid "Skip Validate SQL" msgstr "Nepārbaudīt SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Pārbaudīt SQL" @@ -2253,11 +2253,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2304,21 +2304,34 @@ msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Neaizvērtas pēdiņas" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2326,13 +2339,13 @@ msgstr "Neaizvērtas pēdiņas" msgid "structure" msgstr "Struktūra" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2340,35 +2353,35 @@ msgstr "" msgid "structure and data" msgstr "Struktūra un dati" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Pilnas INSERT izteiksmes" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Paplašinātas INSERT izteiksmes" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2457,7 +2470,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2949,10 +2962,10 @@ msgstr "" msgid "Customize default options" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV dati" @@ -3528,7 +3541,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3585,352 +3598,348 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Mainīt datu kārtošanas laukus" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Vaicājuma logs" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Vaicājuma logs" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Vaicājuma logs" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Pārsaukt tabulu uz" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "Konekcijas" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Nav tabulu" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 #, fuzzy msgid "Designer table" msgstr "Defragmentēt tabulu" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "Nav datubāzu" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "Servera izvēle" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3939,324 +3948,324 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Datubāze" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "Servera ID" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analizēt tabulu" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Restaurēt tabulu" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "Servera izvēle" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Rādu kolonnu komentārus" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragmentēt tabulu" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Parametrs" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy msgid "Automatically create versions" msgstr "Servera versija" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy msgid "Show field types" msgstr "Rādīt tabulas" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "Rādīt pilnos vaicājumus" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Rindas statistika" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4264,28 +4273,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4295,91 +4304,91 @@ msgstr "" msgid "Password" msgstr "Parole" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "Lietotājvārds:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Noklusēts" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4387,56 +4396,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4444,13 +4453,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4470,61 +4479,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Datubāzu eksporta opcijas" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV dati MS Excel formātā" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4611,7 +4620,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5040,61 +5049,61 @@ msgstr "" msgid "Browser transformation" msgstr "Pārlūkprogrammas transformācija" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Ieraksts tika dzēsts" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Nogalināt" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "vaicājumā" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Parādu rindas" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "kopā" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Vaicājums ilga %01.4f s" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Drukas skats (ar pilniem tekstiem)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Rādīt PDF shēmu" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Servera versija" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Links nav atrasts" diff --git a/po/mk.po b/po/mk.po index 923199494b..6394ab03c1 100644 --- a/po/mk.po +++ b/po/mk.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-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-05-19 17:04+0200\n" "Last-Translator: \n" "Language-Team: macedonian_cyrillic \n" @@ -199,7 +199,7 @@ msgstr "Коментари" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "Не" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -362,7 +362,7 @@ msgid "Edit or export relational schema" msgstr "Релациона шема" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -430,19 +430,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Подредуваање" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Растечки редослед" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -556,8 +556,8 @@ msgstr "Преглед" msgid "Delete the matches for the %s table?" msgstr "Приказ на податоци од табелата" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -631,7 +631,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -660,20 +660,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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" @@ -684,15 +684,15 @@ msgid "Check tables having overhead" msgstr "табели кои имаат пречекорувања" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Преглед за печатење" @@ -750,7 +750,7 @@ msgstr "Речник на податоци" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -941,7 +941,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1193,8 +1193,8 @@ msgstr "Складишта" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1958,13 +1958,13 @@ msgstr "" msgid "Tables" msgstr "Табели" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2071,7 +2071,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2134,7 +2134,7 @@ msgstr "MySQL порака: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Објасни SQL" @@ -2146,11 +2146,11 @@ msgstr "Прескокни ги објаснувањата на SQL-от" msgid "Without PHP Code" msgstr "без PHP код" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Освежи" @@ -2159,7 +2159,7 @@ msgstr "Освежи" msgid "Skip Validate SQL" msgstr "Прескокни ја проверката на SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Провери SQL" @@ -2259,11 +2259,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2310,21 +2310,34 @@ msgstr "Директориумот кој го избравте за праќа msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Наводникот не е затворен" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2332,13 +2345,13 @@ msgstr "Наводникот не е затворен" msgid "structure" msgstr "Структура" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2346,35 +2359,35 @@ msgstr "" msgid "structure and data" msgstr "Структура и податоци" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Комплетен INSERT (со имиња на полињата)" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Проширен INSERT" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2463,7 +2476,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2957,10 +2970,10 @@ msgstr "" msgid "Customize default options" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV формат" @@ -3539,7 +3552,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3596,355 +3609,351 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Промени го редоследот во табелата" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Прозорец за упити" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Прозорец за упити" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Прозорец за упити" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Промени го името на табелата во " -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Нишки на поправка" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 #, fuzzy msgid "Save directory" msgstr "Основен директориум на податоците" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "Конекции" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Нема табела" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 #, fuzzy msgid "Designer table" msgstr "Дефрагментирај ја табелата" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "Базата на податоци не постои" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "Избор на сервер" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3953,325 +3962,325 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "База на податоци" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "ID на серверот" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Анализа на табелата" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Поправка на табелата" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "Избор на сервер" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Прикажувам коментари на колоните" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Дефрагментирај ја табелата" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Име" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Режим на автоматско опоравување" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy msgid "Show field types" msgstr "Прикажи табели" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "Прикажи комплетни упити" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Статистики за записите" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4279,28 +4288,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4310,91 +4319,91 @@ msgstr "" msgid "Password" msgstr "Лозинка" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "Корисничко име:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Додади/избриши колона" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Default" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4402,56 +4411,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4459,13 +4468,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4485,61 +4494,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Опции за извоз на бази на податоци" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV за MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4626,7 +4635,7 @@ msgstr "Рутини" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5057,61 +5066,61 @@ msgstr "" msgid "Browser transformation" msgstr "Транформации на веб прелистувачот" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Копирај" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Записот е избришан" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Прекини" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "во упитот" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Приказ на записи од " -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "вкупно" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "време на извршување на упитот %01.4f секунди" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Преглед за печатење (целосен текст)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF шема" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Верзија на серверот" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Врската не е пронајдена" diff --git a/po/ml.po b/po/ml.po index a0c26d17e2..0e5fab0642 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-02-10 14:03+0100\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam \n" @@ -195,7 +195,7 @@ msgstr "" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -211,7 +211,7 @@ msgstr "" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -348,7 +348,7 @@ msgid "Edit or export relational schema" msgstr "" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -415,19 +415,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -535,8 +535,8 @@ msgstr "" msgid "Delete the matches for the %s table?" msgstr "" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -605,7 +605,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -633,20 +633,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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" @@ -657,15 +657,15 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "" @@ -719,7 +719,7 @@ msgstr "" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -903,7 +903,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1118,8 +1118,8 @@ msgstr "" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1809,13 +1809,13 @@ msgstr "" msgid "Tables" msgstr "" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1909,7 +1909,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -1971,7 +1971,7 @@ msgstr "" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "" @@ -1983,11 +1983,11 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "" @@ -1996,7 +1996,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "" @@ -2094,11 +2094,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2144,62 +2144,75 @@ msgstr "" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2284,7 +2297,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2746,10 +2759,10 @@ msgstr "" msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "" @@ -3297,7 +3310,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3353,337 +3366,333 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3692,307 +3701,307 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4000,28 +4009,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4031,86 +4040,86 @@ msgstr "" msgid "Password" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4118,56 +4127,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4175,13 +4184,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4201,61 +4210,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4342,7 +4351,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4718,58 +4727,58 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "" diff --git a/po/mn.po b/po/mn.po index 9c313e7508..21dee6f67e 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" @@ -197,7 +197,7 @@ msgstr "Тайлбар" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -213,7 +213,7 @@ msgstr "Үгүй" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -361,7 +361,7 @@ msgid "Edit or export relational schema" msgstr "Хамааралтай схем" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -429,19 +429,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Эрэмбэлэх" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Өсөхөөр" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -555,8 +555,8 @@ msgstr "Хөтлөх" msgid "Delete the matches for the %s table?" msgstr "Хүснэгтийн өгөгдлийг устгах" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -630,7 +630,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -658,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +682,15 @@ msgid "Check tables having overhead" msgstr "Дээдхийг шалгах" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Хэвлэхээр харах" @@ -748,7 +748,7 @@ msgstr "Өгөгдлийн толь" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -933,7 +933,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1194,8 +1194,8 @@ msgstr "Хөдөлгүүрүүд" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1959,13 +1959,13 @@ msgstr "" msgid "Tables" msgstr "Хүснэгт" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2075,7 +2075,7 @@ msgstr "Сервэрийн буруу индекс нь: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "%1$s сервэрийн хост буруу. Өөрийн тохиргоогоо нягтална уу." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2137,7 +2137,7 @@ msgstr "MySQL хэлэх нь: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "SQL тайлбар" @@ -2149,11 +2149,11 @@ msgstr "SQL тайлбарлахыг орхих" msgid "Without PHP Code" msgstr "PHP-кодгүй" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP-код үүсгэх" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Да.дуудах" @@ -2162,7 +2162,7 @@ msgstr "Да.дуудах" msgid "Skip Validate SQL" msgstr "SQL шалгалтыг алгасах" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "SQL-ийг батлах" @@ -2262,11 +2262,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2313,34 +2313,47 @@ msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Хаагдаагүй хашилт" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2348,35 +2361,35 @@ msgstr "" msgid "structure and data" msgstr "Бүтэц ба өгөгдөл" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Оруулалтыг дуусгах" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Өргөтгөсөн оруулалт" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2465,7 +2478,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2955,10 +2968,10 @@ msgstr "" msgid "Customize default options" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3530,7 +3543,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3586,349 +3599,345 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Хүснэгтийг эрэмбэлэлтээр өөрчлөх" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Асуултын цонх" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Асуултын цонх" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Асуултын цонх" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Хүснэгтийг да.нэрлэх" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Thread засах" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3937,321 +3946,321 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "өгөгдлийн сангийн нэр" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Хүснэгтийг задлах" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Баганын тайлбарыг харуулж байна" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Хүснэгт янзлах" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Баримтжуулал" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Авто сэргээх горим" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4259,28 +4268,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4290,90 +4299,90 @@ msgstr "" msgid "Password" msgstr "Нууц үг" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Багана нэмэх/устгах" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Анхдагч" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4381,56 +4390,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4438,13 +4447,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4464,63 +4473,63 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV хэрэглэх нь LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 #, fuzzy #| msgid "Database export options" msgid "Database export options" msgstr "ӨС гаргах сонголтууд" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV өгөгдлийг MS Excel-ээр" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4607,7 +4616,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5053,62 +5062,62 @@ msgstr "" msgid "Browser transformation" msgstr "Хөтчийн өөрчлөл" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Хуулах" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Мөр устгагдсан" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Алах" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "асуултад" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Мөрүүдийг харуулж байна " -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "Нийт" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Асуулт нь %01.4f сек авлаа" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Хэвлэхээр харах (бүх бичвэртэй нь)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схем харуулах" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Үүсгэх" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Холбоос олдсонгүй" diff --git a/po/ms.po b/po/ms.po index de2038ee44..7ad5b93fbe 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" @@ -196,7 +196,7 @@ msgstr "Komen" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -212,7 +212,7 @@ msgstr "Tidak" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -361,7 +361,7 @@ msgid "Edit or export relational schema" msgstr "Skema Hubungan" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -430,19 +430,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Isih" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Menaik" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -556,8 +556,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -631,7 +631,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -659,20 +659,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +683,15 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Paparan Cetak" @@ -749,7 +749,7 @@ msgstr "Kamus Data" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -938,7 +938,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1179,8 +1179,8 @@ msgstr "" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1933,13 +1933,13 @@ msgstr "" msgid "Tables" msgstr "Jadual-jadual" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2044,7 +2044,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2106,7 +2106,7 @@ msgstr "MySQL berkata: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Terangkan Kod SQL" @@ -2118,11 +2118,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "Tanpa Kod PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Cipta Kod PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "" @@ -2131,7 +2131,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "Melangkau Pengesahan SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Mengesahkan SQL" @@ -2229,11 +2229,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2280,21 +2280,34 @@ msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Tanda quote tidak disertakan" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2302,13 +2315,13 @@ msgstr "Tanda quote tidak disertakan" msgid "structure" msgstr "Struktur" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2316,35 +2329,35 @@ msgstr "" msgid "structure and data" msgstr "Struktur dan data" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Kemasukkan Selesai" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Penyelitan Lanjutan" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2433,7 +2446,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2921,10 +2934,10 @@ msgstr "" msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "data CSV" @@ -3495,7 +3508,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3551,345 +3564,341 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Alter table order by" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Tukarnama jadual ke" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "Hubungan" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Tiada Jadual" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "Tiada pangkalan data" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "Pilihan Pelayan" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3898,321 +3907,321 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Pangkalan Data" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "Pilihan Pelayan" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analyze table" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Baiki jadual" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "Pilihan Pelayan" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Memaparkan Komen Kolum" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Penyataan" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy msgid "Automatically create versions" msgstr "Versi Pelayan" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy msgid "Show field types" msgstr "Papar jadual" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Statistik Baris" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4220,28 +4229,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4251,91 +4260,91 @@ msgstr "" msgid "Password" msgstr "Katalaluan" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "Namapengguna:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Tambah/Padam Kolum Medan" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Asal" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4343,56 +4352,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4400,13 +4409,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4426,62 +4435,62 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 #, fuzzy msgid "Database export options" msgstr "Statistik pangkalan data" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV untuk sata MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4568,7 +4577,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4992,61 +5001,61 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Baris telah dipadam" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Bunuh" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "pada kueri" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Papar baris" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "jumlah" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Papar Skema PDF" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Versi Pelayan" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Pautan tidak dijumpai" diff --git a/po/nb.po b/po/nb.po index 91d03469fc..d1b687f985 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-03-07 11:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: norwegian \n" @@ -198,7 +198,7 @@ msgstr "Kommentarer" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -214,7 +214,7 @@ msgstr "Nei" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -352,7 +352,7 @@ msgid "Edit or export relational schema" msgstr "Rediger eller eksporter relasjonsskjema" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -419,19 +419,19 @@ msgid "visual builder" msgstr "visuell bygger" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Sorter" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Stigende" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -539,8 +539,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -609,7 +609,7 @@ 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:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -637,20 +637,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +661,15 @@ msgid "Check tables having overhead" msgstr "Merk overheng" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Utskriftsvennlig forhåndsvisning" @@ -729,7 +729,7 @@ msgstr "Dataordbok" msgid "Tracked tables" msgstr "Overvåkede tabeller" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -929,7 +929,7 @@ msgstr "" "øker php tidsgrensen." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1157,8 +1157,8 @@ msgstr "Inline Edit" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1873,13 +1873,13 @@ msgstr "delt" msgid "Tables" msgstr "Tabeller" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1980,7 +1980,7 @@ msgstr "Ugyldig tjenerindeks: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ugyldig tjenernavn for tjener %1$s. Kontroller din konfigurasjon." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2042,7 +2042,7 @@ msgstr "MySQL sa: " msgid "Failed to connect to SQL validator!" msgstr "Kunne ikke koble til SQL validerer!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Forklar SQL" @@ -2054,11 +2054,11 @@ msgstr "Ikke forklar SQL" msgid "Without PHP Code" msgstr "uten PHP kode" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Lag PHP kode" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Oppdater" @@ -2067,7 +2067,7 @@ msgstr "Oppdater" msgid "Skip Validate SQL" msgstr "Ikke teste SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Test SQL" @@ -2165,11 +2165,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2215,62 +2215,75 @@ msgstr "Katalogen du anga for opplasting kan ikke nåes" msgid "There are no files to upload" msgstr "Det er ingen filer å laste opp" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Begge" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Åpne" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Lukket" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "struktur" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "data" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "struktur og data" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Hurtig - vis minimalt med konfigureringer" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Bruker - vis alle konfigureringer" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "Bruker - som ovenfor, men uten hurtigoppsett" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "Komplette inserts" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "Utvidete innlegg" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "begge ovenforstående" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "ingen av de overstående" @@ -2356,7 +2369,7 @@ msgid "Set value: %s" msgstr "Sett verdi: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Gjennopprett standard verdi" @@ -2840,10 +2853,10 @@ msgstr "Endre visningsmodus" msgid "Customize default options" msgstr "Tilpass standardinstillinger" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV-data" @@ -3444,7 +3457,7 @@ msgid "Maximum displayed SQL length" msgstr "Maks lengde SQL" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Brukere kan ikke angi en høyere verdi" @@ -3507,40 +3520,34 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "Dette er rediger, innsmettet rediger, kopier og slettede lenker" #: libraries/config/messages.inc.php:318 -#, fuzzy -#| msgid "Show logo in left frame" -msgid "Show table row links on left side" -msgstr "Vis logo i venstre ramme" - -#: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" +msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "Bruk naturlig rekkefølge for å sortere tabell- og databasenavn" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Normal rekkefølge" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Bruk bare ikoner, bare tekst eller begge deler" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Ikonnavigasjonsmeny" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "Bruk GZip utbuffring for økt hastighet i HTTP overføringer" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip utbuffring" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3548,42 +3555,42 @@ msgstr "" "[kbd]SMART[/kbd] - dvs. synkende rekkefølge for felter av typen TIME, DATE, " "DATETIME og TIMESTAMP, ellers stigende rekkefølge" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Standard sorteringsrekkefølge" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Bruk vedvarende forbindelser til MySQL databasen" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Vedvarende forbindelser" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Ikoniske tabelloperasjoner" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Ikke tillat BLOB eller BLOB og BINARY kolonner å bli redigert" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Beskytt binære kolonner" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3596,124 +3603,124 @@ msgstr "" "Slå på hvis du ønsker DB-basert spørringshistorie (trenger pmadb). Hvis " "avslått, vil JS-rutiner vise spørringshistorien (tapt ved lukking av vindu)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Permanent spørringshistorie" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Hvor mange spørringer lagres" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Spørringshistorielengde" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Fanen som vises når et nytt spørringsvindu åpnes" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Standard spørringsvindufane" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Høyde på spørringsvindu" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Spørringsvindu" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Bredde på spørringsvindu" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Velg hvilken funksjon som vil bli brukt for karaktertegnsettskonverteringer" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Rekodingsmotor" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Endre tabellens navn" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Gjenta topptekst" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Mappe for eksporter kan lagres på tjeneren" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Lagringsmappe" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "La stå tom hvis ikke brukt" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Rekkefølge for vertsautentisering" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "La stå tom for standard" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Vertsautentiseringsregler" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Tillat innlogging uten passord" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Tillat innlogging som root" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP Basic Auth Realm navn for visning ved bruk av HTTP Auth" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3722,19 +3729,19 @@ msgstr "" "Stien til konfigfila for [a@http://swekey.com]SweKey hardware authentication" "[/a] (ikke lokalisert i din dokumentrot; foreslått: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "SweKey config fil" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Autentiseringsmetode som skal brukes" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Autentiseringstype" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3742,11 +3749,11 @@ msgstr "" "La stå tom for ingen [a@http://wiki.phpmyadmin.net/pma/bookmark]bokmerke[/a]" "støtte, anbefalt: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Bokmerketabell" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3754,31 +3761,31 @@ msgstr "" "La stå tom for ingen kolonnekommentarer/mime typer, anbefalt: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Kolonneinformasjonstabell" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Komprimer tilkoblingen til MySQL tjeneren" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Komprimer tilkobling" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Hvordan koble til tjener, behold tcp hvis usikker" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Tilkoblingstype" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Kontrollbrukerpassord" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3787,30 +3794,30 @@ msgstr "" "informasjon tilgjengelig på [a@http://wiki.phpmyadmin.net/pma/controluser]" "wiki[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Kontrollbruker" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Tell tabeller ved visning av databaseliste" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Tell tabeller" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" "La stå tom for ingen Designer støtte, anbefalt: [kbd]designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Designertabell" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3818,58 +3825,58 @@ msgstr "" "Mer informasjon på [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] og [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Slå av bruk av INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "Hvilken PHP modul som skal brukes, bruk mysqli hvis støttet" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Bruk PHP modul" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Skjul databaser som matcher regular expression (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Skul databaser" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "SQL spørringshistorietabell" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Vertsnavn hvor MySQL tjeneren kjører" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Tjenervertsnavn" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "Logg ut URL" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Forsøk å koble til uten passord" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Koble til uten passord" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3884,29 +3891,29 @@ msgstr "" "Du kan bruke MySQL jokertegn (% and _), escape dem hvis du ønsker å bruke " "dem direkte, f.eks. bruk 'my\\_db' og ikke 'my_db'" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Vis kun opplistede databaser" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "La stå tom om du ikke skal bruke config autentisering" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Passord for config autentisering" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF schema: sidetabell" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3916,19 +3923,19 @@ msgstr "" "wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] for komplett informasjon. La stå " "blank for å slå av. Anbefalt: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Ddatabasenavn" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "Porten som MySQL tjeneren lytter på, la stå tom for standard verdi" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Tjenerport" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -3939,13 +3946,13 @@ msgid "" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Husk brukernavn" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3953,19 +3960,19 @@ msgstr "" "La stå tom for ingen [a@http://wiki.phpmyadmin.net/pma/relation]relasjonslink" "[/a]støtte, anbefalt: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Relasjonstabell" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "SQL kommando for å hente liste over databaser" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES kommando" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3973,41 +3980,41 @@ msgstr "" "Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentiseringstyper[/" "a] for et eksempel" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Signon sesjonsnavn" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "Sokkel som MySQL tjeneren lytter på, la stå tom for standard verdi" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Tjenersokkel" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "Slå på SSL for tilkobling til MySQL tjener" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Bruk SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "La stå tom for ingen PDF schema støtte, anbefalt: [kbd]pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF schema: tabellkoordinater" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4015,11 +4022,11 @@ msgstr "" "Tabell for beskrivelse av visningskolonner, la stå tom for ingen støtte; " "anbefalt: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Visningskolonnetabell" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -4030,13 +4037,13 @@ msgid "" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragmenter tabell" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4044,11 +4051,11 @@ msgstr "" "Om en DROP DATABASE IF EXISTS spørring skal bli lagt til som første linje i " "loggen når oppretter en database." -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "Legg til DROP DATABASE" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4056,11 +4063,11 @@ msgstr "" "Om en DROP TABLE IF EXISTS spørring vil bli lagt til som første linje til " "loggen når oppretter en tabell." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "Legg til DROP TABLE" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4068,31 +4075,31 @@ msgstr "" "Om en DROP VIEW IF EXISTS spørring vil bli lagt til som første linje i " "loggen når opprettes en visning." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "Legg til DROP VIEW" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Definerer lista med spørringer autoopprettinga bruker for nye versjoner." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "Spørringer som skal spores" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "SQL spørringssporingstabell" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4100,11 +4107,11 @@ msgstr "" "Om sporingsmekanismen oppretter versjoner for tabeller og visninger " "automatisk." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Automatisk opprette versjoner" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 #, fuzzy #| msgid "" #| "Leave blank for no SQL query tracking support, suggested: [kbd]" @@ -4115,15 +4122,15 @@ msgid "" msgstr "" "La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "Bruker for config autentisering" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4131,11 +4138,11 @@ msgstr "" "Slå av hvis du vet at dine pma_* tabeller er oppdaterte. Denne forhindrer " "kompabilitetssjekk og øker ytelsen" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Full kontroll" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4143,19 +4150,19 @@ msgstr "" "En brukervennlig beskrivelse av denne tjeneren. La stå tom for visning av " "vertsnavn istedet." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Fult navn for denne tjeneren" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Avgjør om en bruker får en "vis alle (rader)" knapp" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Tillat visning av alle rader" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4165,33 +4172,33 @@ msgstr "" "autentiseringsmodus siden passordet er hardkodet i konfigurasjonsfila; dette " "begrenser ikke muligheten til å utføre samme kommando direkte" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Vis passordendringsskjema" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Vis opprett database skjema" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Vis felttyper" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Vis funksjonsfelter i rediger/sett inn modus" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Vis funksjonsfelter" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4199,31 +4206,31 @@ msgstr "" "Vis link til [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "resultat" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Vis phpinfo() link" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Vis detaljert MySQL tjenerinformasjon" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Definer om SQL spørringer generert av phpMyAdmin skal vises" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Vis SQL spørringer" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "Tillat visning av database og tabellstatistikk (f.eks. lagringsbruk)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Vis statistikk" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4231,11 +4238,11 @@ msgstr "" "Hvis verktøytips er påslått og en databasekommentar er definert vil denne " "bytte om på kommentar og det reelle navnet" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Vis databasekommentaren istedet for dens navn" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4247,29 +4254,29 @@ msgstr "" "direktivet, så bare mappen et kalt lik aliaset, selve tabellnavnet forblir " "uendret" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Vis tabellkommentar istedet for dens navn" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Vis tabellkommentarer i verktøytips" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Merk tabeller i bruk og gjør det mulig å vise databaser med låste tabeller" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Ignorer låste tabeller" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4279,28 +4286,28 @@ msgstr "" msgid "Password" msgstr "Passord" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Brukernavn" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4308,63 +4315,63 @@ msgstr "" "Foreslå et databasenavn i "Opprett Database" skjemaet (hvis mulig) " "eller behold tekstfeltet tomt" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Foreslå nytt databasenavn" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR textarea kolonner" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR textarea rader" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Forvalgt tittel" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "Navn på nettleser når en tjener er valgt" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4376,37 +4383,37 @@ msgstr "" "Forwarded-For) header som kommer fra mellomlager 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "Liste over godkjente mellomlager for IP allow/deny" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "Mappe på tjeneren hvor du kan laste opp filer for import" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Opplastingsmappe" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Gjør det mulig å søke i hele databasen" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Bruk databasesøk" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4416,19 +4423,19 @@ msgstr "" "import.lib.php for standarder for hvor mange spørringer en flerutsagn " "spørringer kan inneholde." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Utførlig flere utsagn" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Sjekk for siste versjon" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4436,7 +4443,7 @@ msgstr "" msgid "Version check" msgstr "Versjonskontroll" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4444,7 +4451,7 @@ msgstr "" "Slå på [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a]-" "komprimering for import og eksportoperasjoner" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4468,61 +4475,61 @@ msgstr "Rekkefølge for vertsautentisering" msgid "Signon authentication" msgstr "Rekkefølge for vertsautentisering" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV med LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Workbook" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document regneark" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "Egendefinert" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Databaseeksportinnstillinger" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV for MS Excel data" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document tekst" @@ -4609,7 +4616,7 @@ msgstr "Rutiner" msgid "Return type" msgstr "Returtype" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5025,62 +5032,62 @@ msgstr "Vis BLOB innhold" msgid "Browser transformation" msgstr "Nettvisertransformasjon" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Raden er slettet" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Avslutt" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "i spørring" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Viser rader " -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "totalt" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Spørring tok %01.4f sek" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Spørringsresultatshandlinger" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Forhåndsvisning (med all tekst)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Vis PDF-skjema" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy #| msgid "Create User" msgid "Create view" msgstr "Opprett bruker" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Link ikke funnet" @@ -10379,3 +10386,8 @@ msgstr "VIEW navn" #: view_operations.php:91 msgid "Rename view to" msgstr "Endre tabellens navn" + +#, fuzzy +#~| msgid "Show logo in left frame" +#~ msgid "Show table row links on left side" +#~ msgstr "Vis logo i venstre ramme" diff --git a/po/nl.po b/po/nl.po index e3c888c466..f77c986cf7 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-03-16 20:18+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: dutch \n" @@ -198,7 +198,7 @@ msgstr "Opmerkingen" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -214,7 +214,7 @@ msgstr "Nee" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -353,7 +353,7 @@ msgid "Edit or export relational schema" msgstr "Bewerk of exporteer relationeel schema" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -420,19 +420,19 @@ msgid "visual builder" msgstr "visuele query opbouwer" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Sorteren" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Oplopend" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -540,8 +540,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -610,7 +610,7 @@ msgstr "Tracking is ingeschakeld." msgid "Tracking is not active." msgstr "Tracking is niet actief." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -639,20 +639,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +663,15 @@ msgid "Check tables having overhead" msgstr "Selecteer tabellen met overhead" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Afdrukken" @@ -731,7 +731,7 @@ msgstr "Data Woordenboek" msgid "Tracked tables" msgstr "Tabellen met tracker" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -935,7 +935,7 @@ msgstr "" "worden versoepeld." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1168,8 +1168,8 @@ msgstr "Wijzig inline" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1889,13 +1889,13 @@ msgstr "gedeeld" msgid "Tables" msgstr "Tabellen" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1998,7 +1998,7 @@ msgstr "Ongeldige serverindex: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ongeldige machinenaam voor server %1$s. Controleer uw configuratie." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2060,7 +2060,7 @@ msgstr "MySQL retourneerde: " msgid "Failed to connect to SQL validator!" msgstr "Er kan geen verbinding worden gemaakt met de SQL-validator!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Verklaar SQL" @@ -2072,11 +2072,11 @@ msgstr "Uitleg SQL overslaan" msgid "Without PHP Code" msgstr "zonder PHP-Code" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Genereer PHP-Code" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Vernieuw" @@ -2085,7 +2085,7 @@ msgstr "Vernieuw" msgid "Skip Validate SQL" msgstr "SQL-validatie overslaan" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Valideer SQL" @@ -2185,11 +2185,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2235,62 +2235,77 @@ msgstr "De folder die u heeft ingesteld om te uploaden kan niet worden bereikt" msgid "There are no files to upload" msgstr "Er zijn geen bestanden om te uploaden" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Beide" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "Hoogte" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Open" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Gesloten" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "structuur" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "gegevens" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "Structuur en gegevens" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Snel - toon enkel de belangrijkste opties" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Uitgebreid - toon alle mogelijke opties" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "Uitgebreid - als bovenstaande maar zonder snel/uitgebreid keuze" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "volledige invoegingen" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "uitgebreide invoegingen" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "beide bovenstaande opties" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "geen van bovenstaande opties" @@ -2377,7 +2392,7 @@ msgid "Set value: %s" msgstr "Zet waarde op: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Herstel standaard waarde" @@ -2866,10 +2881,10 @@ msgstr "Aanpassen verkennen-mode" msgid "Customize default options" msgstr "Aanpassen standaard opties" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV gegevens" @@ -3462,7 +3477,7 @@ msgid "Maximum displayed SQL length" msgstr "Maximaal getoonden SQL lengte" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Gebruiker kan geen hogere waarde instellen" @@ -3527,39 +3542,35 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "Dit zijn Bewerken, Inline bewerken, Kopieer en Delete links" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "Toon links naar tabelrijen aan de linker zijder" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "Toon links naar tabelrijen aan de rechter zijde" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" "Gebruik natuurlijke volgorde voor het sorteren van tabel en database namen" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Natuurlijke volgorde" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Gebruik enkel iconen, enkel tekst of beide" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Icoon gebruik in navigatie balk" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "gebruik GZip uitvoer buffering voor het versnellen van HTTP verkeer" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip uitvoer buffering" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3567,19 +3578,19 @@ msgstr "" "[kbd]SMART[/kbd] - op aflopende volgorde voor velden van het type TIME, " "DATE, DATETIME en TIMESTAMP, oplopend voor overige velden" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Standaard sorteer volgorde" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Gebruik persistente connecties voor MySQL databases" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Persistente connecties" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3588,23 +3599,23 @@ msgstr "" "Schakel de waarschuwing uit op de database details Structuur pagina als een " "benodigde tabel voor phpMyAdmin configuratie opslag niet gevonden kan worden" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "phpMyAdmin configuratie opslag tabellen ontbreken" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Icoon gebruik bij tabel bewerkingen" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Blokkeer het bewerken van 'BLOB' en 'BINARY' velden" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Bescherm binaire velden" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3615,120 +3626,120 @@ msgstr "" "worden JS-routines gebruikt om query geschiedenis te tonen (deze gaat " "verloren bij het sluiten van het venster)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Permanente query geschiedenis" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Hoeveel queries er worden bewaard in de geschiedenis" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Query geschiedenis lengte" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Tabblad dat wordt getoond bij het openen van een nieuw query-venster" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Standaard query-venster tabblad" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Query-vensterhoogte (in pixels)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Query-vensterhoogte" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Query-vensterbreedte (in pixels)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Query-vensterbreedte" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Selecteer welke functies worden gebruikt om karakterset conversies uit te " "voeren" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Hercoderings engine" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Tabel hernoemen naar" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Herhaal de kopregel elke X cellen, [kbd]0[/kbd] schakelt deze functie uit" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Herhaal kopregels" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Toon helpknop in plaats van Documentatie tekst" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Toon helpknop" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Directory op de server waar exports kunnen worden opgeslagen" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Opslag directory" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Laat dit veld leeg indien u het niet wenst te gebruiken" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "Machine autorisatie volgorde" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Laat dit veld leeg om de standaardwaarde te gebruiken" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "Host autorisatie regels" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Inloggen zonder wachtwoord toestaan" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Root login toestaan" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP Basic Auth Realm naam om weer te geven tijdens HTTP Auth" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3738,19 +3749,19 @@ msgstr "" "hardware authenticatie[/a] (niet binnen de document root directory van uw " "webserver; suggestie: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "SweKey configuratiebestand" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "De te gebruiken authenticatie methode" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Authenticatie type" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3758,11 +3769,11 @@ msgstr "" "Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/bookmark]" "bookmarks[/a] te gebruiken, suggestie: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Bookmark tabel" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3770,31 +3781,31 @@ msgstr "" "Laat dit veld leeg om geen kolom commentaren en mimetypes te ondersteunen, " "suggestie: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Kolom informatie tabel" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Comprimeer verbinding naar de MySQL-server" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Comprimeer verbinding" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Hoe te verbinden met de server, gebruik bij twijfel [kbd]tcp[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Verbindingstype" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Controle gebruiker wachtwoord" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3802,19 +3813,19 @@ msgstr "" "Een speciale MySQL gebruiker met beperkte rechten, zie de [a@http://wiki." "phpmyadmin.net/pma/controluser]wiki[/a] voor meer informatie" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Controle gebruiker" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Tel het aantal tabellen bij het weergeven van een database lijst" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Tel tabellen" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3822,11 +3833,11 @@ msgstr "" "Laat dit veld leeg om de Designer niet te gebruiken, suggestie: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Designer tabel" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3834,30 +3845,30 @@ msgstr "" "Zie voor meer informatie: [a@http://sf.net/support/tracker.php?aid=1849494]" "PMA bug tracker[/a] en [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Maak geen gebruik van INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Welke PHP-extensie er gebruikt zal worden; gebruik mysqli waar mogelijk" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "PHP-extensie" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" "Verberg databases die aan de hier opgegeven reguliere expressie (PCRE) " "voldoen" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Verberg databases" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3865,31 +3876,31 @@ msgstr "" "Laat dit veld leeg om geen SQL-historie te ondersteunen, suggestie: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "SQL-query historie tabel" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Machinenaam waar de MySQL-server bereikbaar is" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Server machinenaam" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "Uitlog URL" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Probeer te verbinden zonder wachtwoord" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Verbind zonder wachtwoord" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3903,31 +3914,31 @@ msgstr "" "sorteren door hun naam op volgorde in te voeren en met [kbd]*[/kbd] te " "eindigen om de rest op alfabetische volgorde te tonen." -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Toon enkel de opgesomde databases" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" "Laat dit veld leeg indien u geen gebruik maakt van 'config' authenticatie" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Wachtwoord voor 'config' authenticatie" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Laat dit veld leeg wanneer PDF-schema wil ondersteunen, suggestie: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF-schema: pagina's tabel" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3938,21 +3949,21 @@ msgstr "" "informatie. Laat dit veld leeg om dit uit te schakelen, suggestie: [kbd]" "phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Databasenaam" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Het TCP poortnummer waarop MySQL luistert, laat dit veld leeg om de " "standaard waarde te gebruiken" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Server poort" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -3964,13 +3975,13 @@ msgstr "" "Laat dit veld leeg om geen gebruikers instellingen op te slaan, voorgesteld: " "[kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Herinner gebruikersnaam" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3978,19 +3989,19 @@ msgstr "" "Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/relation]" "relation-links[/a] te ondersteunen, suggestie: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Relatie tabel" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "SQL-commando om de beschikbare databases op te vragen" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES opdracht" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3998,44 +4009,44 @@ msgstr "" "Zie [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authenticatie typen[/" "a] voor een voorbeeld" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Signon sessienaam" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Het socket waarop de MySQL-server luistert, laat dit leeg voor de standaard " "waarde" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Server socket" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "SSL toepassen voor de verbinding naar de MySQL-server" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Gebruik SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Laat dit veld leeg om geen PDF-schema te ondersteunen, suggestie: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF-schema: tabel coördinaten" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4044,11 +4055,11 @@ msgstr "" "is, laat dit veld leeg om weer te geven velden niet te ondersteunen; " "suggestie: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Toon velden tabel" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4060,13 +4071,13 @@ msgstr "" "Laat dit veld leeg om geen gebruikers instellingen op te slaan, voorgesteld: " "[kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "Gebruikersvoorkeuren opslagtabel" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4074,11 +4085,11 @@ msgstr "" "Of DROP DATABASE IF EXISTS opdracht toegevoegd wordt als eerste regel van de " "log als een database aangemaakt wordt." -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "Voeg DROP DATABASE toe" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4086,12 +4097,12 @@ msgstr "" "Of een DROP TABLE IF EXISTS opdracht toegevoegd wordt als eerste regel van " "de log als een tabel aangemaakt wordt." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "Voeg DROP TABLE toe" # "statement" hier vertalen is geen goed idee. -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4099,21 +4110,21 @@ msgstr "" "Of een DROP VIEW IF EXISTS statement als de eerste lijn toegevoegd zal " "worden bij het aanmaken van een weergave of niet." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "Voeg DROP VIEW toe" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Definiëert de lijst van opdrachten die gebruikt worden bij het automatisch " "aanmaken bij nieuwe versies." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "Bij te houden opdrachten" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4121,11 +4132,11 @@ msgstr "" "Laat dit veld leeg om geen SQL-geschiedenis te ondersteunen, voorgesteld: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "SQL-query opvolgingstabel" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4133,11 +4144,11 @@ msgstr "" "Of het opvolgsysteem versies voor tabellen en weergaven automatisch aanmaakt " "of niet." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Automatisch versies aanmaken" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -4145,15 +4156,15 @@ msgstr "" "Laat dit veld leeg om geen gebruikers instellingen op te slaan, voorgesteld: " "[kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "Gebruikersvoorkeuren opslagtabel" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "Gebruiker voor 'config' authenticatie" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4161,11 +4172,11 @@ msgstr "" "Schakel dit uit wanneer u zeker weet dat uw pma_* tabellen up-to-date zijn. " "Dit voorkomt compatibiliteitscontroles en verbeterd daarmee de prestaties" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Uitgebreide controle" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4173,19 +4184,19 @@ msgstr "" "Een gebruiksvriendelijke naam voor deze server. Laat dit veld leeg om de " "machinenaam te tonen." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Uitgebreide naam voor deze server" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Of er een "Toon alle (rijen)" knop moet worden getoond" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Toon alle rijen" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4196,34 +4207,34 @@ msgstr "" "configuratiebestand staat opgeslagen; dit beperkt echter niet de " "mogelijkheid om het bijbehorende SQL-commando handmatig uit te voeren" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Toon formulier voor wachtwoord wijzigen" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Toon formulier om een nieuwe database te creëren" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" "Definiëert of type velden initiëel getoond worden in bewerk/toevoeg modus" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Toon veld typen" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Toon de functie velden tijdens het wijzigen/invoegen" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Toon functie velden" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4231,35 +4242,35 @@ msgstr "" "Toon link naar de [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/" "a] uitvoer" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Toon phpinfo() link" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Toon gedetailleerde MySQL-server informatie" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "Geeft aan of SQL-queries die door phpMyAdmin werden gegenereerd moeten " "worden getoond" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Toon SQL-queries" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Maakt het mogelijk om statistieken van databases en tabellen te tonen (over " "o.a. het schijfgebruik)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Toon statistieken" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4267,11 +4278,11 @@ msgstr "" "Indien tooltips zijn ingeschakeld en er een database opmerking aanwezig is, " "wisselt dit de opmerking en de werkelijke naam om" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Toon database opmerking in plaats van de naam" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4282,30 +4293,30 @@ msgstr "" "$cfg['LeftFrameTableSeparator'] gesplitst. Hierdoor krijgt enkel de map de " "naam van de opmerking, de tabelnaam blijft ongewijzigd" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Toon tabel opmerking in plaats van de naam" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Toon tabel opmerking in een tooltip" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Markeer in gebruik zijnde tabellen, waardoor het mogelijk om een databases " "die deze tabellen bevat te tonen" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Herken vergrendelde tabellen" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "Vereist dat SQL Validator geactiveerd is" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4315,7 +4326,7 @@ msgstr "Vereist dat SQL Validator geactiveerd is" msgid "Password" msgstr "Wachtwoord" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4323,23 +4334,23 @@ msgstr "" "[strong]Waarschuwing:[/strong] Vereist dat PHP SOAP extensie of PEAR SOAP " "geïnstalleerd is" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "Activeer SQL Validator" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" "Geef eventueel aangepaste gebruikersnaam op (standaard [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Gebruikersnaam" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4348,21 +4359,21 @@ msgstr "" "database in het "e;Nieuwe database aanmaken" formulier, of laat het " "veld leeg" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Stel een databasenaam voor" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" "Een waarschuwing wordt getoond op de hoofdpagina als Suhosin gedetecteerd " "wordt" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Suhosin waarschuwing" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4370,11 +4381,11 @@ msgstr "" "Tekstveld grootte (kolommen) in aanpas modus, deze waarde wordt benadrukt " "weergegeven voor SQL query tekstvelden (*2) en voor het Query scherm (*1.25)" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "Textarea kolommen" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4382,31 +4393,31 @@ msgstr "" "Tekstveld grootte (rijen) in aanpas modus, deze waarde wordt benadrukt " "weergegeven voor SQL query tekstvelden (*2) en voor het Query scherm (*1.25)" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "Tekstveld regels" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "Titel van het browser scherm wanneer een database is geselecteerd" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "Titel van het browser scherm wanneer niets geselecteerd is" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Standaard titel" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "Titel van het browser scherm wanneer een server is geselecteerd" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "Titel van het browser scherm wanneer een tabel is geselecteerd" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4418,28 +4429,28 @@ msgstr "" "For) header moet vertrouwen wanneer deze afkomstig is van het IP 1.2.3.4:[br]" "[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "Lijst van vertrouwde proxy servers" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" "Directory op de server waar te importeren bestanden kunnen worden geupload" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Upload folder" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Maak het mogelijk om te zoeken binnen de gehele database" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Gebruik database doorzoeken" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4447,11 +4458,11 @@ msgstr "" "Wanneer uitgeschakeld, kunnen gebruikers geen van de opties onderaan " "wijzigen, onafhankelijk van het aanvinkveld aan de rechterkant" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "Schakel de ontwikkelaar tab in bij instellingen" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4461,20 +4472,20 @@ msgstr "" "meervoudigeopdracht. Zie libraries/import.lib.php voor de criteria waarop " "wordt gebaseerd hoeveel opdrachten een query mag bevatten." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Uitgebreide uitvoer voor meervoudigeopdrachten" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Controleer de meest recente versie" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" "Schakel de controle op de nieuwste versie in op de hoofdpagina van phpMyAdmin" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4482,7 +4493,7 @@ msgstr "" msgid "Version check" msgstr "Versie controle" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4490,7 +4501,7 @@ msgstr "" "Gebruik [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compressie " "voor import en export operaties" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4510,61 +4521,61 @@ msgstr "HTTP authenticatie" msgid "Signon authentication" msgstr "Signon authenticatie" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV met behulp van LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Werkboek" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Werkboek" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document rekenblad" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "Snel" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "Aangepast" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Database export opties" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV voor MS Excel data" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Tekst" @@ -4656,7 +4667,7 @@ msgstr "Routines" msgid "Return type" msgstr "Retour type" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5060,58 +5071,58 @@ msgstr "Toon BLOB inhoud" msgid "Browser transformation" msgstr "Browser transformaties" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Kopiëren" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "De rij is verwijderd" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "stop proces" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Toon Records" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "totaal" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Query duurde %01.4f sec" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Query resultaat bewerkingen" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Afdrukken (met volledige teksten)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "Grafiek weergeven" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "VIEW aanmaken" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Link niet gevonden" @@ -10350,6 +10361,12 @@ msgstr "VIEW-naam" msgid "Rename view to" msgstr "Hernoem view naar" +#~ msgid "Show table row links on left side" +#~ msgstr "Toon links naar tabelrijen aan de linker zijder" + +#~ msgid "Show table row links on right side" +#~ msgstr "Toon links naar tabelrijen aan de rechter zijde" + #~ msgid "Background color" #~ msgstr "Achtergrondkleur" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 266235635a..a82e4dd311 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -198,7 +198,7 @@ msgstr "" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -214,7 +214,7 @@ msgstr "" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -351,7 +351,7 @@ msgid "Edit or export relational schema" msgstr "" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -418,19 +418,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -538,8 +538,8 @@ msgstr "" msgid "Delete the matches for the %s table?" msgstr "" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -608,7 +608,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, possible-php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -636,20 +636,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +660,15 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "" @@ -722,7 +722,7 @@ msgstr "" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -906,7 +906,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1121,8 +1121,8 @@ msgstr "" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1812,13 +1812,13 @@ msgstr "" msgid "Tables" msgstr "" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1912,7 +1912,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -1974,7 +1974,7 @@ msgstr "" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "" @@ -1986,11 +1986,11 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "" @@ -1999,7 +1999,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "" @@ -2097,11 +2097,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2147,62 +2147,75 @@ msgstr "" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2287,7 +2300,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2749,10 +2762,10 @@ msgstr "" msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "" @@ -3300,7 +3313,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3356,337 +3369,333 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3695,307 +3704,307 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4003,28 +4012,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4034,86 +4043,86 @@ msgstr "" msgid "Password" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4121,56 +4130,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4178,13 +4187,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4204,61 +4213,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4345,7 +4354,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4721,58 +4730,58 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, possible-php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "" diff --git a/po/pl.po b/po/pl.po index c3ecd155e9..a936402d3e 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-02-24 16:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: polish \n" @@ -200,7 +200,7 @@ msgstr "Komentarze" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -216,7 +216,7 @@ msgstr "Nie" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -358,7 +358,7 @@ msgid "Edit or export relational schema" msgstr "Edytuj lub eksportuj schemat relacji" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -426,19 +426,19 @@ msgid "visual builder" msgstr "edytor graficzny" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Sortuj" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Rosnąco" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -549,8 +549,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -620,7 +620,7 @@ msgstr "Monitorowanie jest aktywne." msgid "Tracking is not active." msgstr "Monitorowanie nie jest aktywne." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -650,20 +650,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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" @@ -674,15 +674,15 @@ msgid "Check tables having overhead" msgstr "Zaznacz nieoptymalne" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Widok do druku" @@ -742,7 +742,7 @@ msgstr "Słownik danych" msgid "Tracked tables" msgstr "Monitorowane tabele" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -940,7 +940,7 @@ msgstr "" "importu bez zwiększenia limitów czasowych PHP." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1179,8 +1179,8 @@ msgstr "Mechanizmy" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1919,13 +1919,13 @@ msgstr "współdzielone" msgid "Tables" msgstr "Tabele" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2032,7 +2032,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Niewłaściwa nazwa hosta serwera %1$s. Proszę przyjrzeć się konfiguracji." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2096,7 +2096,7 @@ msgstr "MySQL zwrócił komunikat: " msgid "Failed to connect to SQL validator!" msgstr "Nie można połączyć się z serwerem MySQL" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Wyjaśnij SQL" @@ -2108,11 +2108,11 @@ msgstr "Pomiń wyjaśnienie SQL" msgid "Without PHP Code" msgstr "Bez kodu PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Utwórz kod PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Odśwież" @@ -2121,7 +2121,7 @@ msgstr "Odśwież" msgid "Skip Validate SQL" msgstr "Pomiń sprawdzanie poprawności SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Sprawdź poprawność SQL" @@ -2221,11 +2221,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2272,34 +2272,47 @@ msgstr "Nie można znaleźć katalogu do zapisu przesyłanych plików" msgid "There are no files to upload" msgstr "Nie podałeś plików do wgrania na serwer" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Oba" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Otwórz" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Close" msgid "Closed" msgstr "Zamknij" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "struktura" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "dane" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2307,35 +2320,35 @@ msgstr "dane" msgid "structure and data" msgstr "Struktura i dane" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Pokaż tylko podstawowe opcje do konfiguracji" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Pełna - wyświetl wszystkie opcje konfiguracyjne" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Pełne dodania" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Rozszerzone dodania" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "oba powyższe" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "żadne z powyższych" @@ -2423,7 +2436,7 @@ msgid "Set value: %s" msgstr "Ustaw wartość: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Przywróć wartość domyślną" @@ -2923,10 +2936,10 @@ msgstr "Personalizuj tryb przeglądania" msgid "Customize default options" msgstr "Indywidualizacja opcji eksportu" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3536,7 +3549,7 @@ msgid "Maximum displayed SQL length" msgstr "Maksymalna pokazywana długość SQL" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Użytkownicy nie mogą ustawić wyższej wartości" @@ -3601,205 +3614,199 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -#, fuzzy -#| msgid "Show logo in left frame" -msgid "Show table row links on left side" -msgstr "Pokaż logo w lewej ramce" - -#: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" +msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "Użyj naturalnego sortowania tabel i baz danych" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Sortowanie tabeli wg" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Używaj tylko ikon, tylko tekstu lub ikon i tekstu" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Wygląd interfejsu paska nawigacji" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "Czy kompresować GZip-em wyjście w celu zwiększenia szybkości transferów HTTP" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Kompresja wyjścia GZip" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Domyslny porządek sortowania" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Czy użyć trwałych połączeń do baz danych MySQL" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Trwałe połączenia" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Brakuje tabel przechowujących konfigurację phpMyAdmin" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Wygląd interfejsu do operacji na tabeli" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Chroń kolumny binarne" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Permanentna historia zapytań" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Ile zapytań ma być przechowywanych w historii" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Długość historii zapytań" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Zakładka wyświetlana po otwarciu nowego okna zapytań" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Domyślna zakładka okna zapytań" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Wysokość pola zapytania (w pikselach)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Wysokość pola zapytania" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Szerokość pola zapytania (w pikselach)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Szerokość pola zapytania" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Wybierz funckje, które będą użyte do konwersji kodowania napisów" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Mechanizm konwersji kodowania napisów" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Zmień nazwę tabeli na" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Liczba wątków naprawiających" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Pokaż przycisk pomocy" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Katalog na serwerze, w którym będą zapisywane eksportowane pliki" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Katalog do zapisu" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Należy pozostawić puste jeśli nie jest używane" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 #, fuzzy msgid "Host authorization order" msgstr "Typ uwierzytelniania" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Pozostaw puste, aby użyć wartości domyślnych" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 #, fuzzy msgid "Host authorization rules" msgstr "Uwierzytelnianie sprzętowe nie powiodło się" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Pozwól na logowanie bez hasła" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Pozwól na logowanie się roota" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "Nazwa \"Auth Realm\" wyświetlana przy autoryzacji HTTP Basic" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3809,19 +3816,19 @@ msgstr "" "SweKey[/a]. Relatywna ścieżka do głównego katalogu phpMyAdmin, np. ./swekey." "conf" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "Plik konfiguracyjny SweKey" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Jaka metoda uwierzytelniania ma być użyta" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Typ uwierzytelniania" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3829,11 +3836,11 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać zakładek [a@http://wiki.phpmyadmin.net/" "pma/bookmark]bookmark[/a]. Sugerowana nazwa: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Tabela zakładek" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3841,32 +3848,32 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać komentarzy i typów mime. Sugerowana " "nazwa: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Tabela informacji o kolumnach" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Czy połączenie do serwera MySQL ma być kompresowane" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Kompresja połączenia" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Sposób połączenia z serwerem; w razie niepewności, należy pozostawić tcp" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Typ połączenia" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Hasło użytkownika monitorującego" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3875,19 +3882,19 @@ msgstr "" "jest dostępnych pod adresem: [a@http://wiki.phpmyadmin.net/pma/controluser]" "wiki[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Użytkownik monitorujący" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Zliczaj tabele podczas pokazywania listy bazy danych" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Zliczaj tabele" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3895,11 +3902,11 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać trybu projektowania. Sugerowana nazwa: " "[kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Tabela trybu projektowania" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3908,29 +3915,29 @@ msgstr "" "tracker.php?aid=1849494]PMA bug tracker[/a] i [a@http://bugs.mysql.com/19588]" "MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Wyłącz używanie INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Jakiego rozszerzenie PHP ma być użyte; o ile jest obsługiwane, należy podać " "mysqli" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Rozszerzenie PHP" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Ukryj bazy danych pasujące do wyrażenia regularnego (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Ukryj bazy danych" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3938,31 +3945,31 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać historii zapytań SQL. Sugerowana nazwa: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "Tabela historii zapytań SQL" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Nazwa hosta na którym uruchomiony jest serwer MySQL" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Nazwa hosta serwera" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "URL wylogowania" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Ma być podejmowana próba łączenia się bez hasła" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Łącz się bez hasła" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -3978,31 +3985,31 @@ msgstr "" "znakiem \\, by uzyskać je w znaczeniu dosłownym, np. 'moja\\_baza' a nie " "'moja_baza'" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Pokaż tylko wymienione bazy danych" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" "Należy pozostawić puste w przypadku innego niż config typu uwierzytelniania" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Hasło dla uwierzytelniania typu config" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Pozostaw puste, aby nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "Schemat PDF: strony tabeli" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4013,22 +4020,22 @@ msgstr "" "pmadb]pmadb[/a]. Puste pole oznacza brak obsługi. Domyślna wartość: [kbd]" "phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "nazwa bazy danych" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Port na którym nasłuchuje serwer MySQL, pole puste oznacza wartość domyślną" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Port serwera" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" @@ -4040,13 +4047,13 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać komentarzy i typów mime. Sugerowana " "nazwa: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Przypominaj nazwę użytkownika" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4054,19 +4061,19 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać [a@http://wiki.phpmyadmin.net/pma/" "relation]relation-links[/a]. Sugerowana nazwa: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Tabela relacji" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "Polecenie SQL do pobrania dostępnych baz danych" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "Polecenie SHOW DATABASES" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4074,56 +4081,56 @@ msgstr "" "Zobacz przykład usługi pojedynczego logowania (Signon) [a@http://wiki." "phpmyadmin.net/pma/auth_types#signon]authentication types[/a]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Nazwa sesji usługi pojedynczego logowania (Signon)" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "URL usługi pojedynczego logowania (Signon)" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Gniazdko, na którym nasłuchuje serwer MySQL, pole puste oznacza wartość " "domyślną" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Gniazdo serwera" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "Aktywuj SSL do połączeń z serwerem MySQL" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Używaj SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Pozostaw puste, aby nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "Schemat PDF: współrzędne tabeli" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Wyświetl komentarze dla kolumn" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" @@ -4135,89 +4142,89 @@ msgstr "" "Pozostaw puste, aby nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "Tabela przechowująca preferencje użytkowników" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "Dodaj DROP DATABASE" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "Dodaj DROP TABLE" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "Dodaj DROP VIEW" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Cecha" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "Tabela śledzenia zapytań SQL" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Tryb automatycznej naprawy" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "Tabela przechowująca preferencje użytkowników" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "Użytkownik dla uwierzytelniania typu config" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4225,11 +4232,11 @@ msgstr "" "Dezaktywuj jeśli jesteś pewien, że tabele pma_* są zaktualizowane. To " "zapobiega ciągłemu sprawdzaniu kompatybilności, przez co zwiększa wydajność" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Szczegółowe sprawdzanie" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4237,19 +4244,19 @@ msgstr "" "Przyjazny opis serwera dla użytkownika. Pozostaw puste, aby wyświetlić nazwę " "hosta." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Szczegółowa nazwa serwera" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Pozwól wyświetlać wszystkie rekordy" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4260,35 +4267,35 @@ msgstr "" "pliku konfiguracyjnym. To nie ogranicza możliwości wykonania tego samego " "polecenia bezpośrednio" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Pokaż formularz zmiany hasła" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Pokaż formularz tworzenia bazy danych" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Pokaż otwarte tabele" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Wyświetla pola z funkcjami w trybie edycji/dodawania" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Pokaż pola z funkcjami" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4296,33 +4303,33 @@ msgstr "" "Pokazuje odnośnik do [a@http://php.net/manual/function.phpinfo.php]phpinfo()" "[/a]" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Pokaż odnośnik phpinfo()" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Pokaż szczegółowe informacje o serwerze MySQL" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Czy mają być pokazywane zapytania SQL generowane przez phpMyAdmina" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Pokaż zapytania SQL" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Pozwala wyświetlać statystyki bazy danych i tabeli (np. wykorzystanie " "miejsca)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Pokaż statystyki" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4330,11 +4337,11 @@ msgstr "" "Jeśli podpowiedzi są włączone i ustawiony jest komentarz do bazy danych, " "zamienia komentarz i nazwę bazy danych" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Wyświetla komentarz do bazy danych zamiast jej nazwy" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4346,30 +4353,30 @@ msgstr "" "['LeftFrameTableSeparator']. A więc tylko katalog jest nazywany jako alias, " "a nazwa tabeli pozostaje niezmieniona" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Wyświetla komentarz do tabeli zamiast jej nazwy" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Wyświetla komentarz do tabeli w postaci podpowiedzi" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Zaznacza używane tabele i umożliwia pokazanie baz danych z zablokowanymi " "tabelami" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Pomiń zablokowane tabele" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "Wymaga włączenia walidatora SQL" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4379,7 +4386,7 @@ msgstr "Wymaga włączenia walidatora SQL" msgid "Password" msgstr "Hasło" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4387,11 +4394,11 @@ msgstr "" "[strong]Ostrzeżenie:[/strong] wymaga zainstalowanego rozszerzenia PHP SOAP " "lub PEAR SOAP" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "Włącz walidator SQL" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4399,12 +4406,12 @@ msgstr "" "Jeśli masz swoją nazwa użytkownika, ustaw ją tutaj (domyślnie [kbd]anonymous" "[/kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Nazwa użytkownika" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4412,33 +4419,33 @@ msgstr "" "Sugeruje nazwę bazy danych podczas operacji "Utwórz bazę danych" " "(jeśli możliwe) lub zostawia puste pole" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Zasugeruj nazwę nowej bazy danych" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" "Ostrzeżenie jest wyświetlane na stronie głównej, jeśli wykryte jest " "rozszerzenie Suhosin" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Ostrzeżenie Suhosin" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dodaj/usuń pola" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4446,31 +4453,31 @@ msgstr "" "Wielkość pola textarea (wierszy) w trybie edycji. Wartość będzie powięszkona " "dla zapytań SQL (*@) i okna zapytań (*1.25)" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "Wierszy w polu textarea" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "Tytuł okna, jeśli jest wybrana baza danych" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "Tytuł okna, jeśli nic nie jest wybrane" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Domyślny tytuł" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "Tytuł okna, jeśli wybrany jest serwer" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4482,30 +4489,30 @@ msgstr "" "nagłówku HTTP_X_FORWARDED_FOR (X-Forwarded-For) przesłanym przez serwer " "pośredniczący (proxy) 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" "Lista zaufanych adresów IP serwerów pośredniczących (proxy) dla reguł allow/" "deny" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" "Katalog na serwerze, do którego można przesyłać pliki w celu importowania" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Katalog na przesyłane pliki" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Pozwól na przeszukiwanie całej bazy danych" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Przeszukiwanie bazy danych" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4513,11 +4520,11 @@ msgstr "" "Kiedy wyłączone, użytkownicy nie mogą zmienić żadnej z poniższych opcji , " "wyłączając zaznaczone po prawej" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "Włącz zakładkę Developerską w ustawieniach" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4527,19 +4534,19 @@ msgstr "" "Zobacz libraries/import.lib.php, aby dowiedzieć się ile instrukcja może " "domyślnie zawierać zapytań." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Szczegóły wielokrotnych instrukcji" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Sprawdź, czy jest nowsza wersja" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Włącza sprawdzanie czy są aktualizacje phpMyAdmin" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4547,7 +4554,7 @@ msgstr "Włącza sprawdzanie czy są aktualizacje phpMyAdmin" msgid "Version check" msgstr "Sprawdzenie wersji" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4555,7 +4562,7 @@ msgstr "" "Włącza format kompresji [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP" "[/a] dla operacji importu i eksportu" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4576,63 +4583,63 @@ msgstr "Uwierzytelnianie HTTP" msgid "Signon authentication" msgstr "Typ uwierzytelniania" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV przy użyciu LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Skoroszyt Excel 97-2003 XLS" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Skoroszyt Excel 2007 XLSX" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Arkusz kalkulacyjny OpenDocument" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "Szybko" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Własny kolor" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Opcje eksportu bazy danych" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV dla MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Tekst w formacie Open Document" @@ -4726,7 +4733,7 @@ msgstr "Procedury i funkcje" msgid "Return type" msgstr "Zwracany typ" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5190,61 +5197,61 @@ msgstr "Pokaż zawartość BLOB" msgid "Browser transformation" msgstr "Sposób prezentacji danych" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Kopiuj" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Rekord został skasowany" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Unicestwij" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "w zapytaniu" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Pokaż rekordy " -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "wszystkich" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Wykonanie zapytania trwało %01.4f sekund(y)" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Operacja na wynikach zapytania" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Widok do druku (z pełnymi tekstami)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Wyświetl schemat PDF" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Utwórz związek" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Łącze nie znalezione" @@ -10671,6 +10678,11 @@ msgstr "Nazwa widoku" msgid "Rename view to" msgstr "Zmień nazwę perspektywy na" +#, fuzzy +#~| msgid "Show logo in left frame" +#~ msgid "Show table row links on left side" +#~ msgstr "Pokaż logo w lewej ramce" + #~ msgid "Background color" #~ msgstr "Kolor tła" diff --git a/po/pt.po b/po/pt.po index 51b8aa377d..0bcdca5643 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-03-26 03:23+0200\n" "Last-Translator: \n" "Language-Team: portuguese \n" @@ -198,7 +198,7 @@ msgstr "Comentários" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -214,7 +214,7 @@ msgstr "Não" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -353,7 +353,7 @@ msgid "Edit or export relational schema" msgstr "Editar ou exporta o esquema relacional (schema)" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -420,19 +420,19 @@ msgid "visual builder" msgstr "Construtor Gráfico" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Ordenação" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Ascendente" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -540,8 +540,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -610,7 +610,7 @@ 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:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -641,20 +641,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +665,15 @@ msgid "Check tables having overhead" msgstr "Verificar tabelas com overhead" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Vista de impressão" @@ -732,7 +732,7 @@ msgstr "Dicionario de dados" msgid "Tracked tables" msgstr "Tabelas em tracking" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -935,7 +935,7 @@ msgstr "" "incremente os tempos de limite de php." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1167,8 +1167,8 @@ msgstr "Editar em linha" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1928,13 +1928,13 @@ msgstr "" msgid "Tables" msgstr "Tabelas" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2041,7 +2041,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2103,7 +2103,7 @@ msgstr "Mensagens do MySQL : " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Explicar SQL" @@ -2115,11 +2115,11 @@ msgstr "Saltar Explicar SQL" msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "" @@ -2128,7 +2128,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "Saltar a validação SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Validar SQL" @@ -2226,11 +2226,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2277,21 +2277,34 @@ msgstr "Não é possivel alcançar a directoria que configurou para fazer upload msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Aspa não fechada" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2299,13 +2312,13 @@ msgstr "Aspa não fechada" msgid "structure" msgstr "Estrutura" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2313,35 +2326,35 @@ msgstr "" msgid "structure and data" msgstr "Estrutura e dados" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Instrucções de inserção completas" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Instrucções de inserção múltiplas" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2429,7 +2442,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2924,10 +2937,10 @@ msgstr "" msgid "Customize default options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "Dados CSV" @@ -3511,7 +3524,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3569,352 +3582,348 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Alterar a ordem da tabela por" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Janela de Query" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Janela de Query" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Janela de Query" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Renomeia a tabela para " -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "Ligações" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Sem tablelas" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 #, fuzzy msgid "PHP extension to use" msgstr "versão do PHP" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "Sem bases de dados" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "Escolha do Servidor" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3923,321 +3932,321 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy msgid "Database name" msgstr "Base de Dados" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "Escolha do Servidor" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analizar tabela" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Reparar tabela" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "Escolha do Servidor" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Mostrando comentários das Colunas" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Itens" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy msgid "Automatically create versions" msgstr "Versão do servidor" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy msgid "Show field types" msgstr "Mostra tabelas" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "Mostrar queries completos" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Estatísticas dos registos" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4245,29 +4254,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Skip locked tables" msgstr "Mostra tabelas" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4277,91 +4286,91 @@ msgstr "" msgid "Password" msgstr "Palavra-passe" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "Utilizador :" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Adicionar/Remover Campos" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Defeito" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4369,56 +4378,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4426,13 +4435,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4452,61 +4461,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Opções de exportação da Base de Dados" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "dados CSV para MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4594,7 +4603,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5022,61 +5031,61 @@ msgstr "" msgid "Browser transformation" msgstr "Transformação do navegador" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Registo eliminado" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Termina" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "na pesquisa" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Mostrando registos " -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "O Query demorou %01.4f sec" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Vista de impressão (com texto inteiro)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Mostrar o esquema de PDF" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Versão do servidor" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Link não encontrado" diff --git a/po/pt_BR.po b/po/pt_BR.po index d8fe5f3ab0..54ff0eda2d 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.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-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-04-14 17:44+0200\n" "Last-Translator: \n" "Language-Team: brazilian_portuguese \n" @@ -199,7 +199,7 @@ msgstr "Comentários" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "Não" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -354,7 +354,7 @@ msgid "Edit or export relational schema" msgstr "Editar ou exportar esquema relacional" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -421,19 +421,19 @@ msgid "visual builder" msgstr "construtor visual" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Ordenar" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Ascendente" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -543,8 +543,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -613,7 +613,7 @@ msgstr "Rastreamento está ativo." msgid "Tracking is not active." msgstr "Rastreamento não está ativo." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -643,20 +643,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +667,15 @@ msgid "Check tables having overhead" msgstr "Verificar sobre-carga" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Visualização para impressão" @@ -734,7 +734,7 @@ msgstr "Dicionário de dados" msgid "Tracked tables" msgstr "Tabelas rastreadas" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -934,7 +934,7 @@ msgstr "" "aumente o tempo limite do PHP." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1172,8 +1172,8 @@ msgstr "Engines" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1914,13 +1914,13 @@ msgstr "compartilhado" msgid "Tables" msgstr "Tabelas" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2029,7 +2029,7 @@ msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" "Nome de serivdor inválido para o servidor %1$s. Verifique suas configurações." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2091,7 +2091,7 @@ msgstr "Mensagens do MySQL : " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Explicar SQL" @@ -2103,11 +2103,11 @@ msgstr "Pular Explicação SQL" msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Atualizar" @@ -2116,7 +2116,7 @@ msgstr "Atualizar" msgid "Skip Validate SQL" msgstr "Pular validação SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Validar SQL" @@ -2216,11 +2216,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2267,19 +2267,34 @@ msgstr "" msgid "There are no files to upload" msgstr "Não existem arquivos para fazer upload" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Ambos" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "Altura" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Abrir" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Fechado" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2287,13 +2302,13 @@ msgstr "Fechado" msgid "structure" msgstr "Estrutura" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "dados" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2301,35 +2316,35 @@ msgstr "dados" msgid "structure and data" msgstr "Estrutura e dados" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Rápida - exibir apenas o mínimo de opções para configurar" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Personalizada - exibir todas as opções possíveis para configurar" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "Personalizada - como acima, mas sem a escolha rápida/personalizada." -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Inserções completas" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Inserções extendidas" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "ambos acima" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 #, fuzzy msgid "neither of the above" msgstr "nenhuma das acima" @@ -2415,7 +2430,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2906,10 +2921,10 @@ msgstr "" msgid "Customize default options" msgstr "Opções de exportação do Banco de Dados" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3493,7 +3508,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3550,349 +3565,345 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Ordem natural" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Usar apenas ícones, apenas texto ou ambos" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Conexões persistentes" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Histórico de consultas permanente" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Quantas consultas são mantidas no histórico" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Tamanho do histórico de consultas" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Altura da janela de consultas (em pixels)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Altura da janela de consultas" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Largura da janela de consultas (em pixels)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Largura da janela de consultas" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Renomear a tabela para" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Processos de reparo" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Exibir botão de ajuda" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 #, fuzzy msgid "Save directory" msgstr "Diretório raiz de dados" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 #, fuzzy msgid "Host authorization order" msgstr "Falha na autenticação de hardware" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 #, fuzzy msgid "Host authorization rules" msgstr "Falha na autenticação de hardware" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 #, fuzzy msgid "Authentication method to use" msgstr "Autenticando..." -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Tipo de autenticação" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Tipo de conexão" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Sem tabelas" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 #, fuzzy msgid "Designer table" msgstr "Desfragmentar tabela" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Desabilitar o uso do INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Qual extensão do PHP utilizar: você deveria utilizar mysqli se suportado" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Utilizar a extensão do PHP" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Ocultar bancos de dados" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "nome do servidor" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Tentando conectar sem senha" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3901,318 +3912,318 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Nome do banco de dados" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Porta do servidor" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analizar tabela" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Reparar tabela" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "comando SHOW DATABASES" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Socket do servidor" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Utilizar SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Exibindo comentários da coluna" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Desfragmentar tabela" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "Adicionar DROP DATABASE" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "Adicionar DROP TABLE" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "Adicionar DROP VIEW" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Comandos" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Criar versões automáticamente" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Permitir mostrar todas as linhas" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Exibir tabelas abertas" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Exibir link para o phpinfo()" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Exibir informações detalhadas do servidor MySQL" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Mostrar consultas SQL" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Mostrar estatísticas" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4220,29 +4231,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Mostrar comentários das tabelas em tooltips" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Skip locked tables" msgstr "Exibir tabelas abertas" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4252,88 +4263,88 @@ msgstr "" msgid "Password" msgstr "Senha" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Usuário" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Aviso do Suhosin" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Adicionar/Remover colunas" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Título padrão" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4341,57 +4352,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 #, fuzzy msgid "Upload directory" msgstr "Diretório de upload" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4399,13 +4410,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4429,61 +4440,61 @@ msgstr "Falha na autenticação de hardware" msgid "Signon authentication" msgstr "Falha na autenticação de hardware" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV usando LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Planilha Open Document" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Opções de exportação do Banco de Dados" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV para dados MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Abrir Documento de Texto" @@ -4570,7 +4581,7 @@ msgstr "Rotinas" msgid "Return type" msgstr "Tipo de returno" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5017,60 +5028,60 @@ msgstr "Exibir conteúdo BLOB" msgid "Browser transformation" msgstr "Transformações do navegador" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Copiar" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Registro eliminado" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Matar" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "na consulta" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Mostrando registros " -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Consulta levou %01.4f segundos" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Ver impressão (com textos completos)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "Exibir gráfico" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy #| msgid "Create User" msgid "Create view" msgstr "Criar usuário" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Link não encontrado" diff --git a/po/ro.po b/po/ro.po index c77da667eb..6d9749d264 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: romanian \n" @@ -202,7 +202,7 @@ msgstr "Comentarii" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -218,7 +218,7 @@ msgstr "Nu" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -365,7 +365,7 @@ msgid "Edit or export relational schema" msgstr "Schema relațională" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -434,19 +434,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Sortare" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Crescătoare" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -560,8 +560,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -634,7 +634,7 @@ msgstr "Monitorizarea este activată" msgid "Tracking is not active." msgstr "Monitorizarea nu este activată" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -663,20 +663,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +687,15 @@ msgid "Check tables having overhead" msgstr "Verificare depășit" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Vizualizare imprimare" @@ -755,7 +755,7 @@ msgstr "Dicționar de date" msgid "Tracked tables" msgstr "Tabelele urmărite" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -962,7 +962,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:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1220,8 +1220,8 @@ msgstr "Motoare" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1987,13 +1987,13 @@ msgstr "" msgid "Tables" msgstr "Tabele" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2105,7 +2105,7 @@ msgstr "" "Gazdă nevalidă pentru serverul %1$s. Vă rugăm să revizuiți configurația " "dumneavoastră." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2168,7 +2168,7 @@ msgstr "MySQL zice: " msgid "Failed to connect to SQL validator!" msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Explică SQL" @@ -2180,11 +2180,11 @@ msgstr "Sari peste explicarea SQL" msgid "Without PHP Code" msgstr "fără cod PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Creează cod PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Reîncarcă" @@ -2193,7 +2193,7 @@ msgstr "Reîncarcă" msgid "Skip Validate SQL" msgstr "Sari peste validarea SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Validează SQL" @@ -2293,11 +2293,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2344,21 +2344,34 @@ msgstr "Directorul stabilit pentru încărcare nu poate fi găsit" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Citare neînchisă" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2366,13 +2379,13 @@ msgstr "Citare neînchisă" msgid "structure" msgstr "Structură" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2380,35 +2393,35 @@ msgstr "" msgid "structure and data" msgstr "Structura și date" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Inserări complete" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Inserări extinse" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2497,7 +2510,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2995,10 +3008,10 @@ msgstr "Personalizează regimul de navigare" msgid "Customize default options" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3589,7 +3602,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3648,354 +3661,350 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Alterare „ordonare tabel după”" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Fereastra de comandă" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Fereastra de comandă" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Fereastra de comandă" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Redenumire tabel la" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Repară firele de execuție" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 #, fuzzy msgid "Save directory" msgstr "Directorul de bază pentru date" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 #, fuzzy msgid "Host authorization order" msgstr "Tipul autentificării" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 #, fuzzy msgid "Host authorization rules" msgstr "Hardware authentication failed" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Permite autentificarea ca „root”" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Metoda de autentificare de utilizat" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Tipul autentificării" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Comprimă conexiunea" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Tipul conexiunii" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Nu există tabele" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 #, fuzzy msgid "Designer table" msgstr "Defragmentare tabel" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Extensia PHP de utilizat" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Ascunde baze de date" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Numele de gazdă al serverului" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Încearcă conectarea fără parolă" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Conectează fără parolă" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -4004,326 +4013,326 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Lăsați gol dacă nu utilizați „config auth”" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Parola pentru „config auth”" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "nume bază de date" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "Portul la care ascultă serverul MySQL, lăsați gol pentru implicit" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Portul serverului" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analizare tabel" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Reparare tabel" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 #, fuzzy msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "Portul la care ascultă serverul MySQL, lăsați gol pentru implicit" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Soclul serverului" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 #, fuzzy msgid "Enable SSL for connection to MySQL server" msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Utilizează SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Arată comentariile coloanei" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragmentare tabel" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Comenzi" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Regim de recuperare automată" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "Utilizator pentru „config auth”" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Afișează tabele deschise" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "Afișare comandă întreagă" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Statisticile rîndului" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4331,29 +4340,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Skip locked tables" msgstr "Afișează tabele deschise" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4363,90 +4372,90 @@ msgstr "" msgid "Password" msgstr "Parola" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "Nume utilizator:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Adaugă/șterge coloane" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy msgid "Default title" msgstr "Redenumire bază de date în" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4454,57 +4463,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 #, fuzzy msgid "Upload directory" msgstr "Directorul de bază pentru date" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4512,13 +4521,13 @@ msgstr "" msgid "Version check" msgstr "Verificarea versiunii" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4542,63 +4551,63 @@ msgstr "Tipul autentificării" msgid "Signon authentication" msgstr "Tipul autentificării" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV folosind LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Foaie de calcul Open Document" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Culoare personalizată" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Opțiuni de exportare a bazei de date" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "Date CSV pentru MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Text Open Document" @@ -4686,7 +4695,7 @@ msgstr "Rutine" msgid "Return type" msgstr "Tipul întors" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5137,61 +5146,61 @@ msgstr "" msgid "Browser transformation" msgstr "Transformare navigator" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Linia a fost ștearsă" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Oprește" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "în interogarea" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Afișează înregistrări" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "comanda a durat %01.4f sec" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Operațiuni asupra rezultatelor interogării" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Vizualizare listare (împreună cu text)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Arată schema PDF" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Creare relație" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Legatură nevalidă" diff --git a/po/ru.po b/po/ru.po index a4ca306d6a..244bb4d43e 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" -"PO-Revision-Date: 2011-03-13 21:17+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"PO-Revision-Date: 2011-06-01 22:34+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" "Language: ru\n" @@ -200,7 +200,7 @@ msgstr "Комментарии" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -216,7 +216,7 @@ msgstr "Нет" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -355,7 +355,7 @@ msgid "Edit or export relational schema" msgstr "Редакция или экспорт схемы связей" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -424,19 +424,19 @@ msgid "visual builder" msgstr "визуальный составитель запросов" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Отсортировать" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "По возрастанию" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -545,8 +545,8 @@ msgstr "Обзор" msgid "Delete the matches for the %s table?" msgstr "Удалить соответствия для таблицы %s?" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -616,7 +616,7 @@ msgstr "Слежение включено." msgid "Tracking is not active." msgstr "Слежение выключено." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -646,20 +646,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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" @@ -670,15 +670,15 @@ msgid "Check tables having overhead" msgstr "Отметить требующие оптимизации" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Версия для печати" @@ -713,22 +713,16 @@ msgid "Analyze table" msgstr "Анализ таблицы" #: db_structure.php:521 -#, fuzzy -#| msgid "Go to table" msgid "Add prefix to table" -msgstr "Перейти к таблице" +msgstr "Добавить префикс таблицы" #: db_structure.php:523 libraries/mult_submits.inc.php:246 -#, fuzzy -#| msgid "Replace table data with file" msgid "Replace table prefix" -msgstr "Заместить данные таблицы данными из файла" +msgstr "Заменить префикс таблицы" #: db_structure.php:525 libraries/mult_submits.inc.php:246 -#, fuzzy -#| msgid "Replace table data with file" msgid "Copy table with prefix" -msgstr "Заместить данные таблицы данными из файла" +msgstr "Копировать таблицу с префиксом" #: db_structure.php:574 libraries/schema/User_Schema.class.php:387 msgid "Data Dictionary" @@ -738,7 +732,7 @@ msgstr "Словарь данных" msgid "Tracked tables" msgstr "Отслеживаемые таблицы" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -940,7 +934,7 @@ msgstr "" "пока не будет увеличено ограничение времени выполнения php-сценариев." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -979,16 +973,12 @@ msgid "You are about to DESTROY a complete database!" msgstr "База данных будет полностью УДАЛЕНА!" #: js/messages.php:32 -#, fuzzy -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to DESTROY a complete table!" -msgstr "База данных будет полностью УДАЛЕНА!" +msgstr "Таблица будет полностью УДАЛЕНА!" #: js/messages.php:33 -#, fuzzy -#| msgid "You are about to DESTROY a complete database!" msgid "You are about to TRUNCATE a complete table!" -msgstr "База данных будет полностью УДАЛЕНА!" +msgstr "Таблица будет полностью ОЧИЩЕНА от данных!" #: js/messages.php:34 msgid "Dropping Event" @@ -1125,33 +1115,26 @@ msgid "Searching" msgstr "Поиск" #: js/messages.php:84 -#, fuzzy -#| msgid "Hide search criteria" msgid "Hide search results" -msgstr "Скрыть параметры поиска" +msgstr "Скрыть результаты поиска" #: js/messages.php:85 -#, fuzzy -#| msgid "Show search criteria" msgid "Show search results" -msgstr "Отобразить параметры поиска" +msgstr "Отобразить результаты поиска" #: js/messages.php:86 -#, fuzzy -#| msgid "Browse" msgid "Browsing" -msgstr "Обзор" +msgstr "Просмотр" #: js/messages.php:87 -#, fuzzy -#| msgid "Deleting %s" msgid "Deleting" -msgstr "Удаление %s" +msgstr "Удаление" #: js/messages.php:90 msgid "" "Note: If the file contains multiple tables, they will be combined into one" msgstr "" +"Замечание: если файл содержит множество таблиц, они будут объединены в одну" #: js/messages.php:93 msgid "Hide query box" @@ -1167,8 +1150,8 @@ msgstr "Быстрая правка" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1223,6 +1206,8 @@ msgid "" "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:115 msgid "Add an option for column " @@ -1259,10 +1244,8 @@ msgid ", latest stable version:" msgstr ", последняя стабильная версия:" #: js/messages.php:129 -#, fuzzy -#| msgid "Jump to database" msgid "up to date" -msgstr "Перейти к базе данных" +msgstr "актуально" #. l10n: Display text for calendar close link #: js/messages.php:147 @@ -1638,22 +1621,16 @@ msgstr[1] "Добавлено %1$d строки." msgstr[2] "Добавлено %1$d строк." #: libraries/RecentTable.class.php:113 -#, fuzzy -#| msgid "Could not save configuration" msgid "Could not save recent table" -msgstr "Не получилось сохранить настройки" +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 configured servers" msgid "There are no recent tables" -msgstr "Отсутствуют настроенные сервера" +msgstr "Отсутствуют недавние таблицы" #: libraries/StorageEngine.class.php:194 msgid "" @@ -1696,7 +1673,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 @@ -1887,13 +1864,13 @@ msgstr "общий" msgid "Tables" msgstr "Таблицы" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1997,7 +1974,7 @@ msgstr "" "Для сервера %1$s указано неверное имя хоста. Исправьте настройки заданные в " "конфигурационном файле phpMyAdmin." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2060,7 +2037,7 @@ msgstr "Ответ MySQL: " msgid "Failed to connect to SQL validator!" msgstr "Невозможно соединиться с SQL валидатором!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Анализ SQL запроса" @@ -2072,11 +2049,11 @@ msgstr "Убрать анализ SQL" msgid "Without PHP Code" msgstr "Убрать PHP-код" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Обновить" @@ -2085,7 +2062,7 @@ msgstr "Обновить" msgid "Skip Validate SQL" msgstr "Убрать проверку синтаксиса SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Проверка синтаксиса" @@ -2184,11 +2161,11 @@ msgstr "" "Работа параметра "%s" подвержена ошибке, описание смотрите на %s" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2234,62 +2211,77 @@ msgstr "Установленный каталог загрузки не дост msgid "There are no files to upload" msgstr "Файлы для загрузки отсутствуют" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Оба" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "Высота" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Открыт" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Закрыт" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "структура" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "данные" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "структура и данные" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Быстро - отображать минимальный набор параметров" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "По выбору - отображать все возможные параметры" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "По выбору - как выше, но без выбора быстро/по выбору" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "полная вставка" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "расширенная вставка" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "оба верхних варианта" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "иначе, чем в вариантах выше" @@ -2374,7 +2366,7 @@ msgid "Set value: %s" msgstr "Установить значение: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Восстановить изначальное значение" @@ -2868,10 +2860,10 @@ msgstr "Настройка режима обзора данных" msgid "Customize default options" msgstr "Настройте параметры экспорта используемые по умолчанию" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3362,16 +3354,14 @@ msgid "Enable highlighting" msgstr "Включить подсветку" #: libraries/config/messages.inc.php:286 -#, fuzzy -#| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of recently used tables; set 0 to disable" -msgstr "Максимальное количество таблиц отображаемых в списке" +msgstr "" +"Максимальное количество недавно использованных таблиц; для отключения " +"установить 0" #: libraries/config/messages.inc.php:287 -#, fuzzy -#| msgid "Untracked tables" msgid "Recently used tables" -msgstr "Неотслеживаемые таблицы" +msgstr "Недавно использованные таблицы" #: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" @@ -3467,7 +3457,7 @@ msgid "Maximum displayed SQL length" msgstr "Максимальная длинна отображаемого SQL" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Пользователи не смогут установить более высокое значение" @@ -3531,39 +3521,35 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "Это ссылки Редактировать, Редактировать быстро, Копировать и Удалить" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "Вывести ссылки слева" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "Вывести ссылки справа" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "Использовать естественный порядок сортировки имен таблиц и баз данных" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Порядок сортировки" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Использовать только иконки, только текст, или все вместе" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Иконки в строке навигации" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "Используйте буферизацию вывода GZip для увеличения передачи данных по HTTP" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Буферизация вывода GZip" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3571,19 +3557,19 @@ msgstr "" "[kbd]SMART[/kbd] - означает обратный порядок сортировки для полей имеющих " "тип TIME, DATE, DATETIME и TIMESTAMP; в ином случае порядок будет прямой" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Порядок сортировки" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Использовать постоянные соединения с базами данных MySQL" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Постоянные соединения" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3592,23 +3578,23 @@ msgstr "" "Отключить предупреждение отображаемое на странице структуры базы данных при " "отсутствии таблиц необходимых для хранения конфигурации phpMyAdmin" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Отсутствие таблиц хранения конфигурации phpMyAdmin" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Иконки операций над таблицами" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Запретить возможность редактирования данных полей типа BLOB и BINARY" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Защитить бинарные данные" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3618,121 +3604,119 @@ msgstr "" "настройка расширений phpMyAdmin). При отключении, для истории запросов " "используется JavaScript (история теряется при закрытии окна)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Постоянная история запросов" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Количество запросов хранимых в истории" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Длинна истории запросов" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" "Вкладка отображаемая при открытии нового всплывающего окна выполнения " "запросов" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Вкладка по умолчанию для окна запросов" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Высота окна запроса (в пикселях)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Высота окна запроса" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Ширина окна запроса (в пикселях)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Ширина окна запроса" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Выберите функцию, которая будет использоваться при перекодировании" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Механизм перекодирования" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" -msgstr "" +msgstr "При просмотре таблиц, запоминается сортировка каждой таблицы" + +#: libraries/config/messages.inc.php:349 +msgid "Remember table's sorting" +msgstr "Запоминать сортировку таблиц" #: libraries/config/messages.inc.php:350 -#, fuzzy -#| msgid "Rename table to" -msgid "Remember table's sorting" -msgstr "Переименовать таблицу в" - -#: libraries/config/messages.inc.php:351 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Повторять заголовки через каждые X ячеек; [kbd]0[/kbd] отключает данную " "функцию" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Повтор заголовков" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Отобразить кнопку помощи вместо текста Документация" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Отобразить кнопку помощи" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Каталог на сервере, в который можно сохранять файлы при экспорте" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Каталог сохранения" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Оставьте поле пустым, если не используете данную функцию" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "Последовательность идентификации хоста" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Оставьте поле пустым для использования значения по умолчанию" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "Правила идентификации хоста" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Разрешать подключения без пароля" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Разрешить вход под root" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "Отображаемая строка при идентификации методом HTTP" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "Область HTTP" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3742,19 +3726,19 @@ msgstr "" "идентификации SweKey[/a] (пример, если располагается ниже корня хоста: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "Конфигурационный файл SweKey" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Используемый метод идентификации" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Тип идентификации" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3762,11 +3746,11 @@ msgstr "" "Для отключения поддержки [a@http://wiki.phpmyadmin.net/pma/bookmark]закладок" "[/a] оставьте поле пустым. Рекомендуется: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Таблица закладок" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3774,31 +3758,31 @@ msgstr "" "Для отключения поддержки комментариев/mime-типов полей оставьте поле пустым. " "Рекомендуется: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Таблица информации полей" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Соединение с сервером MySQL с использованием сжатия данных" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Соединение со сжатием" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Способ соединения с сервером. Если не уверены, оставьте [kbd]tcp[/kbd]" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Тип соединения" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Пароль выделенного пользователя" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3806,19 +3790,19 @@ msgstr "" "Специальный пользователь MySQL с ограниченными привилегиями. Подробнее " "смотрите на [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Выделенный пользователь" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "При выводе баз данных показывать количество таблиц в них" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Подсчитывать таблицы" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3826,11 +3810,11 @@ msgstr "" "Для отключения поддержки Дизайнера Связей оставьте поле пустым. " "Рекомендуется: [kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Таблица Дизайнера" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3838,29 +3822,29 @@ msgstr "" "Подробнее смотрите на [a@http://sf.net/support/tracker.php?aid=1849494]PMA " "bug tracker[/a] и [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Отключить использование INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Выберите какое расширение PHP использовать для работы с MySQL. При " "возможности, используйте mysqli." -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "PHP расширение" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Скрыть базы данных подпадающие под регулярное выражение (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Скрыть базы данных" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3868,33 +3852,33 @@ msgstr "" "Для отключения поддержки истории SQL запросов оставьте поле пустым. " "Рекомендуется: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "Таблица истории SQL запросов" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Хост на котором работает сервер MySQL" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Хост сервера" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "URL выхода" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" "Пытаться установить соединение без пароля, если пароль не был принят при " "идентификации" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Соединять без пароля" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3909,30 +3893,30 @@ msgstr "" "определенном порядке и использовать [kbd]*[/kbd] в конце для вывода " "оставшихся в алфавитном порядке." -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Показывать только базы данных из списка" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Если не используется идентификация config, оставьте поле пустым" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Прописанный пароль" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Для отключения поддержки PDF схемы оставьте поле пустым. Рекомендуется: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF схема: страницы таблицы" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3943,39 +3927,33 @@ msgstr "" "pmadb[/a]. Для отключения поддержки, оставьте поле пустым. Рекомендуется: " "[kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Имя базы данных" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Порт на котором работает сервер MySQL. Для значения по умолчанию, оставьте " "пустым." -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Порт сервера" -#: libraries/config/messages.inc.php:408 -#, fuzzy -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: [kbd]" -#| "pma_config[/kbd]" +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -"Для отключения возможности хранения пользовательских настроек в базе данных " -"оставьте поле пустым. Рекомендуется: [kbd]pma_config[/kbd]" +"Для отключения возможности просмотра недавно использованных таблиц, оставьте " +"поле пустым. Рекомендуется: [kbd]pma_recent[/kbd]" + +#: libraries/config/messages.inc.php:408 +msgid "Recently used table" +msgstr "Недавно использованная таблица" #: libraries/config/messages.inc.php:409 -#, fuzzy -#| msgid "Recall user name" -msgid "Recently used table" -msgstr "Выводить имя пользователя" - -#: libraries/config/messages.inc.php:410 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3984,19 +3962,19 @@ msgstr "" "связанных таблиц[/a] оставьте поле пустым. Рекомендуется: [kbd]pma_relation[/" "kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Таблица связей" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "SQL команда для выборки доступных баз данных" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "Команда SHOW DATABASES" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4004,44 +3982,44 @@ msgstr "" "Для примера смотрите раздел [a@http://wiki.phpmyadmin.net/pma/" "auth_types#signon]типы идентификации[/a]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Имя сессии для Signon" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Сокет на котором работает сервер MySQL. Для значения по умолчанию, оставьте " "пустым." -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Сокет сервера" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "Использовать SSL для соединения с MySQL" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Использовать SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Для отключения поддержки PDF схемы оставьте поле пустым. Рекомендуется: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF схема: координаты таблиц" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4049,29 +4027,23 @@ msgstr "" "Таблица для описания отображаемых полей. Для отключения поддержки данной " "функции оставьте поле пустым. Рекомендуется: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Таблица с описаниями полей" -#: libraries/config/messages.inc.php:425 -#, fuzzy -#| msgid "" -#| "Leave blank for no user preferences storage in database, suggested: [kbd]" -#| "pma_config[/kbd]" +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -"Для отключения возможности хранения пользовательских настроек в базе данных " -"оставьте поле пустым. Рекомендуется: [kbd]pma_config[/kbd]" +"Для отключения возможности хранения настроек интерфейса таблиц, оставьте " +"поле пустым. Рекомендуется: [kbd]pma_table_uiprefs[/kbd]" + +#: libraries/config/messages.inc.php:425 +msgid "UI preferences table" +msgstr "Таблица хранения настроек интерфейса" #: libraries/config/messages.inc.php:426 -#, fuzzy -#| msgid "User preferences storage table" -msgid "UI preferences table" -msgstr "Таблица хранения настроек пользователя" - -#: libraries/config/messages.inc.php:427 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4079,11 +4051,11 @@ msgstr "" "Будет ли при создании базы данных, в журнал первой строкой добавлено " "выражение DROP DATABASE IF EXISTS." -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "Добавить DROP DATABASE" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4091,11 +4063,11 @@ msgstr "" "Будет ли при создании таблицы, в журнал первой строкой добавлено выражение " "DROP TABLE IF EXISTS." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "Добавить DROP TABLE" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4103,21 +4075,21 @@ msgstr "" "Будет ли при создании представления, в журнал первой строкой добавлено " "выражение DROP VIEW IF EXISTS." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "Добавить DROP VIEW" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Определить список выражений используемых для автоматического создания новых " "версий." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "Слежение за выражениями" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4125,11 +4097,11 @@ msgstr "" "Для отключения поддержки слежения за SQL запросами оставьте поле пустым. " "Рекомендуется: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "Таблица слежения за SQL запросами" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4137,11 +4109,11 @@ msgstr "" "Должен ли механизм слежения создавать версии таблиц и представлений " "автоматически." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Автоматическое создание версий" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -4149,15 +4121,15 @@ msgstr "" "Для отключения возможности хранения пользовательских настроек в базе данных " "оставьте поле пустым. Рекомендуется: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "Таблица хранения настроек пользователя" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "Прописанный пользователь" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4166,11 +4138,11 @@ msgstr "" "нуждаются в обновлении. Это предотвратит лишние проверки совместимости и " "соответственно увеличит производительность." -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Повторная проверка" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4178,20 +4150,20 @@ msgstr "" "Пользовательское описание сервера. Оставьте пустым, чтобы вывести название " "хоста." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Пользовательское имя сервера" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Позволяет вывести пользователю кнопку "показать все (записи)"" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Разрешать вывод всех строк" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4202,15 +4174,15 @@ msgstr "" "прописанного пароля. Смена пароля в конфигурационном файле напрямую никак не " "ограничена." -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Вывести форму изменения пароля" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Вывести форму создания базы данных" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -4218,19 +4190,19 @@ msgstr "" "Определяет изначальное отображение типа полей в режиме редакции или вставки " "данных" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Отображение типа полей" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Выводить поля функций в режиме редактирования или вставки" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Выводить поля функций" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4238,33 +4210,33 @@ msgstr "" "Вывести ссылку для отображения [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Вывести ссылку на phpinfo()" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Вывести подробную информацию по MySQL серверу" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Определяет вывод SQL запросов генерируемых phpMyAdmin" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Показывать SQL запросы" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Разрешить вывод статистики по базам данных и таблицам (например, объем " "занятого пространства)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Показывать статистику" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4272,11 +4244,11 @@ msgstr "" "Если включен вывод всплывающих подсказок и установлен вывод комментария, " "произойдет взаимная замена комментария и имени базы данных" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Выводить вместо имени базы данных ее комментарий" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4287,30 +4259,30 @@ msgstr "" "корневого значения, разделенных указанной в директиве $cfg" "['LeftFrameTableSeparator'] строкой, таблиц" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Комментарий таблицы вместо имени" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Комментарии таблицы во всплывающих подсказках" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Отмечать использованные таблицы и делать возможным отображение баз данных с " "заблокированными таблицами" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Пропускать заблокированные таблицы" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "Требуется подключенный SQL валидатор" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4320,7 +4292,7 @@ msgstr "Требуется подключенный SQL валидатор" msgid "Password" msgstr "Пароль" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4328,11 +4300,11 @@ msgstr "" "[strong]Внимание:[/strong] требуется расширение PHP SOAP, либо установленный " "PEAR SOAP" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "Включение SQL валидатора" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4340,12 +4312,12 @@ msgstr "" "При наличии выделенного имени пользователя, пропишите его здесь (изначально " "используется [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Пользователь" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4353,19 +4325,19 @@ msgstr "" "Предлагать имя создаваемой базы данных при наличии такой возможности, или " "оставить поле пустым" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Предлагать имя новой базы данных" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "При определении Suhosin, на главной странице выводится предупреждение" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Предупреждение о Suhosin" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4374,11 +4346,11 @@ msgstr "" "будет приоритетным для текстовых полей SQL запроса (*2) и для окна запроса " "(*1.25)" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "Столбцов в текстовом поле" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4387,31 +4359,31 @@ msgstr "" "будет приоритетным для текстовых полей SQL запроса (*2) и для окна запроса " "(*1.25)" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "Строк в текстовом поле" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "Заголовок окна браузера при выборе базы данных" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "Заголовок окна браузера по умолчанию" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Заголовок по умолчанию" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "Заголовок окна браузера при выборе сервера" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "Заголовок окна браузера при выборе таблицы" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4423,29 +4395,29 @@ msgstr "" "Forwarded-For) заголовку пришедшему с прокси 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "Список доверенных прокси для IP allow/deny" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" "Каталог на сервере, в который вы можете загружать файлы для последующего " "импорта" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Каталог загрузки" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Разрешить поиск по всей базе данных" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Использовать поиск по базе данных" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4453,11 +4425,11 @@ msgstr "" "При отключении, пользователи не смогут установить никакие из указанных ниже " "параметров, вне зависимости от галочки справа от них" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "Включение вкладки разработчика в настройках" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4467,20 +4439,20 @@ msgstr "" "запросах. Для определения количества выражений в сложносоставном запросе " "смотрите libraries/import.lib.php." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Комментировать составные запросы" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Проверить обновление" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" "Включает возможность проверки последней версии phpMyAdmin на главной странице" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4488,7 +4460,7 @@ msgstr "" msgid "Version check" msgstr "Проверка версии" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4496,7 +4468,7 @@ msgstr "" "Включить [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " "архивирование для операций импорта и экспорта" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4516,61 +4488,61 @@ msgstr "Авторизация с помощью HTTP" msgid "Signon authentication" msgstr "Авторизация с помощью Signon" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV, используя LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Workbook" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Workbook" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "Быстро" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "Обычно" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Параметры экспорта базы данных" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV для MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "OpenDocument текст" @@ -4665,7 +4637,7 @@ msgstr "Процедуры" msgid "Return type" msgstr "Возвращаемый тип" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4719,10 +4691,8 @@ msgstr "Совместимо с MySQL 4.0" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:39 -#, fuzzy -#| msgid "Create new database" msgid "Create database" -msgstr "Новая база данных" +msgstr "Создать базу данных" #: libraries/display_create_database.lib.php:33 msgid "Create" @@ -5066,58 +5036,58 @@ msgstr "Показать BLOB содержимое" msgid "Browser transformation" msgstr "Преобразование" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Копировать" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Запись была удалена" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Завершить" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "по запросу" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Отображает строки" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "всего" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "запрос занял %01.4f сек." -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Использование результатов запроса" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Версия для печати (полностью)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "Отобразить график" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "Создать представление" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Связь не найдена" @@ -6046,14 +6016,12 @@ msgid "Convert to Kana" msgstr "Конвертировать в Кану" #: libraries/mult_submits.inc.php:249 -#, fuzzy -#| msgid "Fr" msgid "From" -msgstr "Пт" +msgstr "От" #: libraries/mult_submits.inc.php:252 msgid "To" -msgstr "" +msgstr "До" #: libraries/mult_submits.inc.php:257 libraries/mult_submits.inc.php:271 #: libraries/sql_query_form.lib.php:439 @@ -6062,13 +6030,11 @@ msgstr "Выполнить" #: libraries/mult_submits.inc.php:263 msgid "Add table prefix" -msgstr "" +msgstr "Добавить префикс таблицы" #: libraries/mult_submits.inc.php:266 -#, fuzzy -#| msgid "Add index" msgid "Add prefix" -msgstr "Добавить индекс" +msgstr "Добавить префикс" #: libraries/mult_submits.inc.php:477 tbl_replace.php:331 msgid "No change" @@ -6327,14 +6293,12 @@ msgid "SQL history" msgstr "История SQL-запросов" #: libraries/relation.lib.php:143 -#, fuzzy -#| msgid "Persistent connections" msgid "Persistent recently used tables" -msgstr "Постоянные соединения" +msgstr "Недавно использованные таблицы" #: libraries/relation.lib.php:147 msgid "Persistent tables' UI preferences" -msgstr "" +msgstr "Настройки интерфейса часто используемых таблиц" #: libraries/relation.lib.php:155 msgid "User preferences" @@ -8130,8 +8094,7 @@ msgid "Unable to change master" msgstr "Невозможно изменить головной сервер" #: server_replication.php:72 -#, fuzzy, php-format -#| msgid "Master server changed succesfully to %s" +#, php-format msgid "Master server changed successfully to %s" msgstr "Головной сервер успешно изменён на %s" @@ -9301,16 +9264,17 @@ msgid "Insecure connection" msgstr "Небезопасное соединение" #: setup/frames/index.inc.php:92 -#, fuzzy -#| msgid "Configuration storage" msgid "Configuration saved." -msgstr "Хранение конфигурации" +msgstr "Конфигурация сохранена." #: setup/frames/index.inc.php:93 msgid "" "Configuration saved to file config/config.inc.php in phpMyAdmin top level " "directory, copy it to top level one and delete directory config to use it." msgstr "" +"Настройки сохранены в файл config/config.inc.php от корневого каталога " +"phpMyAdmin, скопируйте его в корневой каталог и удалите после этого " +"директорию config." #: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15 msgid "Overview" @@ -10177,22 +10141,16 @@ msgid "Version %s snapshot (SQL code)" msgstr "Обзор версии %s (SQL код)" #: tbl_tracking.php:382 -#, fuzzy -#| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" -msgstr "Отслеживать выражения определяющие структуру:" +msgstr "Данные слежения успешно удалены" #: tbl_tracking.php:384 tbl_tracking.php:401 -#, fuzzy -#| msgid "Gather errors" msgid "Query error" -msgstr "Собирать ошибки" +msgstr "Ошибка запроса" #: tbl_tracking.php:399 -#, fuzzy -#| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" -msgstr "Отслеживать выражения изменяющие данные:" +msgstr "Данные слежения успешно удалены" #: tbl_tracking.php:411 msgid "Tracking statements" @@ -10204,16 +10162,12 @@ msgid "Show %s with dates from %s to %s by user %s %s" msgstr "Вывести %s с датой от %s до %s пользователя %s %s" #: tbl_tracking.php:432 -#, fuzzy -#| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" -msgstr "Удалить данные слежения за таблицей" +msgstr "Удалить строку данных слежения за таблицей" #: tbl_tracking.php:443 -#, fuzzy -#| msgid "No databases" msgid "No data" -msgstr "Базы данных отсутствуют" +msgstr "Нет данных" #: tbl_tracking.php:453 tbl_tracking.php:510 msgid "Date" @@ -10339,6 +10293,12 @@ msgstr "VIEW название" msgid "Rename view to" msgstr "Переименовать представление в" +#~ msgid "Show table row links on left side" +#~ msgstr "Вывести ссылки слева" + +#~ msgid "Show table row links on right side" +#~ msgstr "Вывести ссылки справа" + #~ msgid "Background color" #~ msgstr "Цвет фона" diff --git a/po/si.po b/po/si.po index aea459ed79..7e769605a1 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-05-13 17:05+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" @@ -196,7 +196,7 @@ msgstr "විස්තරය" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -212,7 +212,7 @@ msgstr "නැත" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -351,7 +351,7 @@ msgid "Edit or export relational schema" msgstr "ක්‍රමානුරූපය සංස්කරණය හෝ අපනයනය කරන්න" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -418,19 +418,19 @@ msgid "visual builder" msgstr "දෘශ්‍ය ගොඩනංවනය" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "සුබෙදන්න" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "ආරෝහන" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -538,8 +538,8 @@ msgstr "පිරික්සන්න" msgid "Delete the matches for the %s table?" msgstr "%s වගුව තුල ගැලපීම් ඉවත් කරන්නද?" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -608,7 +608,7 @@ msgstr "අවධානය සක්‍රීයයි." msgid "Tracking is not active." msgstr "අවධානය අක්‍රීයයි." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -637,20 +637,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +661,15 @@ msgid "Check tables having overhead" msgstr "Check tables having overhead" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "මුද්‍රණ දර්ශනය" @@ -728,7 +728,7 @@ msgstr "දත්ත කෝෂය" msgid "Tracked tables" msgstr "අවධානය සක්‍රීය වගු" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -925,7 +925,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:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1152,8 +1152,8 @@ msgstr "පේළිගත සංස්කරණය" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1867,13 +1867,13 @@ msgstr "හවුල්" msgid "Tables" msgstr "වගු" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1977,7 +1977,7 @@ msgstr "අවලංගු සේවාදායක සුචිය: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Invalid hostname for server %1$s. Please review your configuration." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2039,7 +2039,7 @@ msgstr "MySQL said: " msgid "Failed to connect to SQL validator!" msgstr "SQL වලංගු කරණයට සම්බන්ද වීම අසමත් විය!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "SQL ය පහදන්න" @@ -2051,11 +2051,11 @@ msgstr "Skip Explain SQL" msgid "Without PHP Code" msgstr "PHP කේත නොමැතිව" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP කේත සාදන්න" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "අලුත් කරන්න" @@ -2064,7 +2064,7 @@ msgstr "අලුත් කරන්න" msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Validate SQL" @@ -2162,11 +2162,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2212,62 +2212,77 @@ msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ msgid "There are no files to upload" msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැත" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "දෙකම" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "උස" + +#: libraries/config.values.php:75 msgid "Open" msgstr "විවෘත" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "වසන ලද" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "සැකිල්ල" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "දත්ත" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "සැකිල්ල සහ දත්ත" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "කඩිනම් - අවම තෝරා ගැනීම් පමණක් පෙන්වන්න" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "අභිමත - සියලුම තෝරා ගැනීම් පෙන්වන්න" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "අභිමත - ඉහත මෙන්, නමුත් අභිමත/කඩිනම් තෝරාගැනීම් නොමෙතිව" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "සම්පූර්ණ ඇතුළු කිරීම්" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "විස්තෘත ඇතුළු කිරීම්" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "ඉහත ද්විත්වයම" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "ඉහත දෙකින් එකක්වත් නොව" @@ -2352,7 +2367,7 @@ msgid "Set value: %s" msgstr "%s අගය පිහිටුවන්න" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "පෙරනිමි අගය ප්‍රතිස්ථාපනය කරන්න" @@ -2821,10 +2836,10 @@ msgstr "පිරික්සුම් ප්‍රකාරය රිසි ස msgid "Customize default options" msgstr "පෙරනිමි විකල්ප රිසි සේ සකසන්න" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3388,7 +3403,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3444,341 +3459,337 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "ස්වභාවික අනුපිළිවල" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "විමසුම් කවුළුවේ උස" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "විමසුම් කවුළුවේ පළල (pixel වලින්)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "විමසුම් කවුළුවේ පළල" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "වගුව බවට නම වෙනස් කරන්න" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "ශීර්ෂකය නැවත නැවතත් පෙන්වන්න" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "උදවු බොත්තම පෙන්වන්න" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "සුරැකුම් ඩිරෙක්ටරිය" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "සම්බන්දතා වර්ගය" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "වගු ගණන් කරන්න" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 #, fuzzy msgid "Designer table" msgstr "Defragment table" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "භාවිතා කල යුතු PHP දිගුව" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Regular expression (PCRE) හා ගැළපෙන දත්තගබඩා සඟවන්න" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "දත්තගබඩා සඟවන්න" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "සර්වරයේ නම" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3787,319 +3798,319 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "සඳහන් දත්තගබඩා පමණක් පෙන්වන්න" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "දත්තගබඩාවේ නම" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "සර්වරයේ පොර්ට්" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "වගුව විශ්ලේෂණය කරන්න" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "වගුව ප්‍රතිසංස්කරණය කරන්න" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "සර්වරයේ සොකට්" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "තීර විස්තර පෙන්වීම" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragment table" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "ප්‍රකාශය" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "ස්වයංක්‍රියව අනුවාද සාදන්න" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "විවෘත වගු පෙන්වන්න" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "SQL විමසුම් පෙන්වන්න" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "පේළි සංඛ්‍ය ලේඛන" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4107,28 +4118,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "අගුලු ළෑ දත්තගබඩා මඟහරින්න" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4138,89 +4149,89 @@ msgstr "" msgid "Password" msgstr "මුරපදය" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "භාවිත නාමය" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "ක්ෂේත්‍ර තීර එක් කරන්න/ඉවත් කරන්න" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy msgid "Default title" msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4228,57 +4239,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 #, fuzzy msgid "Upload directory" msgstr "දත්ත මුල් පිටුව" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "phpMyAdmin ප්‍රධාන පිටුවේ නවතම අනුවාදය සඳහා පරීක්ෂාව සක්‍රීය කරන්න " -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4286,13 +4297,13 @@ msgstr "phpMyAdmin ප්‍රධාන පිටුවේ නවතම අන msgid "Version check" msgstr "අනුවාද පරීක්ෂාව" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4312,61 +4323,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV using LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "දත්තගබඩා අපනයන විකල්ප" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS එක්සෙල් සඳහා CSV" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "මෛක්‍රොසොෆ්ට් වර්ඩ් 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4453,7 +4464,7 @@ msgstr "නෛත්‍යක" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4866,58 +4877,58 @@ msgstr "" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "පිටපත් කරන්න" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "පෙළ ඉවත් කරන ලදි" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "පේළි පෙන්වමින්" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "මුළු එකතුව" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "විමසුම් ප්‍රථිඵල සඳහා මෙහෙයුම්" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "මුද්‍රණ දර්ශනය (පූර්ණ පෙළ සමඟින්)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "ප්‍රස්තාරගත කරන්න" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "දසුනක් සාදන්න" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Link not found" diff --git a/po/sk.po b/po/sk.po index 3c9ee0ef62..ae314530e9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-05-30 13:03+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" @@ -199,7 +199,7 @@ msgstr "Komentáre" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "Nie" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -354,7 +354,7 @@ msgid "Edit or export relational schema" msgstr "Upraviť alebo exportovať relačnú schému" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -422,19 +422,19 @@ msgid "visual builder" msgstr "vizuálneho návrhára" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Triediť" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Vzostupne" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -543,8 +543,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -615,7 +615,7 @@ 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:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -644,20 +644,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +668,15 @@ msgid "Check tables having overhead" msgstr "Zvoliť neoptimálne" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Náhľad k tlači" @@ -730,7 +730,7 @@ msgstr "Dátový slovník" msgid "Tracked tables" msgstr "Sledované tabuľky" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -930,7 +930,7 @@ msgstr "" "časový limit behu skriptu v php." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1147,8 +1147,8 @@ msgstr "Tu upraviť" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1865,13 +1865,13 @@ msgstr "zdieľaný" msgid "Tables" msgstr "Tabuľky" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1973,7 +1973,7 @@ msgstr "Chybný index servera: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Chybné meno servera %1$s. Prosím, skontrolujte konfiguráciu." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2035,7 +2035,7 @@ msgstr "MySQL hlási: " msgid "Failed to connect to SQL validator!" msgstr "Nepodarilo sa pripojiť k SQL validátoru!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Vysvetliť SQL" @@ -2047,11 +2047,11 @@ msgstr "Preskočiť vysvetlenie SQL" msgid "Without PHP Code" msgstr "Bez PHP kódu" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Vytvoriť PHP kód" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Obnoviť" @@ -2060,7 +2060,7 @@ msgstr "Obnoviť" msgid "Skip Validate SQL" msgstr "Bez kontroly SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Skontrolovať SQL" @@ -2158,11 +2158,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2208,62 +2208,75 @@ msgstr "Adresár určený pre upload súborov sa nedá otvoriť" msgid "There are no files to upload" msgstr "Žiadny súbor pre nahrávanie" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Obidva" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Otvorené" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Zatvorené" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "štruktúra" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "dáta" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "štruktúra a dáta" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Rýchly - zobrazí len minimum volieb pre nastavenie" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Vlastný - zobrazí všetky voľby nastavenia" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "Vlastný - ako vyššie, ale bez voľby rýchly/vlastný" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "úplné vloženia" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "Rozšírené vkladania" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "obidve vyššie uvedené" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "žiadny z vyššie uvedených" @@ -2348,7 +2361,7 @@ msgid "Set value: %s" msgstr "Nastavená hodnota: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Obnoviť východziu hodnotu" @@ -2831,10 +2844,10 @@ msgstr "Prispôsobiť režim prezerania" msgid "Customize default options" msgstr "Prispôsobenie východzích nastavení" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV dáta" @@ -3426,7 +3439,7 @@ msgid "Maximum displayed SQL length" msgstr "Mazimálna dĺžka zobrazeného SQL dopytu" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Uživatelia nemôžu nastaviť vyššiu hodnotu" @@ -3489,38 +3502,34 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "Toto sú odkazy na Upraviť, Upraviť tu, Kopírovať a Odstrániť" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "Zobrazí odkazy riadkov tabuľky na ľavej strane" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "Zobrazí odkazy riadkov tabuľky na pravej strane" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "Použiť prirodzené triedenie pre mena tabuliek a databáz" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Prirodzené poradie" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Použiť len ikony, len text alebo obidve" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Navigašná lišta s ikonami" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "Použiť medzipamäť pre GZip výstup pre zvýšenie rýchlosti HTTP prenosu" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Medzipamäť pre GZip výstup" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3528,19 +3537,19 @@ msgstr "" "[kbd]SMART[/kbd] - t.j. zostupné radenie pre polia typu TIME, DATE, DATETIME " "a TIMESTAMP, ostatné budú radené vzostupne" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Východzie radenie" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Použiť trvalé (persistent) spojenia k MySQL databázam" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Trvalé spojenia" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3550,23 +3559,23 @@ msgstr "" "niektorá z vyžadovaných tabuliek pre miesto uloženia phpMyAdmin konfigurácie " "nebola nájdená" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Chýbajú tabuľky pre miesto uloženia phpMyAdmin konfigurácie" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Zobrazenie ikon pre operácie s tabuľkami" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Zakázať úpravu polí typu BLOB a BINARY" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Chrániť binárne polia" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3577,117 +3586,117 @@ msgstr "" "zobrazeniu histórie dopytoj Java Scriptové funkcie (bude stratená pri " "zavretí okna)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Trvalá história dopytov" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Koľko dopytov sa má držať v histórii" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Dĺžka histórie dopytov" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Zobrazený panel pri otvorení nového okna dopytov" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Východzí panel okna dopytov" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Výška okna dopytov (v pixeloch)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Výška okna dopytov" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Šírka okna dopytov (v pixeloch)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Šírka okna dopytov" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Zvoľte, ktorá funkcia bude použitá pre konverziu znakových sád" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Prekódovací nástroj" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Premenovať tabuľku na" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "Opkovať hlavičku každých X buniek, [kbd]0[/kbd] vypne túto možnosť" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Opakovať záhlavie" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Zobraziť tlačidlo nápovedy namiesto textu dokumentácie" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Zobraziť tlačidlo nápovedy" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Adresár na serveri pre ukladanie exportov" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Adresár pre ukladanie" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Nechajte prázdne pokiaľ nepoužívate" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "Poradie overovania hostiteľa" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Nechajte prázdne, ak chcete použiť východzie nastavenia" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "Pravidlá overovania hostiteľa" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Povoliť prihlásenie bez hesla" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Povoliť prihlásenia užívateľa root" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3697,19 +3706,19 @@ msgstr "" "overovanie[/a] (Neuložená vo vašom koreňovom adresári dokumentov, doporučené " "umiestneie: -etc-swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "Konfiguračný súbor SweKey" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Výber overovacej metódy" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Typ overovania" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3717,11 +3726,11 @@ msgstr "" "Nechajte prázdne pre žiadnu podporu [a@http://wiki.phpmyadmin.net/pma/" "bookmark]záložiek[/a], navrhované: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Tabuľka záložiek" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3729,31 +3738,31 @@ msgstr "" "Nechajte prázdne pre žiadne komentáre ci mime typy polí, navrhované: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Tabuľka informácii o poliach" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Komprimácia spojenia k MySQL serveru" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Komprimovať pripojenie" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Ako sa pripájať k serveru, nechajte [kbd]tcp[/kbd] ak si nie ste istý" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Typ pripojenia" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Heslo kontrolného užívateľa" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3761,19 +3770,19 @@ msgstr "" "Špeciálny MySQL užívateľ s obmedzenými právami, viac informácii je " "dostupných na [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Kontrolný užívateľ" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Spočítavať tabuľky pri zobrazovaní zoznamu databáz" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Počítať tabuľky" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3781,11 +3790,11 @@ msgstr "" "Nechajte prázdne pre vypnutie návrhára, východzie nastavenie: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Tabuľka návrhára" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3793,27 +3802,27 @@ msgstr "" "Viac informácii na [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] a [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Zakazať použitie INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "Ktoré rozšírenie PHP sa má použiť; použite mysqli ak je to možné" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Použiť rozšírenie PHP" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Skryť databázy odpovedajúce regulárnemu výrazu (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Skryť databázy" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3821,31 +3830,31 @@ msgstr "" "Nechať prázdne pre vypnutie histórie SQL dopytov, navrhované: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "Tabuľka histórie SQL dopytov" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Meno počítača, kde beží MySQL server" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Meno servera" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "URL pri odhlásení" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Pokusiť sa pripojiť bez hesla" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Pripojiť sa bez hesla" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3859,30 +3868,30 @@ msgstr "" "ovplyvniť triedenie databáz v zozname. Stačí na konci zoznamu uviesť [kbd]*[/" "kbd] na konci pre zobrazenie ostatných v abecednom poradí." -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Zobraziť len vybrané databázy" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Nechajte prázdne, pokiaľ nepoužívate prihlasovací config" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Heslo pre prihlasovací config" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Nechajte prázdne pre vypnutie podpory pre PDF schémy, navrhované: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF schéma: tabuľka stránok" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3892,20 +3901,20 @@ msgstr "" "viď [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Ak ponecháte prázdne, " "bude táto možnosť vypnutá. Doporučená hodnota: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Meno databázy" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Port, na ktorom počúva MySQL server, nechajte prázdne pre východziu hodnotu" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Port servera" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -3917,13 +3926,13 @@ msgstr "" "Nechajte prázdne pre vypnutie možnosti ukladania užívateľských nastavení v " "databáze. Odporúčaná hodnota: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Pamätať si užívateľské meno" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3931,19 +3940,19 @@ msgstr "" "Nechajte prázdne pre vypnutie [a@http://wiki.phpmyadmin.net/pma/relation]" "relation-links[/a] podpory, navrhované: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Relačná tabuľka" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "SQL príkaz pre načítanie dostupných databáz" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES príkaz" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3951,43 +3960,43 @@ msgstr "" "Priklad, viď [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]typy " "overovania/a]" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Meno prihlasovacej session/sedenia" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "URL pri prihlásení" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Socket na ktorom počúva MySQL server, nechajte prázdne pre východziu hodnotu" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Socket servera" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "Povoliť SSL pre pripojenie k MySQL serveru" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Použiť SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Nechajte prázdne pro vypnutie podpory pre PDF schému, navrhované: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF schéma: tabuľka súradníc" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -3995,11 +4004,11 @@ msgstr "" "Tabuľka obsahujúca popisy polí. Nechajte prázdnu pre vypnutie tejto funkcie. " "Odporúčaná hodnota: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Zobrazenie stĺpcov tabuľky" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4011,13 +4020,13 @@ msgstr "" "Nechajte prázdne pre vypnutie možnosti ukladania užívateľských nastavení v " "databáze. Odporúčaná hodnota: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "Tabuľka pre užívateľské nastavenia" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4025,11 +4034,11 @@ msgstr "" "Či chcete pridať príkaz DROP DATABASE IF EXISTS do logu ako prvý riadok pri " "vytváraní databázy." -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "Pridať DROP DATABASE" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4037,11 +4046,11 @@ msgstr "" "Či chcete pridať príkaz DROP TABLE IF EXISTS do logu ako prvý riadok pri " "vytváraní tabuľky." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "Pridať DROP TABLE" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4049,21 +4058,21 @@ msgstr "" "Či chcete pridať príkaz DROP VIEW IF EXISTS do logu ako prvý riadok pri " "vytváraní pohľadu." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "Pridať DROP VIEW" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Určuje zoznam príkazov, ktoré sa automaticky použijú pri vytváraní nových " "verzií." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "Sledované príkazy" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4071,22 +4080,22 @@ msgstr "" "Nechajte prázdne pre vypnutie podpory pre sledovanie SQL dopytov, " "navrhované: [kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "Tabuľka pre sledovanie SQL dopytov" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" "Či má sledovací mechanizmus automaticky vytvárať verzie tabuliek a pohľadov." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Automaticky vytvárať verzie" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -4094,15 +4103,15 @@ msgstr "" "Nechajte prázdne pre vypnutie možnosti ukladania užívateľských nastavení v " "databáze. Odporúčaná hodnota: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "Tabuľka pre užívateľské nastavenia" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4110,11 +4119,11 @@ msgstr "" "Vypnite, pokiaľ viete, že vaše pma_* tabuľky sú aktuálne. Tým zabránite " "kontrolám kompatibility a urýchlite zabrazovanie stránok" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Podrobná kontrola" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4122,36 +4131,36 @@ msgstr "" "Užívateľsky prívetivý popis tohto servera. Ak necháte prízdne, zobrazí sa " "namiesto popisu meno servera." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Dlhé meno tohto servera" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Či sa bude užívateľovi zobrazovať tlačidlo "zobraziť všetky (riadky)" """ -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Povoliť zobraziť všetky riadky" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Zobraziť formulár na zmenu hesla" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Zobraziť formulár na vytvorenie databázy" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -4159,19 +4168,19 @@ msgstr "" "Definuje, či sa majú alebo nemajú zobrazovať typové polia v móde úprav/" "vkladania" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Zobraziť typy polí" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Zobraziť zoznam funkcií v móde úprav" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Zobraziť zoznam funkcií" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4179,42 +4188,42 @@ msgstr "" "Zobraziť odkaz na výstup [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a] funkcie" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Zobraziť odkaz na phpinfo()" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Zobraziť podrobné informácie o MySQL serveri" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Určuje, či sa budú zobrazovať SQL dopyty generované phpMyAdminom" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Zobraziť SQL dopyty" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Povoliť zobrazenie štatistík o databázach a tabuľkách (napr. využité miesto)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Zobraziť štatistiky" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Zobraziť komentár k databáze namiesto mena" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4222,28 +4231,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Zobraziť komentár k tabuľke namiesto mena" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Zobraziť komentáre tabuľky vo vyskakovacom okne nápovedy" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Preskočiť zamknuté tabuľky" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "Vyžaduje povolené kontrolovanie SQL" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4253,7 +4262,7 @@ msgstr "Vyžaduje povolené kontrolovanie SQL" msgid "Password" msgstr "Heslo" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4261,11 +4270,11 @@ msgstr "" "[strong]Varovanie:[/strong] vyžaduje nainštalované rozšírenia PHP SOAP alebo " "PEAR SOAP" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "Povoliť kontrolovanie SQL" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4273,70 +4282,70 @@ msgstr "" "Pokiaľ máte vlastné užívateľské meno, zadajte ho tu (východzie [kbd]anonymous" "[/kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Užívateľ" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Navrhnúť meno novej databázy" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Varovanie Suhosin rozšírenia" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "Stĺpce s textovou oblasťou" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "Riadkov v textovej oblasti" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "Popis okna prehliadača pri výbere databázy" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "Popis okna prehliadača keď nie je nič vybrané" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Východzí popis" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "Popis okna prehliadača keď je vybraný server" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "Popis okna prehliadača keď je vybraná tabuľka" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4344,56 +4353,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "Adresár na serveri, kde môžete nahrať súbor pre import" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Adresár pre nahrávanie" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Povoliť prehľadávať celú databázu" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Použiť databázové vyhľadávanie" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "Povoliť záložku Pre vývojára v nastaveniach" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Skontrolovať najnovšiu verziu" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Povoliť kontrolu poslednej verzie na hlavnej stránke phpMyAdmina" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4401,13 +4410,13 @@ msgstr "Povoliť kontrolu poslednej verzie na hlavnej stránke phpMyAdmina" msgid "Version check" msgstr "Kontrola verzie" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4427,61 +4436,61 @@ msgstr "HTTP overovanie" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV pomocou LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS pracovný zošit" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX pracovný zošit" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Tabuľkový procesor Open Document" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "Vlastné" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Nastavenia exportu databáz" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV pre MS Excel dáta" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4568,7 +4577,7 @@ msgstr "" msgid "Return type" msgstr "Návratový typ" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4960,59 +4969,59 @@ msgstr "" msgid "Browser transformation" msgstr "Transformácia pri prehliadaní" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Riadok bol zmazaný" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Zabiť" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "v dopyte" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Zobrazené riadky" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "celkovo" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Dopyt zabral %01.4f s" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Operácie s výsledkami dopytu" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Náhľad tlače (s kompletnými textami)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "Zobraziť graf" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Vytvoriť relaciu" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Linka nebola nájdená" @@ -9991,6 +10000,12 @@ msgstr "Meno pohľadu" msgid "Rename view to" msgstr "Premenovať pohľad na" +#~ msgid "Show table row links on left side" +#~ msgstr "Zobrazí odkazy riadkov tabuľky na ľavej strane" + +#~ msgid "Show table row links on right side" +#~ msgstr "Zobrazí odkazy riadkov tabuľky na pravej strane" + #, fuzzy #~| msgid "Dumping data for table" #~ msgid "Delete the matches for the " diff --git a/po/sl.po b/po/sl.po index 9bc6dfeb36..cc886c548f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" -"PO-Revision-Date: 2011-05-27 22:35+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"PO-Revision-Date: 2011-06-01 23:43+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -199,7 +199,7 @@ msgstr "Pripombe" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "Ne" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -354,7 +354,7 @@ msgid "Edit or export relational schema" msgstr "Uredi ali izvozi relacijsko shemo" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -423,19 +423,19 @@ msgid "visual builder" msgstr "vidni graditelj" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Razvrsti" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Naraščajoče" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -545,8 +545,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -617,7 +617,7 @@ msgstr "Sledenje je aktivno." msgid "Tracking is not active." msgstr "Sledenje ni aktivno." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -645,20 +645,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +669,15 @@ msgid "Check tables having overhead" msgstr "Preveri prekoračene" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Pogled za tiskanje" @@ -731,7 +731,7 @@ msgstr "Slovar podatkov" msgid "Tracked tables" msgstr "Sledene tabele" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -930,7 +930,7 @@ msgstr "" "povečate vaše časovne omejitve PHP." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1147,8 +1147,8 @@ msgstr "Urejanje v vrstici" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1619,22 +1619,16 @@ msgstr[2] "Vstavljene so %1$d vrstice." msgstr[3] "Vstavljenih je %1$d vrstic." #: libraries/RecentTable.class.php:113 -#, fuzzy -#| msgid "Could not save configuration" msgid "Could not save recent table" -msgstr "Ne morem shraniti konfiguracije" +msgstr "Ne morem shraniti nedavne tabele" #: libraries/RecentTable.class.php:148 -#, fuzzy -#| msgid "Count tables" msgid "Recent tables" -msgstr "Preštej tabele" +msgstr "Nedavne tabele" #: libraries/RecentTable.class.php:154 -#, fuzzy -#| msgid "There are no configured servers" msgid "There are no recent tables" -msgstr "Ni konfiguriranih strežnikov" +msgstr "Ni nobenih nedavnih tabel" #: libraries/StorageEngine.class.php:194 msgid "" @@ -1867,13 +1861,13 @@ msgstr "deljeno" msgid "Tables" msgstr "Tabele" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1977,7 +1971,7 @@ msgstr "" "Neveljavno ime gostitelja za strežnik %1$s. Prosim, preglejte svojo " "konfiguracijo." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2039,7 +2033,7 @@ msgstr "MySQL je vrnil: " msgid "Failed to connect to SQL validator!" msgstr "Ne morem se povezati s preverjalnikom SQL!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Razloži stavek SQL" @@ -2051,11 +2045,11 @@ msgstr "Preskoči razlago stavka SQL" msgid "Without PHP Code" msgstr "Brez kode PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Ustvari kodo PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Osveži" @@ -2064,7 +2058,7 @@ msgstr "Osveži" msgid "Skip Validate SQL" msgstr "Preskoči preverjanje pravilnosti SQL stavka" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Preveri pravilnost stavka SQL" @@ -2162,11 +2156,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2212,62 +2206,77 @@ msgstr "Imenik, ki ste ga določili za nalaganje, je nedosegljiv" msgid "There are no files to upload" msgstr "Nobene datoteke ni za naložiti" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Oboje" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "Višina" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Odprto" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Zaprto" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "struktura" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "podatki" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "struktura in podatki" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Hitro - prikaži kar najmanj možnosti za konfiguriranje" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Po meri - prikaži vse mogoče možnosti za konfiguriranje" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "Po meri - kot zgoraj, vendar brez izbire hitro/po meri" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "popolne poizvedbe insert" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "razširjene poizvedbe insert" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "oboje zgoraj" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "nič od zgoraj" @@ -2353,7 +2362,7 @@ msgid "Set value: %s" msgstr "Določi vrednost: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Povrni privzeto vrednost" @@ -2839,10 +2848,10 @@ msgstr "Prilagodite način brskanja" msgid "Customize default options" msgstr "Prilagodite privzete možnosti" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV-podatki" @@ -3340,10 +3349,8 @@ msgid "Maximum number of recently used tables; set 0 to disable" msgstr "Največje število tabel prikazanih na seznamu tabel" #: libraries/config/messages.inc.php:287 -#, fuzzy -#| msgid "Untracked tables" msgid "Recently used tables" -msgstr "Nesledene tabele" +msgstr "Nedavno uporabljene tabele" #: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" @@ -3436,7 +3443,7 @@ msgid "Maximum displayed SQL length" msgstr "Največja dolžina prikazanega SQL" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Uporabniki ne morejo določiti višje vrednosti" @@ -3501,38 +3508,34 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "To so povezave Uredi, Uredi v vrstici, Kopiraj in Izbriši" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "Prikaži povezave do vrstic tabele na levi strani" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "Prikaži povezave do vrstic tabele na desni strani" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "Uporabi naravni vrstni red za razvrščanje tabel in imen zbirk podatkov" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Naravni vrstni red" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Uporabi samo ikone, samo besedilo ali oboje" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Ikonska navigacijska vrstica" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "Uporabi izhod medpomnjenja GZip za povečano hitrost v prenosih HTTP" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "Izhod medpomnjenja GZip" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3540,19 +3543,19 @@ msgstr "" "[kbd]SMART[/kbd] – tj. padajoči vrstni red za stolpce vrste TIME, DATE, " "DATETIME in TIMESTAMP, v naprotnem primeru naraščajoči vrstni red" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Privzet vrstni red" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Uporabi vztrajne povezave s podatkovnimi zbirkami MySQL" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Vztrajne povezave" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3562,23 +3565,23 @@ msgstr "" "podatkov Struktura, če katera od tabel, potrebnih za hrambo konfiguracije " "phpMyAdmin, ni bila najdena" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Manjkajoče tabele hrambe konfiguracije phpMyAdmin" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Ikonski posegi tabel" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Prepreči urejanje stolpcev BLOB in BINARY" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Zaščiti dvojiške stolpce" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3588,117 +3591,115 @@ msgstr "" "(potrebuje hrambo konfiguracije phpMyAdmin). Če je onemogočeno, se za prikaz " "zgodovine poizvedb uporabi rutina JavaScript (ki se izgubi ob zaprtju okna)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Trajna zgodovina poizvedb" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Koliko poizvedb je hranjenih v zgodovini" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Dolžina zgodovine poizvedb" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Zavihek, ki se prikaže ob odprtju novega okna za poizvedbe" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Privzet zavihek okna za poizvedbe" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Višina okna poizvedb (v slikovnih pikah)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Višina okna poizvedb" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Širina okna poizvedb (v slikovnih pikah)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Širina okna poizvedb" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Določi katere funkcije bodo uporabljene za pretvorbo nabora znakov" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Pogon rekodiranja" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" -msgstr "" +msgstr "Med brskanjem po tabelah se razvrščanje vsake tabele ohrani" + +#: libraries/config/messages.inc.php:349 +msgid "Remember table's sorting" +msgstr "Ohrani razvrščanje tabel" #: libraries/config/messages.inc.php:350 -#, fuzzy -#| msgid "Rename table to" -msgid "Remember table's sorting" -msgstr "Preimenuj tabelo v" - -#: libraries/config/messages.inc.php:351 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "Ponovi glave vsakih X celic, [kbd]0[/kbd] dezaktivira to funkcijo" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Ponovi glave" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Prikaži gumb za pomoč namesto besedila dokumentacije" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Prikaži gumb za pomoč" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Mapa, kamor se lahko na strežnik shranijo izvozi" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Mapa za shranjevanje" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Pustite prazno, če se ne uporablja" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "Zaporedje overovitve gostitelja" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Pustite prazno za privzeto" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "Pravila overovitve gostitelja" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Dovoli prijave brez gesla" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Dovoli prijavo root" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "Ime področja HTTP Basic Auth, ki se prikaže med HTTP Auth" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "Področje HTTP" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3708,19 +3709,19 @@ msgstr "" "SweKey[/a] (se ne nahaja v korenski mapi dokumentov; predlagano: /etc/swekey." "conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "Konfiguracijska datoteka SweKey" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Način overovitve za uporabo" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Vrsta overovitve" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3728,11 +3729,11 @@ msgstr "" "Pustite prazno, če ne želite podpore [a@http://wiki.phpmyadmin.net/pma/" "bookmark]zaznamkov[/a]; predlagano: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Tabela zaznamkov" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3740,32 +3741,32 @@ msgstr "" "Pustite prazno, če ne želite pripomb/vrst mime stolpcev; predlagano: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Tabela informacij stolpcev" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Stisni povezavo s strežnikom MySQL" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Stisni povezavo" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Način povezave s strežnikom; pustite [kbd]tcp[/kbd], če niste prepričani" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Vrsta povezave" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Geslo krmilnega uporabnika" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3773,19 +3774,19 @@ msgstr "" "Posebni uporabnik MySQL, konfiguriran z omejenimi dovoljenji; več informacij " "je na voljo na [a@http://wiki.phpmyadmin.net/pma/controluser]wikiji[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Krmilni uporabnik" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Preštej tabele med prikazovanjem seznama podatkovnih zbirk" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Preštej tabele" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3793,11 +3794,11 @@ msgstr "" "Pustite prazno, če ne želite podpore Oblikovalnika; predlagano: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Tabela Oblikovalnika" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3805,27 +3806,27 @@ msgstr "" "Več informacij na [a@http://sf.net/support/tracker.php?aid=1849494]" "sledilniku hroščev PMA[/a] in[a@http://bugs.mysql.com/19588]hroščih MySQL[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Onemogoči uporabo INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "Katera razširitev PHP naj se uporablja; uporabite mysqli, če je podprt" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Razširitev PHP za uporabo" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Skrije zbirke podatkov, ki se ujemajo z običajnim izrazom (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Skrij zbirke podatkov" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3833,31 +3834,31 @@ msgstr "" "Pustite prazno, če ne želite podpore zgodovine poizvedb SQL; predlagano: " "[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "Tabela zgodovine poizvedb SQL" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Ime gostitelja, kjer teče strežnik MySQL" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Ime gostitelja strežnika" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "Odjavni URL" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Poskusi se povezati brez gesla" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Poveži se brez gesla" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3871,30 +3872,30 @@ msgstr "" "v vrstnem redu in na koncu uporabite [kbd]*[/kbd] za prikaz preostalih v " "abecednem vrstnem redu." -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Prikaži samo navedene zbirke podatkov" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Pustite prazno, če ne uporabljate overovitve config" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Geslo za overovitev config" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Pustite prazno, če ne želite podpore PDF-sheme; predlagano: [kbd]" "pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF-shema: tabele strani" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3904,20 +3905,20 @@ msgstr "" "si [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] za vse informacije. " "Pustite prazno, če ne želite podpore. Predlagano: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Ime zbirke podatkov" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "Vrata, na katera naj bo strežnik MySQL priključen; pustite prazno za privzeto" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Vrata strežnika" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -3929,13 +3930,11 @@ msgstr "" "Pustite prazno, če ne želite hranjenja uporabnikovih nastavitev v zbirki " "podatkov; predlagano: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:409 -#, fuzzy -#| msgid "Recall user name" +#: libraries/config/messages.inc.php:408 msgid "Recently used table" -msgstr "Prikliči uporabniško ime" +msgstr "Nedavno uporabljena tabela" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3943,19 +3942,19 @@ msgstr "" "Pustite prazno, če ne želite podpore [a@http://wiki.phpmyadmin.net/pma/" "relation]relacijskih povezav[/a]; priporočeno: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Relacijska tabela" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "Ukaz SQL za pridobitev razpoložljivih zbirk podatkov" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "Ukaz SHOW DATABASES" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3963,43 +3962,43 @@ msgstr "" "Oglejte si [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]vrste " "overovitev[/a] za primer" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Ime seje signon" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "URL signon" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "Vtičnica na katero je povezan strežnik MySQL; pustite prazno za privzeto" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Vtičnica strežnika" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "Omogoči SSL za povezavo s strežnikom MySQL" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Uporabi SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Pustite prazno, če ne želite podpore PDF-sheme; predlagano: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF-shema: koordinate tabel" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4007,11 +4006,11 @@ msgstr "" "Tabela za opisovanje prikaznih stolpcev; pustite prazno, če ne želite " "podpore; predlagano: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Tabela prikaznih stolpcev" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4023,13 +4022,13 @@ msgstr "" "Pustite prazno, če ne želite hranjenja uporabnikovih nastavitev v zbirki " "podatkov; predlagano: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "Tabela za hranjenje uporabnikovih nastavitev" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4037,11 +4036,11 @@ msgstr "" "Ali naj se stavek DROP DATABASE IF EXISTS doda kot prva vrstica v dnevnik " "pri ustvarjanju zbirke podatkov." -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "Dodaj DROP DATABASE" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4049,11 +4048,11 @@ msgstr "" "Ali naj se stavek DROP TABLE IF EXISTS doda kot prva vrstica v dnevnik pri " "ustvarjanju tabele." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "Dodaj DROP TABLE" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4061,21 +4060,21 @@ msgstr "" "Ali naj se stavek DROP VIEW IF EXISTS doda kot prva vrstica v dnevnik pri " "ustvarjanju pogleda." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "Dodaj DROP VIEW" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Določi seznam stavkov, ki jih samodejno ustvarjanje uporabi za nove " "različice." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "Izjave za sledenje" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4083,22 +4082,22 @@ msgstr "" "Pustite prazno, če ne želite podpore sledenja poizvedb SQL; predlagano: [kbd]" "pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "Tabela sledenja poizvedb SQL" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" "Ali naj mehanizem sledenja ustvari različice tabel in pogledov samodejno." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Samodejno ustvari različice" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -4106,15 +4105,15 @@ msgstr "" "Pustite prazno, če ne želite hranjenja uporabnikovih nastavitev v zbirki " "podatkov; predlagano: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "Tabela za hranjenje uporabnikovih nastavitev" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "Uporabnik za overovitev config" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4122,11 +4121,11 @@ msgstr "" "Onemogočite, če veste, da so vaše tabele pma_* ažurirane. To prepreči " "preverjanja združljivosti in tako poveča zmogljivost" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Preverjanje razširitve" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4134,19 +4133,19 @@ msgstr "" "Uporabniku prijazen opis tega strežnika. Pustite prazno, če se naj namesto " "tega prikaže ime gostitelja." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Razširjeno ime tega strežnika" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Ali se naj uporabniku prikaže gumb "prikaži vse (vrstice)"" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Dovoli prikaz vseh vrstic" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4156,33 +4155,33 @@ msgstr "" "kbd], saj je geslo vgrajeno v konfiguracijsko datoteko; to ne omejuje " "možnosti izvedbe enakega ukaza neposredno" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Pokaži obrazec za spremembo gesla" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Pokaži obrazec za ustvarjanje zbirke podatkov" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "Določa ali naj bodo v načinu urejanja/vstavljanja prikazane vrste polj" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Pokaži vrste polj" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Prikaže polja funkcij v načinu urejanja/vstavljanja" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Prikaži polja funkcij" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4190,32 +4189,32 @@ msgstr "" "Prikaže povezavo do podatkov [a@http://php.net/manual/function.phpinfo.php]" "phpinfo()[/a]" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Prikaži povezavo phpinfo()" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Prikaži podrobne informacije o strežniku MySQL" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Določi, ali se naj poizvedbe SQL, ki jih ustvari phpMyAdmin, prikažejo" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Pokaži poizvedbe SQL" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Dovoli prikaz statistike zbirke podatkov in tabele (npr. poraba prostora)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Pokaži statistiko" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4223,11 +4222,11 @@ msgstr "" "Če so zaslonski namigi omogočeni in ima zbirka podatkov določeno pripombo, " "bo to zamenjalo pripombo in pravo ime" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Prikaži pripombo zbirke podatkov namesto njenega imena" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4239,30 +4238,30 @@ msgstr "" "['LeftFrameTableSeparator'], zato je samo mapa imenovana kot pridevek, sama " "imena tabel pa ostanejo nespremenjena" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Prikaži pripombo tabele namesto njenega imena" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Prikaži pripombe tabel v zaslonskih namigih" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Označi uporabljene tabele in omogoči prikaz zbirk podatkov z zaklenjenimi " "tabelami" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Preskoči zaklenjene tabele" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "Potrebuje omogočen Preverjalnik SQL" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4272,7 +4271,7 @@ msgstr "Potrebuje omogočen Preverjalnik SQL" msgid "Password" msgstr "Geslo" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4280,11 +4279,11 @@ msgstr "" "[strong]Opozorilo:[/strong] potrebuje nameščeno razširitev PHP SOAP ali PEAR " "SOAP" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "Omogoči Preverjalnik SQL" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4292,12 +4291,12 @@ msgstr "" "Če imate uporabniško ime po meri, ga določite tukaj (privzeto [kbd]anonymous" "[/kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Uporabniško ime" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4305,19 +4304,19 @@ msgstr "" "Predlagaj ime zbirke podatkov v obrazcu "Ustvari zbirko podatkov" " "(če je le mogoče) ali pusti besedilno polje prazno" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Predlagaj novo ime zbirke podatkov" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Na glavni strani se prikaže opozorilo, če je zaznan Suhosin" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Opozorilo Suhosin" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4325,11 +4324,11 @@ msgstr "" "Velikost besedilnega polja (stolpci) v načinu urejanja; vrednost bo povečana " "za polja poizvedb SQL (*2) in za okno poizvedbe (*1,25)" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "Stolpcev besedilnega polja" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4337,31 +4336,31 @@ msgstr "" "Velikost besedilnega polja (vrstice) v načinu urejanja; vrednost bo povečana " "za polja poizvedb SQL (*2) in za okno poizvedbe (*1,25)" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "Vrstic besedilnega polja" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "Naslov okna brskalnika, ko je izbrana zbirka podatkov" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "Naslov okna brskalnika, ko je ni izbrano nič" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Privzeti naslov" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "Naslov okna brskalnika, ko je izbran strežnik" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "Naslov okna brskalnika, ko je izbrana tabela" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4372,27 +4371,27 @@ msgstr "" "navaja, da naj phpMyAdmin zaupa glavi HTTP_X_FORWARDED_FOR (X-Forwarded-For) " "prihajajoči iz proxyja 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "Seznam zaupanja vrednih proxyjev za sprejetje/zavrnitev IP" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "Mapa na strežniku, kamor lahko naložite datoteke za uvoz" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Mapa za nalaganje" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Dovoli iskanje po celotni zbirki podatkov" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Uporabi iskanje po zbirki podatkov" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4400,11 +4399,11 @@ msgstr "" "Ko je onemogočeno, uporabniki ne morejo nastaviti katere koli od spodnjih " "možnosti, ne glede na potrditveno polje na desni" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "Omogoči zavihek Razvijalec v nastavitvah" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4414,19 +4413,19 @@ msgstr "" "si libraries/import.lib.php za privzete podatke o tem, koliko poizvedb lahko " "stavek vsebuje." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Zgosti večkratne stavke" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Preveri za najnovejšo različico" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Omogoča preverjanje najnovejše različice na glavni strani phpMyAdmin" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4434,7 +4433,7 @@ msgstr "Omogoča preverjanje najnovejše različice na glavni strani phpMyAdmin" msgid "Version check" msgstr "Preverjanje različice" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4442,7 +4441,7 @@ msgstr "" "Omogoči stiskanje [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] " "za posege uvoza in izvoza" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4462,61 +4461,61 @@ msgstr "Overitev preko HTTP" msgid "Signon authentication" msgstr "Overitev preko signon" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV z uporabo LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excelov delovni zvezek 97-2003 XLS" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excelov delovni zvezek 2007 XLSX" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Preglednica Open Document" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "Hitro" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "Po meri" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Možnosti za izvoz zbirke podatkov" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV-podatki za MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Besedilo Open Document" @@ -4603,7 +4602,7 @@ msgstr "Rutina" msgid "Return type" msgstr "Vrnjena vrsta" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5002,58 +5001,58 @@ msgstr "Prikaži vsebine BLOB" msgid "Browser transformation" msgstr "Pretvorba z brskalnikom" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Kopiraj" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Vrstica je izbrisana" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Prekini proces" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "v poizvedbi" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Prikazujem vrstice" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "skupaj" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Poizvedba je potrebovala %01.4f s" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Dejanja rezultatov poizvedbe" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Pogled za tiskanje (s polnimi besedili)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "Prikaži grafikon" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "Ustvari pogled" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Povezave ni mogoče najti" @@ -10208,6 +10207,12 @@ msgstr "Ime VIEW" msgid "Rename view to" msgstr "Preimenuj pogled v" +#~ msgid "Show table row links on left side" +#~ msgstr "Prikaži povezave do vrstic tabele na levi strani" + +#~ msgid "Show table row links on right side" +#~ msgstr "Prikaži povezave do vrstic tabele na desni strani" + #~ msgid "Background color" #~ msgstr "Barva ozadja" diff --git a/po/sq.po b/po/sq.po index ab251d4f83..fc938fe229 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: albanian \n" @@ -199,7 +199,7 @@ msgstr "Komente" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr " Jo " #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -362,7 +362,7 @@ msgid "Edit or export relational schema" msgstr "Skema relacionale" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -430,19 +430,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Renditja" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Në ngjitje" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -556,8 +556,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -631,7 +631,7 @@ msgstr "Gjurmimi është aktiv." msgid "Tracking is not active." msgstr "Gjurmimi nuk është aktiv." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -660,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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" @@ -684,15 +684,15 @@ msgid "Check tables having overhead" msgstr "Zgjidh të mbingarkuarit" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Shfaq për printim" @@ -751,7 +751,7 @@ msgstr "Data Dictionary" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -942,7 +942,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1195,8 +1195,8 @@ msgstr "" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1956,13 +1956,13 @@ msgstr "" msgid "Tables" msgstr "Tabela" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2070,7 +2070,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2132,7 +2132,7 @@ msgstr "Mesazh nga MySQL: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Shpjego SQL" @@ -2144,11 +2144,11 @@ msgstr "Mos shpjego SQL" msgid "Without PHP Code" msgstr "pa kod PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Krijo kodin PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Rifresko" @@ -2157,7 +2157,7 @@ msgstr "Rifresko" msgid "Skip Validate SQL" msgstr "Mos vleftëso SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Vleftëso SQL" @@ -2255,11 +2255,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2306,21 +2306,34 @@ msgstr "Directory që keni zgjedhur për upload nuk arrin të gjehet" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Thonjëza të pambyllura" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2328,13 +2341,13 @@ msgstr "Thonjëza të pambyllura" msgid "structure" msgstr "Struktura" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2342,35 +2355,35 @@ msgstr "" msgid "structure and data" msgstr "Struktura dhe të dhënat" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Të shtuarat komplet" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Të shtuara të zgjeruara" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2459,7 +2472,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2952,10 +2965,10 @@ msgstr "" msgid "Customize default options" msgstr "Opcione të eksportimit të databazës" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "të dhëna CSV" @@ -3531,7 +3544,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3588,352 +3601,348 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Transformo tabelën e renditur sipas" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Dritarja e Query" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Dritarja e Query" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Dritarja e Query" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Riemërto tabelën në" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "Lidhje" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Asnjë tabelë" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 #, fuzzy msgid "Designer table" msgstr "Defragmento tabelën" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "Asnjë databazë" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "Zgjedhja e serverit" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3942,324 +3951,324 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "Databazat" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "Zgjedhja e serverit" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analizo tabelën" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Riparo tabelën" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "Zgjedhja e serverit" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Vizualizimi i komenteve të kollonave" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragmento tabelën" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Instruksione" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy msgid "Automatically create versions" msgstr "Versioni i MySQL" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy msgid "Show field types" msgstr "Shfaq tabelat" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "Shfaq të gjitha kërkesat" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Statistikat e rreshtave" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4267,28 +4276,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4298,91 +4307,91 @@ msgstr "" msgid "Password" msgstr "Fjalëkalimi" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "Emri i përdoruesit:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Shto/Fshi kollonat e fushës" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "Prezgjedhur" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4390,56 +4399,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4447,13 +4456,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4473,61 +4482,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Opcione të eksportimit të databazës" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV për të dhëna MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4614,7 +4623,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5041,61 +5050,61 @@ msgstr "" msgid "Browser transformation" msgstr "Transformimi i Shfletuesit" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "rreshti u fshi" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Hiq" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "tek query" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Shfaqja e regjistrimeve " -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "Gjithsej" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Query ka zgjatur %01.4f sec" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Shfaq për printim (me full text)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Shfaq skemën PDF" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Versioni i MySQL" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Lidhja nuk u gjet" diff --git a/po/sr.po b/po/sr.po index d720d0d31d..b9e11a4632 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-04-06 18:43+0200\n" "Last-Translator: \n" "Language-Team: serbian_cyrillic \n" @@ -198,7 +198,7 @@ msgstr "Коментари" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -214,7 +214,7 @@ msgstr "Не" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -356,7 +356,7 @@ msgid "Edit or export relational schema" msgstr "Уреди или извези релациону схему" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -425,19 +425,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Сортирање" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Растући" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -552,8 +552,8 @@ msgstr "Преглед" msgid "Delete the matches for the %s table?" msgstr "Приказ података табеле" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -628,7 +628,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -656,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +680,15 @@ msgid "Check tables having overhead" msgstr "Провери табеле које имају прекорачења" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "За штампу" @@ -748,7 +748,7 @@ msgstr "Речник података" msgid "Tracked tables" msgstr "Провери табелу" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -953,7 +953,7 @@ msgstr "" "повећате временска ограничења у PHP-у" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1210,8 +1210,8 @@ msgstr "Складиштења" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1979,13 +1979,13 @@ msgstr "" msgid "Tables" msgstr "Табеле" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2095,7 +2095,7 @@ msgstr "Неисправан индекс сервера: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Неисправан назив сервера %1$s. Молимо проверите своју конфигурацију." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2157,7 +2157,7 @@ msgstr "MySQL рече: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Објасни SQL" @@ -2169,11 +2169,11 @@ msgstr "Прескочи објашњавање SQL-a" msgid "Without PHP Code" msgstr "без PHP кода" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Освежи" @@ -2182,7 +2182,7 @@ msgstr "Освежи" msgid "Skip Validate SQL" msgstr "Прескочи проверу SQL-a" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Провери SQL" @@ -2282,11 +2282,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ова функционалност %s је погођена познатом грешком, видите %s" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2333,21 +2333,34 @@ msgstr "Директоријум који сте изабрали за слањ msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Наводник није затворен" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2355,13 +2368,13 @@ msgstr "Наводник није затворен" msgid "structure" msgstr "Структура" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2369,35 +2382,35 @@ msgstr "" msgid "structure and data" msgstr "Структура и подаци" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Комплетан INSERT (са именима поља)" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Проширени INSERT" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2485,7 +2498,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2981,10 +2994,10 @@ msgstr "" msgid "Customize default options" msgstr "Опције за извоз базе" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3578,7 +3591,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3636,356 +3649,352 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Промени редослед у табели" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Прозор за упите" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Прозор за упите" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Прозор за упите" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Промени име табеле у " -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Нити поправке" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 #, fuzzy msgid "Save directory" msgstr "Основни директоријум података" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "Конекције" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Нема табела" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 #, fuzzy msgid "Designer table" msgstr "Дефрагментирај табелу" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 #, fuzzy msgid "PHP extension to use" msgstr "верзија PHP-a" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "База не постоји" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "назив сервера" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3994,326 +4003,326 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "назив базе" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "ИД сервера" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Анализирај табелу" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Поправи табелу" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "Избор сервера" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Приказујем коментаре колоне" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Дефрагментирај табелу" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Име" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Режим аутоматског опоравка" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Прикажи отворене табеле" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "Прикажи комплетне упите" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Статистике реда" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4321,29 +4330,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Skip locked tables" msgstr "Прикажи отворене табеле" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4353,90 +4362,90 @@ msgstr "" msgid "Password" msgstr "Лозинка" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "Корисничко име:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Додај/обриши колону" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy msgid "Default title" msgstr "Преименуј базу у" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4444,57 +4453,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 #, fuzzy msgid "Upload directory" msgstr "Основни директоријум података" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4502,13 +4511,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4528,61 +4537,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV користећи LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Опције за извоз базе" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV за MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4670,7 +4679,7 @@ msgstr "Рутине" msgid "Return type" msgstr "Повратни тип" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5124,61 +5133,61 @@ msgstr "" msgid "Browser transformation" msgstr "Транформације читача" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Копирај" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Ред је обрисан" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Обустави" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "у упиту" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Приказ записа" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "укупно" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Упит је трајао %01.4f секунди" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Операције на резултатима упита" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Поглед за штампу (са пуним текстом)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF схему" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Направи релацију" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Веза није пронађена" diff --git a/po/sr@latin.po b/po/sr@latin.po index d794f5efd8..19eb8cff63 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-12-02 14:49+0200\n" "Last-Translator: Sasa Kostic \n" "Language-Team: serbian_latin \n" @@ -200,7 +200,7 @@ msgstr "Komentari" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -216,7 +216,7 @@ msgstr "Ne" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -358,7 +358,7 @@ msgid "Edit or export relational schema" msgstr "Uredi ili izvezi relacionu shemu" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -426,19 +426,19 @@ msgid "visual builder" msgstr "vizuelni kreator" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Sortiranje" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Rastući" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -549,8 +549,8 @@ msgstr "Pregled" msgid "Delete the matches for the %s table?" msgstr "Prikaz podataka tabele" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -622,7 +622,7 @@ msgstr "Praćenje je aktivno." msgid "Tracking is not active." msgstr "Praćenje nije aktivno." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -650,20 +650,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s je podrazumevani pogon skladištenja na ovom MySQL serveru." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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" @@ -674,15 +674,15 @@ msgid "Check tables having overhead" msgstr "Proveri tabele koje imaju prekoračenja" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Za štampu" @@ -742,7 +742,7 @@ msgstr "Rečnik podataka" msgid "Tracked tables" msgstr "Proveri tabelu" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -947,7 +947,7 @@ msgstr "" "povećate vremenska ograničenja u PHP-u" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1204,8 +1204,8 @@ msgstr "Skladištenja" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1973,13 +1973,13 @@ msgstr "" msgid "Tables" msgstr "Tabele" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2089,7 +2089,7 @@ msgstr "Neispravan indeks servera: \"%s\"" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Neispravan naziv servera %1$s. Molimo proverite svoju konfiguraciju." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2151,7 +2151,7 @@ msgstr "MySQL reče: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Objasni SQL" @@ -2163,11 +2163,11 @@ msgstr "Preskoči objašnjavanje SQL-a" msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Osveži" @@ -2176,7 +2176,7 @@ msgstr "Osveži" msgid "Skip Validate SQL" msgstr "Preskoči proveru SQL-a" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Proveri SQL" @@ -2276,11 +2276,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2327,21 +2327,34 @@ msgstr "Direktorijum koji ste izabrali za slanje nije dostupan" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Navodnik nije zatvoren" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2349,13 +2362,13 @@ msgstr "Navodnik nije zatvoren" msgid "structure" msgstr "Struktura" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2363,35 +2376,35 @@ msgstr "" msgid "structure and data" msgstr "Struktura i podaci" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Kompletan INSERT (sa imenima polja)" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Prošireni INSERT" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2479,7 +2492,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2976,10 +2989,10 @@ msgstr "" msgid "Customize default options" msgstr "Opcije za izvoz baze" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3571,7 +3584,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3629,356 +3642,352 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Promeni redosled u tabeli" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Prozor za upite" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Promeni ime tabele u " -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Niti popravke" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 #, fuzzy msgid "Save directory" msgstr "Osnovni direktorijum podataka" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "Konekcije" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Nema tabela" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 #, fuzzy msgid "Designer table" msgstr "Defragmentiraj tabelu" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 #, fuzzy msgid "PHP extension to use" msgstr "verzija PHP-a" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "Baza ne postoji" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "naziv servera" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3987,326 +3996,326 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "naziv baze" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "ID servera" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Analiziraj tabelu" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Popravi tabelu" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "Izbor servera" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Prikazujem komentare kolone" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Defragmentiraj tabelu" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Ime" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Režim automatskog oporavka" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Prikaži otvorene tabele" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "Prikaži kompletne upite" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Statistike reda" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4314,29 +4323,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Skip locked tables" msgstr "Prikaži otvorene tabele" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4346,90 +4355,90 @@ msgstr "" msgid "Password" msgstr "Lozinka" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "Korisničko ime:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Dodaj/obriši kolonu" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy msgid "Default title" msgstr "Preimenuj bazu u" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4437,57 +4446,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 #, fuzzy msgid "Upload directory" msgstr "Osnovni direktorijum podataka" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4495,13 +4504,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4521,61 +4530,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV koristeći LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document Spreadsheet" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Opcije za izvoz baze" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV za MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Open Document Text" @@ -4663,7 +4672,7 @@ msgstr "Rutine" msgid "Return type" msgstr "Povratni tip" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5117,61 +5126,61 @@ msgstr "" msgid "Browser transformation" msgstr "Tranformacije čitača" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Red je obrisan" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Obustavi" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "u upitu" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Operacije na rezultatima upita" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Pogled za štampu (sa punim tekstom)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Napravi relaciju" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Veza nije pronađena" diff --git a/po/sv.po b/po/sv.po index 86b2fc59c1..722bee5857 100644 --- a/po/sv.po +++ b/po/sv.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-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-05-30 20:24+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" @@ -199,7 +199,7 @@ msgstr "Kommentarer" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "Nej" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -353,7 +353,7 @@ msgid "Edit or export relational schema" msgstr "Editera eller exportera relationsschema" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -420,19 +420,19 @@ msgid "visual builder" msgstr "grafisk modellerare" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Sortera" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Stigande" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -540,8 +540,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -610,7 +610,7 @@ 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:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -638,20 +638,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +662,15 @@ msgid "Check tables having overhead" msgstr "Markera ooptimerade" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Utskriftsvänlig visning" @@ -724,7 +724,7 @@ msgstr "Datalexikon" msgid "Tracked tables" msgstr "Spårade tabeller" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -922,7 +922,7 @@ msgstr "" "tidsbegränsningar." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1138,8 +1138,8 @@ msgstr "Redigera" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1854,13 +1854,13 @@ msgstr "delad" msgid "Tables" msgstr "Tabeller" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1961,7 +1961,7 @@ msgstr "Ogiltigt serverindex: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "Ogiltigt värdnamn för server %1$s. Var god granska din konfiguration." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2023,7 +2023,7 @@ msgstr "MySQL sa: " msgid "Failed to connect to SQL validator!" msgstr "Kunde inte ansluta till MySQL validerare" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Förklara SQL-kod" @@ -2035,11 +2035,11 @@ msgstr "Utan SQL-förklaring" msgid "Without PHP Code" msgstr "Utan PHP-kod" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Skapa PHP-kod" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Uppdatera" @@ -2048,7 +2048,7 @@ msgstr "Uppdatera" msgid "Skip Validate SQL" msgstr "Hoppa över SQL-validering" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Validera SQL-kod" @@ -2146,11 +2146,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2196,62 +2196,77 @@ msgstr "Katalogen som du konfigurerat för uppladdning kan inte nås" msgid "There are no files to upload" msgstr "Det finns inga filer att ladda upp" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Båda" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "Höjd" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Öppen" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Stängd" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "struktur" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "data" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "struktur och data" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Snabb - visa endast få alternativ för konfiguration" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Anpassad - visa alla tillgängliga konfigurations optioner" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "Anpassad - Som ovan, men utan valet snabb/anpassad " -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "kompletta infogningar" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "utökade infogningar" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "båda av ovanstående" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "Ingen av ovanstående" @@ -2338,7 +2353,7 @@ msgid "Set value: %s" msgstr "Ange värde: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Återställ standardvärde" @@ -2822,10 +2837,10 @@ msgstr "Anpassa webbläsningsläge" msgid "Customize default options" msgstr "Anpassa förvalda alternativ" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3415,7 +3430,7 @@ msgid "Maximum displayed SQL length" msgstr "Maximal visad SQL-längd" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Användare kan inte ange ett högre värde" @@ -3477,38 +3492,34 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "Dessa är redigera, infogad redigering, kopiera och ta bort länkar" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "Visa tabellrader som länkar på vänster sida" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "Visa tabellrader som länkar på höger sida" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "Använd naturlig ordning vid sortering av tabell- och databasnamn" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Naturlig ordning" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Använd enbart ikoner, endast text eller både och" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Ikonbaserat navigeringsfält" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "Använd GZip utmatningsbuffer för ökad hastighet i HTTP-överföringar" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip Utmatningsbuffer" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3516,19 +3527,19 @@ msgstr "" "[kbd]SMART[/kbd] - dvs fallande ordning för kolumner av typen TIME, DATE, " "DATETIME och TIMESTAMP, stigande ordning annars" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Förvald sorteringsordning" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "Använd bestående anslutningar till MySQL-databaser" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Bestående anslutningar" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3538,23 +3549,23 @@ msgstr "" "någon av de nödvändiga tabellerna för phpMyAdmin Configuration Storage inte " "kunde hittas" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Saknade phpMyAdmin konfiguration lagringstabeller" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Ikoniska tabell transaktioner" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "Hindra BLOB och kolumner BINARY från redigering" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Skydda binära kolumner" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3564,120 +3575,120 @@ msgstr "" "konfigurationslagring). Om inakiverad, så används JS-rutiner för att visa " "frågehistorik (förloras när fönstret stängs)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Permanent frågehistorik" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Antal frågor som sparas i historiken" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Längd på frågehistorik" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Flik som visas när man öppnar ett nytt frågefönster" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Default frågefönsterflik" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Höjd på sökfönster (i pixlar)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Fråga höjd på frågefönster" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Sökning fönster bredd (i pixlar)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Sökning fönsterbredd" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Välj vilka funktioner som kommer användas för konvertering av " "teckenuppsättning" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Omvandlingsmotor" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Döp om tabellen till" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Upprepa rubrik varje X celler, [kbd]0[/kbd] avaktiverar den här funktionen" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Reparera rubriker" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Visa hjälpknappen istället för dokumentations text" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Visa hjälp-knappen" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Katalog där exporten kan sparas på servern" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Spara katalog" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Lämna tomt om den inte används" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "Host auktorisation för" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Lämna blankt för defaultvärden" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "Behörighetsregler för host" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Tillåt inloggning utan lösenord" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Tillåt root-inloggning" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP Basic Auth Realm namn att visa när man gör HTTP Auth" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "HTTP Realm" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3687,19 +3698,19 @@ msgstr "" "hårdvaruautentisering[/a] (inte placerad i din dokumentrotkatalog; förslag: /" "etc/swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "SweKey konfigurationsfil" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Autentiseringsmetod att använda" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Autentiseringstyp" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3707,11 +3718,11 @@ msgstr "" "Lämna tomt för inget stöd för [a@http://wiki.phpmyadmin.net/pma/bookmark]" "bokmärken[/a], förslag: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Tabell för bokmärken" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3719,31 +3730,31 @@ msgstr "" "Lämna tomt för inget stöd för kolumnkommentarer/mime-typer, förslag: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Tabell för kolumninformation" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "Komprimera anslutning till MySQL-servern" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Komprimera anslutning" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Hur ansluta till servern, behåll [kbd]TCP[/ kbd] om du är osäker" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Anslutningstyp" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Lösenord för kontrollanvändare" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3752,19 +3763,19 @@ msgstr "" "information tillgänglig på [a@http://wiki.phpmyadmin.net/pma/controluser]wiki" "[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Kontrollanvändare" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Räkna tabeller vid visning av databaslista" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Räkna tabeller" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3772,11 +3783,11 @@ msgstr "" "Lämna tomt för inget stöd för Designer, förslag: [kbd]pma_designer_coords[/" "kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Tabell för Designer" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3784,28 +3795,28 @@ msgstr "" "Mer information på [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] och [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "Inaktivera användning av INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Vilket PHP-tillägg som ska användas; du bör använda mysqli om det stöds" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "PHP-tillägg att använda" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Dölj databaser som matchar reguljärt uttryck (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Dölj databaser" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3813,31 +3824,31 @@ msgstr "" "Lämna blankt för inget stöd för SQL-frågehistorik, förslag: [kbd]pma_history" "[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "Tabell för SQL-frågehistorik" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "Värdnamn där MySQL-servern körs" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Serverns värdnamn" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr " URL för utloggning" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Försök ansluta utan lösenord" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Anslut utan lösenord" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3851,29 +3862,29 @@ msgstr "" "lista. Det är bara att skriva sina namn i ordning och använda [kbd]*[/kbd] i " "slutet för att visa resten i alfabetisk ordning." -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Visa endast listade databaser" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Lämna tomt om inte config auth används" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Löseenord för config auth" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Lämna blankt för inget stöd för PDF-schema, förslag: [kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF-schema: Tabell för sidor" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3883,19 +3894,19 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] för komplett information. " "Lämna tomt för inget stöd. Förslag: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Databasnamn" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "Port som MySQL-servern lyssnar på, lämna blankt för default" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Serverport" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -3907,12 +3918,12 @@ msgstr "" "Lämna tomt för iatt inte spara användarinställningar i databasen, förslag: " "[kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy msgid "Recently used table" msgstr "Nuvarande anslutning" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3920,19 +3931,19 @@ msgstr "" "Lämna tomt för inget stöd för [a@http://wiki.phpmyadmin.net/pma/relation]" "relationslänkar[/a], förslag: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Relations tabell" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "SQL-kommando för att hämta tillgängliga databaser" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES-kommando" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3940,42 +3951,42 @@ msgstr "" "Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentiseringstyper[/" "a] för ett exempel" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Signon sessionsnamn" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "Signon URL" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "Sockel som MySQL-servern lyssnar på, lämna tomt för default" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Server socket" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "Aktivera SSL för anslutning till MySQL-servern" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "Använd SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "Lämna tomt för inget stöd för PDF-schema, förslag: [kbd]pma_table_coords[/" "kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF-schema: tabellkoordinater" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -3983,11 +3994,11 @@ msgstr "" "Tabell för att beskriva fält att visa, lämna tomt för inget stöd; förslag: " "[kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Visa tabellkolumner" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -3999,13 +4010,13 @@ msgstr "" "Lämna tomt för iatt inte spara användarinställningar i databasen, förslag: " "[kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "Användarinställningar lagringstabell" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4013,11 +4024,11 @@ msgstr "" "Om DROP DATABASE IF EXISTS finns, kommando skall läggas till som första " "raden i loggen när man skapar en databas." -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "Lägg till DROP DATABASE" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4025,11 +4036,11 @@ msgstr "" "Om DROP TABLE IF EXISTS finns, kommando skall läggas till som första raden i " "loggen när man skapar en tabell" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "Lägg till DROP TABLE" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4037,21 +4048,21 @@ msgstr "" "Om DROP VIEW IF EXISTS finns, kommando skall läggas till som första raden i " "loggen när man skapar en vy" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "Lägg till DROP VIEW" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Definierar lista med påståenden vilken auto-creation använder för nya " "versioner." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "Kommandon att spåra" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4059,11 +4070,11 @@ msgstr "" "Lämna tomt för inget stöd för SQL-frågehistorik, förslag: [kbd]pma_history[/" "kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "SQL-fråga spårningstabellen" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4071,11 +4082,11 @@ msgstr "" "Huruvida spårnings mekanismen skapar versioner för tabeller och vyer " "automatiskt." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Automatiskt skapa versioner" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -4083,15 +4094,15 @@ msgstr "" "Lämna tomt för iatt inte spara användarinställningar i databasen, förslag: " "[kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "Användarinställningar lagringstabell" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "Användare för config auth" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4099,11 +4110,11 @@ msgstr "" "Inaktivera ifall du vet att dina tabeller pma_* är aktuella. Detta " "förhindrar kompabilitetskontroller och ökar därmed prestanda" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Utökad kontroll" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4111,19 +4122,19 @@ msgstr "" "En användarvänlig beskrivning av denna server. Lämna tomt för att visa " "värdnamnet istället." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Beskrivande namn för denna server" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Ifall en användare ska få se en "visa alla(rader)" knapp" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Tillåt att visa alla rader" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4133,33 +4144,33 @@ msgstr "" "autentisering eftersom lösenordet är hårdkodat i konfigurationsfilen; detta " "begränsar inte möjligheten att utföra samma kommando direkt" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Visa ändra lösenord-formulär" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Visa skapa databas-formulär" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "Anger om typ-fält bör först visas i redigera / infogningsläget" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Visa fälttyper" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Visa funktionsfälten i ändra/infoga-läge" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Visa funktionsfält" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4167,31 +4178,31 @@ msgstr "" "Visar länk till [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "resultatet" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "Visa phpinfo()-länk" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Visa detaljerad MySQL-serverinformation" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "Anger om SQL-frågor som genereras av phpMyAdmin ska visas" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Visa SQL-frågor" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "Tillåt visning av databas- och tabellstatistik (t.ex.av utrymme)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Visa statistik" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4199,11 +4210,11 @@ msgstr "" "Om tooltip används och en databaskommentar är angiven, kommer denna vända " "kommentaren och det riktiga namnet" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Visa databaskommentar istället för dess namn" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4215,30 +4226,30 @@ msgstr "" "['LeftFrameTableSeparator'] , så endast mappen kallas för detta alias, " "tabellnamnet självt förblir oförändrat" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Visa tabellkommentar istället för dess namn" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Visa tabellkommentarer i tooltip" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Markera använda tabeller och gör det möjligt att visa databaser med låsta " "tabeller" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Hoppa över låsta tabeller" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "Kräver att SQL Validator är aktiverad" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4248,7 +4259,7 @@ msgstr "Kräver att SQL Validator är aktiverad" msgid "Password" msgstr "Lösenord" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4256,11 +4267,11 @@ msgstr "" "[strong]Varning:[/strong] kräver PHP SOAP tillägg eller installation av PEAR " "SOAP" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "Aktivera SQL Validator" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4268,12 +4279,12 @@ msgstr "" "Om du har ett eget användarnamn, ange det här (default är [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Användarnamn" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4281,19 +4292,19 @@ msgstr "" "Föreslå ett daabasnamn i "Skapa databas"-formuläret (om möjligt) " "eller behåll textfältet tomt" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Föreslå nytt databasnamn" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "En varning visas på huvudsidan om Suhosin upptäcks" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Suhosin varning" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4301,11 +4312,11 @@ msgstr "" "Textareans storlek (kolumner) i redigeringsläge, detta värde kommer betonas " "för SQL-frågans textfält (* 2) och för frågan fönster (* 1,25)" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "Textarea kolumner" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4313,31 +4324,31 @@ msgstr "" "Textareans storlek (rader) i redigeringsläge, detta värde kommer betonas för " "SQL-fråga textfält (* 2) och för frågan fönster (* 1,25)" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "Textarea rader" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "Titel på webbläsarfönstret när en databas är vald" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "Titel på webbläsarfönstret när ingenting är markerat" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Standard titel" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "Titel på webbläsarfönstret när en server är vald" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "Titel på webbläsarfönstret när en tabell är markerad" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4349,27 +4360,27 @@ msgstr "" "som kommer från proxyservern 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/" "kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "Lista med betrodda proxies för IP allow/deny" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "Katalog på servern där du kan ladda upp filer för import" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Uppladdningskatalogen" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Tillåt sökning i hela databasen" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Använd databassökning" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4377,11 +4388,11 @@ msgstr "" "När det är avstängt, kan användare inte ange något av alternativen nedan, " "oberoende av kryssrutan till höger" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "Aktivera fliken Utvecklare i inställningar" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4391,19 +4402,19 @@ msgstr "" "import.lib.php för standardvärden för hur många frågor ett uttryck kan " "innehålla." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Utförliga fleruttrycksfrågor" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Sök efter senaste version" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Aktivera kontroll efter senaste version på phpMyAdmin hemsida" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4411,7 +4422,7 @@ msgstr "Aktivera kontroll efter senaste version på phpMyAdmin hemsida" msgid "Version check" msgstr "Versionskontroll" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4419,7 +4430,7 @@ msgstr "" "Aktivera [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a]-" "komprimering för import- och exportoperationer" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4439,61 +4450,61 @@ msgstr "HTTP-autentisering" msgid "Signon authentication" msgstr "Signon autentisering" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV med LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS arbetsbok" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX arbetsbok" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "OpenDocument kalkylblad" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "Snabb" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "Anpassad" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Databas exportalternativ" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV för MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "OpenDocument text" @@ -4580,7 +4591,7 @@ msgstr "Rutiner" msgid "Return type" msgstr "Returtyp" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4975,58 +4986,58 @@ msgstr "Visa BLOB-innehåll" msgid "Browser transformation" msgstr "Webbläsaromvandling" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Kopiera" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Raden har raderats" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Döda" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "i fråga" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Visar rader" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "totalt" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Frågan tog %01.4f sek" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Operationer för frågeresultat" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Utskriftsvänlig version (med fullständiga texter)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "Visa diagram" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "Skapa vy" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Länken hittades inte" @@ -10165,6 +10176,12 @@ msgstr "VIEW namn" msgid "Rename view to" msgstr "Ändra namn till" +#~ msgid "Show table row links on left side" +#~ msgstr "Visa tabellrader som länkar på vänster sida" + +#~ msgid "Show table row links on right side" +#~ msgstr "Visa tabellrader som länkar på höger sida" + #~ msgid "Background color" #~ msgstr "Bakgrundsfärg" diff --git a/po/ta.po b/po/ta.po index 544d7b35aa..c1e7cecd88 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" "Last-Translator: Sutharshan \n" "Language-Team: Tamil \n" @@ -197,7 +197,7 @@ msgstr "" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -213,7 +213,7 @@ msgstr "" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -350,7 +350,7 @@ msgid "Edit or export relational schema" msgstr "" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -417,19 +417,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -541,8 +541,8 @@ msgstr "" msgid "Delete the matches for the %s table?" msgstr "" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -611,7 +611,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -639,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +663,15 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "" @@ -727,7 +727,7 @@ msgstr "" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -911,7 +911,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1132,8 +1132,8 @@ msgstr "உள்வரிசை" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1872,13 +1872,13 @@ msgstr "" msgid "Tables" msgstr "" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1972,7 +1972,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2034,7 +2034,7 @@ msgstr "" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "" @@ -2046,11 +2046,11 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "" @@ -2157,11 +2157,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2207,62 +2207,75 @@ msgstr "" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2347,7 +2360,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2811,10 +2824,10 @@ msgstr "" msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "" @@ -3370,7 +3383,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3426,337 +3439,333 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3765,307 +3774,307 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4073,28 +4082,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4104,88 +4113,88 @@ msgstr "" msgid "Password" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4193,56 +4202,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "புதிய பதிப்பை பார்வையிடவும்" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4250,13 +4259,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4276,61 +4285,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4417,7 +4426,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4793,60 +4802,60 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Add into comments" msgid "Display chart" msgstr "கருதிட்குள் சேர்க்க" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "" diff --git a/po/te.po b/po/te.po index ac8749206f..a603d10244 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-04-07 17:06+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" @@ -201,7 +201,7 @@ msgstr "వ్యాఖ్యలు" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -217,7 +217,7 @@ msgstr "కాదు" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -357,7 +357,7 @@ msgid "Edit or export relational schema" msgstr "" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -426,19 +426,19 @@ msgstr "దృశ్య కల్పకం" # మొదటి అనువాదము #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "క్రమంలో పేర్చు" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "ఆరోహణ" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -548,8 +548,8 @@ msgstr "" msgid "Delete the matches for the %s table?" msgstr "" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -619,7 +619,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -649,20 +649,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +673,15 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "" @@ -739,7 +739,7 @@ msgid "Tracked tables" msgstr "" # మొదటి అనువాదము -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -923,7 +923,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1164,8 +1164,8 @@ msgstr "" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1872,13 +1872,13 @@ msgstr "" msgid "Tables" msgstr "పట్టికలు" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1974,7 +1974,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2037,7 +2037,7 @@ msgstr "" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "" @@ -2049,11 +2049,11 @@ msgstr "" msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "" @@ -2062,7 +2062,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "" @@ -2162,11 +2162,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2212,64 +2212,79 @@ msgstr "" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "ఎత్తు" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Close" msgid "Closed" msgstr "మూసివేయి" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "నిర్మాణాకృతి" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "భోగట్టా" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "నిర్మాణాకృతి మరియు భోగట్టా" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2354,7 +2369,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2818,10 +2833,10 @@ msgstr "" msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "" @@ -3378,7 +3393,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3434,337 +3449,333 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "సహజ క్రమం" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "సహాయపు బొత్తాన్ని చూపించు" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "ఉపయోగించకపోతే ఖాళీగా వదిలేయండి" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "అప్రమేయాలకై ఖాళీగా వదిలివేయండి" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "అనుసంధాన రకం" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3773,28 +3784,28 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3802,283 +3813,283 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "డేటాబేస్" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 msgid "Recently used table" msgstr "" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "User preferences" msgid "UI preferences table" msgstr "వాడుకరి అభిరుచులు" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "గణాంకాలను చూపించు" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4086,28 +4097,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4117,89 +4128,89 @@ msgstr "" msgid "Password" msgstr "సంకేతపదం" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "వాడుకరిపేరు" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" # మొదటి అనువాదము -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "క్రొత్త డేటాబేస్ పేరును సూచించుము" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Table comments" msgid "Textarea columns" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "అప్రమేయ శీర్షిక" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4207,56 +4218,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4264,13 +4275,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4292,61 +4303,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "మైక్రోసాఫ్ట్ వర్డ్ 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4434,7 +4445,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4816,64 +4827,64 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "మొత్తం" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "" # మొదటి అనువాదము -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "పట్టిక వ్యాఖ్యలు" # మొదటి అనువాదము -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "సృష్టించు" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "" diff --git a/po/th.po b/po/th.po index 39c869c753..1bb9228796 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai \n" @@ -197,7 +197,7 @@ msgstr "หมายเหตุ" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -213,7 +213,7 @@ msgstr "ไม่" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -350,7 +350,7 @@ msgid "Edit or export relational schema" msgstr "แก้ไข หรือส่งออก รีเลชันแนล สกีมา" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -418,19 +418,19 @@ msgid "visual builder" msgstr "ตัวสร้างแบบวิชวล" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "เรียง" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "น้อยไปมาก" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -544,8 +544,8 @@ msgstr "เปิดดู" msgid "Delete the matches for the %s table?" msgstr "dump ตาราง" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -617,7 +617,7 @@ msgstr "การติดตามเริ่มทำงานแล้ว" msgid "Tracking is not active." msgstr "หยุดการติดตามแล้ว" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -645,20 +645,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +669,15 @@ msgid "Check tables having overhead" msgstr "ตรวจสอบตารางที่มี overhead" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "แสดง" @@ -735,7 +735,7 @@ msgstr "พจนานุกรมข้อมูล" msgid "Tracked tables" msgstr "ตารางที่ถูกติดตาม" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -920,7 +920,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1167,8 +1167,8 @@ msgstr "" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1924,13 +1924,13 @@ msgstr "" msgid "Tables" msgstr "ตาราง" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2034,7 +2034,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2096,7 +2096,7 @@ msgstr "MySQL แสดง: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "อธิบาย SQL" @@ -2108,11 +2108,11 @@ msgstr "ไม่ต้องอธิบาย SQL" msgid "Without PHP Code" msgstr "ไม่เอาโค้ด PHP" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "สร้างโค้ด PHP" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "เรียกใหม่" @@ -2121,7 +2121,7 @@ msgstr "เรียกใหม่" msgid "Skip Validate SQL" msgstr "ไม่ต้องตรวจสอบ SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "ตรวจสอบ SQL" @@ -2219,11 +2219,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2270,21 +2270,34 @@ msgstr "ไม่สามารถใช้งาน ไดเรกทอร msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "ไม่ได้ปิดเครื่องหมายคำพูด" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2292,13 +2305,13 @@ msgstr "ไม่ได้ปิดเครื่องหมายคำพู msgid "structure" msgstr "โครงสร้าง" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2306,35 +2319,35 @@ msgstr "" msgid "structure and data" msgstr "ทั้งโครงสร้างและข้อมูล" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "คำสั่ง INSERT เต็มรูปแบบ" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "แทรกหลายระเบียนในคราวเดียว" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2423,7 +2436,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2916,10 +2929,10 @@ msgstr "" msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "ข้อมูล CSV (คั่นด้วยเครื่องหมายลูกน้ำ \",\")" @@ -3495,7 +3508,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3552,352 +3565,348 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "เรียงค่าในตารางตาม" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "หน้าต่างคำค้น" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "หน้าต่างคำค้น" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "หน้าต่างคำค้น" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "เปลี่ยนชื่อตารางเป็น" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "การเชื่อมต่อ" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "ไม่มีตาราง" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 #, fuzzy msgid "Designer table" msgstr "จัดระเบียบตาราง" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "ไม่มีฐานข้อมูล" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "ตัวเลือกเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3906,324 +3915,324 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "ฐานข้อมูล" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "ตัวเลือกเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "วิเคราะห์ตาราง" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "ซ่อมแซมตาราง" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "ตัวเลือกเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "แสดงหมายเหตุของคอลัมน์" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "จัดระเบียบตาราง" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "คำสั่ง" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy msgid "Automatically create versions" msgstr "รุ่นของเซิร์ฟเวอร์" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy msgid "Show field types" msgstr "แสดงตาราง" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "แสดงคำค้นแบบเต็ม" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "สถิติของแถว" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4231,28 +4240,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4262,91 +4271,91 @@ msgstr "" msgid "Password" msgstr "รหัสผ่าน" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "ชื่อผู้ใช้:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "ค่าปริยาย" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4354,56 +4363,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4411,13 +4420,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4437,62 +4446,62 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 #, fuzzy msgid "Database export options" msgstr "สถิติฐานข้อมูล" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "ข้อมูล CSV สำหรับไมโครซอฟต์เอ็กเซล" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4579,7 +4588,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5006,61 +5015,61 @@ msgstr "" msgid "Browser transformation" msgstr "การแปลงที่เรียกใช้ได้" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "ลบเรียบร้อยแล้ว" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "ฆ่าทิ้ง" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "ในคำค้น" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "แสดงระเบียนที่ " -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "ทั้งหมด" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "คำค้นใช้เวลา %01.4f วินาที" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "แสดงสกีมาของ PDF" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "รุ่นของเซิร์ฟเวอร์" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "ไม่พบลิงก์" diff --git a/po/tr.po b/po/tr.po index b69f4e198b..5111144e67 100644 --- a/po/tr.po +++ b/po/tr.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-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-05-19 21:59+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" @@ -199,7 +199,7 @@ msgstr "Yorumlar" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "Hayır" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -354,7 +354,7 @@ msgid "Edit or export relational schema" msgstr "Bağlantılı şemayı dışa aktar veya düzenle" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -420,19 +420,19 @@ msgid "visual builder" msgstr "görsel yaratıcı" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Sırala" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Küçükten Büyüğe" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -539,8 +539,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -608,7 +608,7 @@ msgstr "İzleme aktif." msgid "Tracking is not active." msgstr "İzleme aktif değil." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -637,20 +637,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +661,15 @@ msgid "Check tables having overhead" msgstr "Ek yükü olan tabloları kontrol et" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Baskı görünümü" @@ -723,7 +723,7 @@ msgstr "Veri sözlüğü" msgid "Tracked tables" msgstr "İzlenen tablolar" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -921,7 +921,7 @@ msgstr "" "biteremeyeceği anlamına gelir." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1141,8 +1141,8 @@ msgstr "Sıralı Düzenleme" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1856,13 +1856,13 @@ msgstr "paylaşılmış" msgid "Tables" msgstr "Tablolar" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1966,7 +1966,7 @@ msgstr "" "%1$s sunucusu için geçersiz anamakine. Lütfen yapılandırma dosyanızı gözden " "geçirin." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2028,7 +2028,7 @@ msgstr "MySQL çıktısı: " msgid "Failed to connect to SQL validator!" msgstr "SQL onaylayıcısına bağlanma başarısız oldu!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "SQL'i açıkla" @@ -2040,11 +2040,11 @@ msgstr "SQL Açıklamasını atla" msgid "Without PHP Code" msgstr "PHP Kodsuz" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP Kodu oluştur" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Yenile" @@ -2053,7 +2053,7 @@ msgstr "Yenile" msgid "Skip Validate SQL" msgstr "SQL Onaylamayı atla" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "SQL'i onayla" @@ -2151,11 +2151,11 @@ 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:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2201,62 +2201,77 @@ msgstr "Gönderme işi için ayarladığınız dizine ulaşılamıyor" msgid "There are no files to upload" msgstr "Göndermek için hiç dosya yok" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "Her ikisi" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "Yükseklik" + +#: libraries/config.values.php:75 msgid "Open" msgstr "Açık" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "Kapandı" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "yapı" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "veri" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "yapı ve veri" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "Hızlı - yapılandırmak için sadece en az seçenekleri göster" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "Özel - yapılandırmak için tüm olası seçenekleri göster" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "Özel - yukarıdaki gibi ancak hızlı/özel seçimsiz" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "tam eklemeler" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "genişletilmiş eklemeler" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "yukarıdakinin ikisi birden" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "yukarıdakinin hiçbiri" @@ -2341,7 +2356,7 @@ msgid "Set value: %s" msgstr "Ayar değeri: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Varsayılan değeri geri yükle" @@ -2827,10 +2842,10 @@ msgstr "Gözatma kipini özelleştirir" msgid "Customize default options" msgstr "Varsayılan seçenekleri özelleştirir" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3427,7 +3442,7 @@ msgid "Maximum displayed SQL length" msgstr "En fazla görüntülenecek SQL uzunluğu" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "Kullanıcılar yüksek değer ayarlayamazlar" @@ -3492,39 +3507,35 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "Bunlar Düzenle, Sıralı düzenle, Kopyala ve Sil bağlantılarıdır" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "Tablo satır bağlantılarını sol tarafta göster" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "Tablo satır bağlantılarını sağ tarafta göster" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "Tablo ve veritabanı adlarını sıralamak için doğal sıra kullan" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Doğal sıra" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Sadece simgeleri, sadece metni veya her ikisinide kullanır" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Sembolik rehber çubuğu" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "HTTP aktarımlarındaki arttırılmış hız için GZip çıktı arabellekleme kullanımı" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip çıktı arabellekleme" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3532,19 +3543,19 @@ msgstr "" "[kbd]SMART[/kbd] - örn. TIME, DATE, DATETIME ve TIMESTAMP türü sütunları " "için büyükten küçüğe sıralama, aksi halde küçükten büyüğe sıralama" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Varsayılan sıralama düzeni" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "MySQL veritabanlarına sürekli bağlantı kullanımı" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Sürekli bağlantılar" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3554,23 +3565,23 @@ msgstr "" "biri bulunamazsa, veritabanı ayrıntıları Yapı sayfasında gösterilen " "varsayılan uyarıyı etkisizleştir" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "Eksik phpMyAdmin yapılandırma depolama tabloları" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Sembolik tablo işlemleri" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "BLOB ve BINARY sütunlarını düzenlemeye izin vermez" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "Binari sütunlarını koru" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3580,119 +3591,119 @@ msgstr "" "Eğer etkisizleştirilirse, sorgu geçmişini görüntülemek için bu JS-" "programlarından yararlanır (pencere kapatıldığında bilgi kaybolur)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Kalıcı sorgu geçmişi" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Geçmişte ne kadar sorgu tutulacağıdır" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Sorgu geçmişi uzunluğu" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Yeni sorgu penceresi açıldığında görüntülenen sekme" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Varsayılan sorgu penceresi sekmesi" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "Sorgu penceresi yüksekliği (piksel olarak)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Sorgu penceresi yüksekliği" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Sorgu penceresi genişliği (piksel olarak)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Sorgu penceresi genişliği" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "Karakter grubu dönüştürme için kullanılacak olan işlevleri seçin" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Kaydetme motoru" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Tabloyu yeniden şuna adlandır" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "Her X hücrede başlığı tekrarla, [kbd]0[/kbd] bu özelliği devre dışı bırakır" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "Başlıkları tekrarla" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "Belge metni yerine yardım düğmesi göster" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "Yardım düğmesi göster" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Dışa aktarmaların sunucu üzerinde kaydedilebileceği dizin" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Kayıt dizini" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Eğer kullanılmayacaksa boş bırakın" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "Anamakine izin düzeni" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Varsayılan için boş bırakın" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "Anamakine izin kuralları" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Parolasız oturum açmaya izin ver" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "Root oturumu açmaya izin ver" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "HTTP Kimlik Denetimi yaparken görüntülemek için Temel Kimlik Denetim alan adı" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "HTTP Alanı" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3702,19 +3713,19 @@ msgstr "" "yapılandırma dosyası yolu (belge kök klasörünüzde yer almaz; önerilen: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "SweKey yapılandırma dosyası" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Kullanmak için kimlik doğrulama yöntemi" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Kimlik doğrulama türü" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3722,11 +3733,11 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/bookmark]Yer imi[/a] desteği istenmiyorsa " "boş bırakın, varsayılan: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Yer imi tablosu" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -3734,33 +3745,33 @@ msgstr "" "Sütun yorumları/mime türleri istenmiyorsa boş bırakın, varsayılan: [kbd]" "pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Sütun bilgisi tablosu" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "MySQL sunucusu bağlantısını sıkıştırır" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Bağlantıyı sıkıştır" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" "Sunucuya nasıl bağlanılacağıdır, eğer emin değilseniz [kbd]tcp[/kbd] olarak " "bırakın" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Bağlantı türü" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Denetim kullanıcısı parolası" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3768,19 +3779,19 @@ msgstr "" "Sınırlı yetkilerle yapılandırılmış özel MySQL kullanıcısıdır, daha fazla " "bilgi [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]'de mevcuttur" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Denetim kullanıcısı" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Veritabanı listesini gösterirken tabloları sayar" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Tabloları say" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3788,11 +3799,11 @@ msgstr "" "Tasarımcı desteği istenmiyorsa boş bırakın, varsayılan: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Tasarımcı tablosu" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3800,29 +3811,29 @@ msgstr "" "[a@http://sf.net/support/tracker.php?aid=1849494]PMA hata izleyici[/a] ve " "[a@http://bugs.mysql.com/19588]MySQL Hataları[/a] üzerine daha fazla bilgi" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA kullanımı etkisiz" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Kullanmak için hangi PHP uzantısı; Eğer destekleniyorsa mysqli " "kullanmalısınız" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Kullanmak için PHP uzantısı" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "Düzenli anlatıma (PCRE) uyan veritabanlarını gizler" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Veritabanlarını gizle" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -3830,31 +3841,31 @@ msgstr "" "SQL sorgu geçmişi desteği istenmiyorsa boş bırakın, varsayılan: [kbd]" "pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "SQL sorgu geçmişi tablosu" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "MySQL sunucusunun çalıştığı anamakine" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Sunucu anamakine adı" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "Oturum kapatma URL'si" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Parolasız bağlanmayı dener" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Parolasız bağlan" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3869,30 +3880,30 @@ msgstr "" "girin ve geri kalanını alfabetik sırada göstermek için sonunda [kbd]*[/kbd] " "kullanın." -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Sadece listelenmiş veritabanları göster" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "Eğer yapılandırma kimlik denetimi kullanılmıyorsa boş bırakın" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "Yapılandırma kimlik den. için parola" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "PDF şeması desteği istenmiyorsa boş bırakın, varsayılan: [kbd]pma_pdf_pages[/" "kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF şeması: sayfalar tablosu" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3902,21 +3913,21 @@ msgstr "" "bilgi için [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]'ye bakın. " "Destek istenmiyorsa boş bırakın. Önerilen: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Veritabanı adı" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "MySQL sunucusunun dinlemede olduğu bağlantı noktası, varsayılan ayar için " "boş bırakın" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Sunucu bağ.noktası" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -3928,13 +3939,13 @@ msgstr "" "Veritabanında kullanıcı tercihleri depolaması olmaması için boş bırakın, " "önerilen: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Currently opened table" msgid "Recently used table" msgstr "Şu anda açık olan tablo" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3942,19 +3953,19 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]İlişki bağlantıları[/a] desteği " "istenmiyorsa boş bırakın, varsayılan: [kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Bağlantı tablosu" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "Mevcut veritabanları getirmek için SQL komutu" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES komutu" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3962,43 +3973,43 @@ msgstr "" "Örnek için [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]kimlik " "doğrulama türlerine[/a] bakın" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Oturum açma oturumu adı" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "Oturum açma URL'si" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" "MySQL sunucusunun dinlemede olduğu soket, varsayılan ayar için boş bırakın" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Sunucu soketi" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "MySQL sunucusuna bağlantı için SSL etkin" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "SSL kullan" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "PDF şeması desteği istenmiyorsa boş bırakın, varsayılan: [kbd]" "pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF şeması: tablo koordinatları" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" @@ -4006,11 +4017,11 @@ msgstr "" "Görüntü sütunlarını tanımlayan tablodur, destek istenmiyorsa boş bırakın; " "önerilen: [kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Görüntü sütunları tablosu" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -4022,13 +4033,13 @@ msgstr "" "Veritabanında kullanıcı tercihleri depolaması olmaması için boş bırakın, " "önerilen: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "Kullanıcı tercihleri depolama tablosu" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." @@ -4036,11 +4047,11 @@ msgstr "" "Veritabanı oluşturulduğunda günlüğe ilk satır olarak DROP DATABASE IF EXISTS " "ifadesi eklenecek." -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "DROP DATABASE ifadesi ekle" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." @@ -4048,11 +4059,11 @@ msgstr "" "Tablo oluşturulduğunda günlüğe ilk satır olarak DROP TABLE IF EXISTS ifadesi " "eklenecek." -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "DROP TABLE ifadesi ekle" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." @@ -4060,20 +4071,20 @@ msgstr "" "Görünüm oluşturulduğunda günlüğe ilk satır olarak DROP VIEW IF EXISTS " "ifadesi eklenecek." -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "DROP VIEW ifadesi ekle" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" "Yeni sürümler için otomatik oluşturma kullanan ifade listesini tanımlar." -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "İfadelerden izlere" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" @@ -4081,11 +4092,11 @@ msgstr "" "SQL sorgu izleme desteği istenmiyorsa boş bırakın, önerilen: [kbd]" "pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "SQL sorgu izleme tablosu" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." @@ -4093,11 +4104,11 @@ msgstr "" "İzleme mekanizması tablolar ve görünümler için otomatik olarak sürümler " "oluşturur." -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "Otomatik olarak sürümleri oluştur" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" @@ -4105,15 +4116,15 @@ msgstr "" "Veritabanında kullanıcı tercihleri depolaması olmaması için boş bırakın, " "önerilen: [kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "Kullanıcı tercihleri depolama tablosu" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "Yapılandırma kimlik den. için kullanıcı" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4121,11 +4132,11 @@ msgstr "" "Eğer pma_* tablolarınızın güncel olduğunu biliyorsanız etkisizleştirin. Bu " "uyumluluk kontrollerini önler ve dolayısıyla performansı arttırır" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Fazla bilgi denetimi" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." @@ -4133,21 +4144,21 @@ msgstr "" "Bu sunucunun kolay kullanım açıklaması. Anamakine adını görüntülemek için " "boş bırakın." -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Bu sunucunun fazladan adı" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Kullanıcının "tümünü (satırları) göster" düğmesini görüntüleyip " "görüntüleyemeyeceğidir" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Tüm satırları görüntülemeye izin ver" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4157,15 +4168,15 @@ msgstr "" "yapılandırmasını[/kbd] etkilemez çünkü parola yapılandırma dosyasında sıkı " "kodlanmıştır; bu, doğrudan aynı komutun yürütme kabiliyetini sınırlandırmaz" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Parola değiştirme formunu göster" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Veritabanı oluşturma formu göster" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" @@ -4173,19 +4184,19 @@ msgstr "" "Düzenle/ekle kipinde alanlar doldurulsada doldurulmasada ilk olarak " "gösterilmesini tanımlar" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "Alan türlerini göster" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "İşlev alanlarını düzenle/ekle kipinde görüntüler" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "İşlev alanlarını göster" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4193,35 +4204,35 @@ msgstr "" "[a@http://php.net/manual/function.phpinfo.php]Phpinfo()[/a] çıktısına " "bağlantıyı gösterir" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "phpinfo() bağlantısını göster" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "Ayrıntılı MySQL sunucu bilgisini göster" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "phpMyAdmin tarafından oluşturulan SQL sorgularının görüntülenip " "görüntülenmeyeceğini tanımlar" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "SQL sorgularını göster" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Veritabanı ve tablo istatistiklerini görüntülemek için izin verir (örn. alan " "kullanımı)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "İstatistikleri göster" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4229,11 +4240,11 @@ msgstr "" "Eğer araç ipuçları etkinse ve veritabanı yorumu ayarlıysa bu, yorumu ve " "gerçek adı çevirecek" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Veritabanının adı yerine yorumunu görüntüle" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4245,30 +4256,30 @@ msgstr "" "içe koymak için kulanılır, bu yüzden sadece klasör, kod adı gibi çağrılır, " "tablo adının kendi değişmeden kalır" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Tablonun adı yerine yorumunu görüntüle" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Araç ipuçlarında tablo yorumlarını görüntüle" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Kullanılan tabloları işaretleyin ve veritabanlarını kilitli tablolarla " "birlikte gösterilmesini mümkün yapın" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Kilitli tabloları atla" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "SQL Onaylayıcının etkinleştirilmesini gerektirir" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4278,7 +4289,7 @@ msgstr "SQL Onaylayıcının etkinleştirilmesini gerektirir" msgid "Password" msgstr "Parola" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" @@ -4286,11 +4297,11 @@ msgstr "" "[strong]Uyarı:[/strong] PHP SOAP uzantısı ya da PEAR SOAP kurulu olması " "gerekir" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "SQL Onaylayıcı etkin" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" @@ -4298,12 +4309,12 @@ msgstr "" "Eğer özel kullanıcı adınız varsa, onu burada belirleyin (varsayılanı [kbd]" "isimsiz'dir[/kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Kullanıcı Adı" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4311,19 +4322,19 @@ msgstr "" ""Veritabanı Oluşturma" formunda veritabanı önerir (eğer mümkünse) " "veya metin alanını boş tutar" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Yeni veritabanı adı öner" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "Eğer Suhosin algılanırsa, ana sayfada uyarı gösterilir" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Suhosin uyarısı" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4331,11 +4342,11 @@ msgstr "" "Düzenle kipinde metin alanı boyutu (sütunlar), bu değer SQL sorgu metni " "alanları (*2) ve sorgu penceresi (*1.25) için önemi belirtecektir" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "Metin alanı sütunları" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4343,31 +4354,31 @@ msgstr "" "Düzenle kipinde metin alanı boyutu (satırlar), bu değer SQL sorgu metni " "alanları (*2) ve sorgu penceresi (*1.25) için önemi belirtecektir" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "Metin alanı satırları" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "Veritabanı seçildiğinde tarayıcı penceresi başlığı" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "Hiçbir şey seçilmediğinde tarayıcı penceresi başlığı" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Varsayılan başlık" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "Sunucu seçildiğinde tarayıcı penceresi başlığı" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "Tablo seçildiğinde tarayıcı penceresi başlığı" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4379,27 +4390,27 @@ msgstr "" "Forwarded-For) başlığına güvenmesini belirler:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "IP İzin Verme/Reddetme için güvenilir proksi listesi" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "İçe aktarmak için dosyaları gönderebileceğiniz sunucu üzerindeki dizin" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Gönderme dizini" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "Tüm veritabanı içinde aramaya izin verir" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Veritabanı aramayı kullan" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" @@ -4407,11 +4418,11 @@ msgstr "" "Etkisizleştirildiğinde kullanıcılar sağdaki işaret kutusunu dikkate almadan " "herhangi bir seçeneği ayarlayamazlar" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "Ayarlarda Geliştirici sekmesi etkin" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4420,19 +4431,19 @@ msgstr "" "Çoklu ifade sorgularında etkilenmiş her ifade sırasını gösterir. İfadenin ne " "kadar sorgu içerebileceği varsayılanı için libraries/import.lib.php'ye bakın." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Çoklu ifadeler için fazla bilgi" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Son sürümü kontrol et" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "Ana phpMyAdmin sayfasında son sürümü kontrol etmeyi etkinleştir" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4440,7 +4451,7 @@ msgstr "Ana phpMyAdmin sayfasında son sürümü kontrol etmeyi etkinleştir" msgid "Version check" msgstr "Sürüm kontrolü" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4448,7 +4459,7 @@ msgstr "" "İçe ve dışa aktarma işlemleri için [a@http://en.wikipedia.org/wiki/ZIP_" "(file_format)]ZIP[/a] sıkıştırma etkin" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4468,61 +4479,61 @@ msgstr "HTTP kimlik doğrulaması" msgid "Signon authentication" msgstr "Oturum kaydı kimlik doğrulaması" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "VERİ YÜKLE kullanarak CSV" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS Kitabı" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX Kitabı" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Açık Kaynaklı Tablolama Belgesi" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "Hızlı" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "Özel" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Veritabanı dışa aktarma seçenekleri" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel için CSV" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "Açık Belge Metni" @@ -4612,7 +4623,7 @@ msgstr "Yordamlar" msgid "Return type" msgstr "Dönüş türü" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5011,58 +5022,58 @@ msgstr "BLOB içerikleri göster" msgid "Browser transformation" msgstr "Tarayıcı dönüşümü" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "Kopyala" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Satır silindi" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Sonlandır" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "sorgu içerisinde" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Gösterilen satırlar" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "toplam" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Sorgu %01.4f san. sürdü" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Sorgu sonuçları işlemleri" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Baskı görünümü (tüm metinler ile)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "Çizelge göster" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "Görünüm oluştur" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Bağlantı bulunamadı" @@ -10225,6 +10236,12 @@ msgstr "GÖRÜNÜM adı" msgid "Rename view to" msgstr "Görünümü yeniden şuna adlandır" +#~ msgid "Show table row links on left side" +#~ msgstr "Tablo satır bağlantılarını sol tarafta göster" + +#~ msgid "Show table row links on right side" +#~ msgstr "Tablo satır bağlantılarını sağ tarafta göster" + #~ msgid "Background color" #~ msgstr "Arkaplan rengi" diff --git a/po/tt.po b/po/tt.po index b5435c4135..c106d4b8d4 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: tatarish \n" @@ -199,7 +199,7 @@ msgstr "Açıqlama" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "Yuq" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -362,7 +362,7 @@ msgid "Edit or export relational schema" msgstr "Bäyläneşlär sxeme" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -429,19 +429,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Tezü" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Artıp" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -554,8 +554,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -628,7 +628,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -657,20 +657,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +681,15 @@ msgid "Check tables having overhead" msgstr "Check overheaded" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Bastıru küreneşe" @@ -749,7 +749,7 @@ msgstr "Eçtälek Süzlege" msgid "Tracked tables" msgstr "Tüşämä tikşerü" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -942,7 +942,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1197,8 +1197,8 @@ msgstr "Engine" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1961,13 +1961,13 @@ msgstr "" msgid "Tables" msgstr "Tüşämä" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2076,7 +2076,7 @@ msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2138,7 +2138,7 @@ msgstr "MySQL qaytarışı:" msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "SQL Centekläw" @@ -2150,11 +2150,11 @@ msgstr "SQL Centeklämäskä" msgid "Without PHP Code" msgstr "PHP Kodısız" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP-Kod yasa" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Yañart" @@ -2163,7 +2163,7 @@ msgstr "Yañart" msgid "Skip Validate SQL" msgstr "SQL Tikşermäskä" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "SQL'nı Tikşer" @@ -2263,11 +2263,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2314,21 +2314,34 @@ msgstr "Yökläw öçen bigelängän törgäkne uqıp bulmí" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Yabılmağan cäyä" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 @@ -2336,13 +2349,13 @@ msgstr "Yabılmağan cäyä" msgid "structure" msgstr "Tözeleş" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2350,35 +2363,35 @@ msgstr "" msgid "structure and data" msgstr "Tözeleşen dä, eçtälegen dä" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Tulayım östise" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Kiñäytep östise" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2466,7 +2479,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2962,10 +2975,10 @@ msgstr "" msgid "Customize default options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3553,7 +3566,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3611,356 +3624,352 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Tüşämä eçtälegen bolay tezäse" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Soraw täräzäse" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Soraw täräzäse" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Soraw täräzäse" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Tüşämä adın üzgärtü" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Tözätü cebe" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 #, fuzzy msgid "Save directory" msgstr "Biremnär törgäge" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 #, fuzzy msgid "Connection type" msgstr "Totaşular" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 #, fuzzy msgid "Count tables" msgstr "Berär genä dä tüşämä yuq" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 #, fuzzy msgid "Designer table" msgstr "Tüşämä kisäklären berläşterü" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 #, fuzzy msgid "PHP extension to use" msgstr "PHP Söreme" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 #, fuzzy msgid "Hide databases" msgstr "Biremleklär yuq" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 #, fuzzy msgid "Server hostname" msgstr "server adı" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3969,326 +3978,326 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "biremlek adı" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 #, fuzzy msgid "Server port" msgstr "Server ID'e" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Tüşämä centekläw" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" msgstr "Tüşämä tözätü" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 #, fuzzy msgid "Server socket" msgstr "Server Saylaw" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" msgstr "Buy Açıqlamasın Kürsätäse" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Tüşämä kisäklären berläşterü" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Cömlä" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Üzennän tözälü ısulı" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Açıq tüşämä tezmäse" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 #, fuzzy msgid "Show SQL queries" msgstr "Tulı Sorawlar Kürsät" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 #, fuzzy msgid "Show statistics" msgstr "Kerem Nöfüse" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4296,29 +4305,29 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Skip locked tables" msgstr "Açıq tüşämä tezmäse" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4328,90 +4337,90 @@ msgstr "" msgid "Password" msgstr "Sersüz" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" msgstr "Atama:" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "Add/Delete Field Columns" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy msgid "Default title" msgstr "Biremlekne bolay atap quy" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4419,57 +4428,57 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 #, fuzzy msgid "Upload directory" msgstr "Biremnär törgäge" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4477,13 +4486,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4503,61 +4512,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "LOAD DATA qullanıp CSV" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Biremlek saqlaw köyläneşe" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV bireme, MS Excel öçen" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4645,7 +4654,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5081,61 +5090,61 @@ msgstr "" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Bu yazma salınğan buldı" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Üter" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "sorawda" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Yazma sanı:" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "tulayım" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Soraw eşkärtü %01.4f sek aldı" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Soraw qaytarmasın eşkärtü" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Bastıru küreneşe (bar mätennär belän)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF schema kürsätü" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" msgstr "Server söreme" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Bäyläneş tabılmadı" diff --git a/po/ug.po b/po/ug.po index 33e1ec6e0a..c5b4473661 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-08-26 11:59+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" @@ -199,7 +199,7 @@ msgstr "ئىزاھلار" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -215,7 +215,7 @@ msgstr "يوق" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -356,7 +356,7 @@ msgid "Edit or export relational schema" msgstr "PDF تىزىىسىنى كۆرسىتىش" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -422,19 +422,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "تۈرلەش" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "ئارتىش" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -542,8 +542,8 @@ msgstr "كۆزەت" msgid "Delete the matches for the %s table?" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -613,7 +613,7 @@ msgstr "ئاكتىپ ئىزلاش" msgid "Tracking is not active." msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -641,20 +641,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +665,15 @@ msgid "Check tables having overhead" msgstr "مەزمۇن بارلارنى تاللاش" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "بېسىپ كۆرسىتىش" @@ -729,7 +729,7 @@ msgstr "مەلۇمات لۇغىتى" msgid "Tracked tables" msgstr "ئىزلانغان جەدۋەل" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -926,7 +926,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:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1173,8 +1173,8 @@ msgstr " ئىچكى بىرلىشىش" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1889,13 +1889,13 @@ msgstr "" msgid "Tables" msgstr "" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1994,7 +1994,7 @@ msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىتىنى تەشۈرۈڭ." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2056,7 +2056,7 @@ msgstr "MySQL جاۋابى:" msgid "Failed to connect to SQL validator!" msgstr "Failed to connect to SQL validator!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "SQL ئىزاھى" @@ -2068,11 +2068,11 @@ msgstr "SQL ئىزاھىىدىن ئاتلاش" msgid "Without PHP Code" msgstr "PHP كودى يوق" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP كودى قۇرۇش" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "يېڭلاش" @@ -2081,7 +2081,7 @@ msgstr "يېڭلاش" msgid "Skip Validate SQL" msgstr "SQL دەلىللەشتىن ئاتلاش" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "SQL دەلىللەش" @@ -2179,11 +2179,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2230,32 +2230,45 @@ msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2263,31 +2276,31 @@ msgstr "" msgid "structure and data" msgstr "تۈزۈلىشى ۋە ئۇچۇر" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2374,7 +2387,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2847,10 +2860,10 @@ msgstr "" msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3414,7 +3427,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3470,339 +3483,335 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "ئەسلىگە كەلتۈرۈش يۇلى" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3811,311 +3820,311 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "ساندان ئىسمى" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "جەدۋەل تەھلىلى" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4123,28 +4132,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4154,90 +4163,90 @@ msgstr "" msgid "Password" msgstr "پارول" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete columns" msgid "Textarea columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "ئەندىز" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4245,56 +4254,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4302,13 +4311,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4336,61 +4345,61 @@ msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..." msgid "Signon authentication" msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..." -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "OpenOffice جەدىۋېلى" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel دىكى CSVشەكلى" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "OpenOffice ھۆججىتى" @@ -4477,7 +4486,7 @@ msgstr "دائىملىق" msgid "Return type" msgstr "تۈرگە قايتىش" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4900,62 +4909,62 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "ئۇمۇمىي" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "بېسىپ چىقىرش كۈرۈلمىسى" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "جەدۋەل ئىزاھى" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "نەشىرنى قۇىماق" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "ئۇلىنىشنى تاپالمىدى" diff --git a/po/uk.po b/po/uk.po index 231ffb69a2..66d9672c51 100644 --- a/po/uk.po +++ b/po/uk.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-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-12-28 22:26+0200\n" "Last-Translator: Olexiy Zagorskyi \n" "Language-Team: ukrainian \n" @@ -198,7 +198,7 @@ msgstr "Коментарі" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -214,7 +214,7 @@ msgstr "Ні" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -353,7 +353,7 @@ msgid "Edit or export relational schema" msgstr "Редагувати або експортувати схему зв'язків" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -421,19 +421,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Посортувати" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Зростаючий" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -542,8 +542,8 @@ msgstr "Переглянути" msgid "Delete the matches for the %s table?" msgstr "Видалити співпадіння для таблиці %s ?" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -613,7 +613,7 @@ msgstr "Трекінг є активним." msgid "Tracking is not active." msgstr "Трекінг не активний." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -641,20 +641,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +665,15 @@ msgid "Check tables having overhead" msgstr "" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Версія для друку" @@ -731,7 +731,7 @@ msgstr "Словник даних" msgid "Tracked tables" msgstr "" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -917,7 +917,7 @@ msgid "" msgstr "" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1140,8 +1140,8 @@ msgstr "Редагування рядків" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1839,13 +1839,13 @@ msgstr "" msgid "Tables" msgstr "Таблиць" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1948,7 +1948,7 @@ msgstr "" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2010,7 +2010,7 @@ msgstr "Відповідь MySQL: " msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Тлумачити SQL" @@ -2022,11 +2022,11 @@ msgstr "Не тлумачити SQL" msgid "Without PHP Code" msgstr "без PHP коду" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "Створити PHP код" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "" @@ -2035,7 +2035,7 @@ msgstr "" msgid "Skip Validate SQL" msgstr "Не перевіряти SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "Перевірити SQL" @@ -2133,11 +2133,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2183,64 +2183,77 @@ msgstr "Встановлений Вами каталог для завантаж msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Не закриті лапки" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "структура і дані" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "повні вставки" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "розширені вставки" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2325,7 +2338,7 @@ msgid "Set value: %s" msgstr "" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "" @@ -2789,10 +2802,10 @@ msgstr "" msgid "Customize default options" msgstr "" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV дані" @@ -3342,7 +3355,7 @@ msgid "Maximum displayed SQL length" msgstr "" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3398,339 +3411,335 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "Звичайний порядок" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "Висота вікна запиту" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "Ширина вікна запиту (в пікселях)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "Ширина вікна запиту" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Перейменувати таблицю в" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3739,309 +3748,309 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "Ім'я бази даних" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "Аналіз таблиці" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "Показувати колонки таблиці" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4049,28 +4058,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4080,86 +4089,86 @@ msgstr "" msgid "Password" msgstr "Пароль" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "Заголовок по замовчуванню" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4167,56 +4176,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4224,13 +4233,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4250,61 +4259,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Налаштування експорту бази даних" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "CSV для даних MS Excel" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4391,7 +4400,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4787,62 +4796,62 @@ msgstr "" msgid "Browser transformation" msgstr "Перетворення МІМЕ-типу бровзером" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Рядок видалено" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Вбити" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "по запиту" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Показано записи " -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "всього" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Запит виконувався %01.4f сек" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Показати PDF схему" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy #| msgid "Create User" msgid "Create view" msgstr "Створити користувача" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Лінк не знайдено" diff --git a/po/ur.po b/po/ur.po index ed826918ae..27960b7f39 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-04-23 08:37+0200\n" "Last-Translator: Mehbooob Khan \n" "Language-Team: Urdu \n" @@ -204,7 +204,7 @@ msgstr "تبصرہ" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -220,7 +220,7 @@ msgstr "نہیں" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -359,7 +359,7 @@ msgid "Edit or export relational schema" msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -427,19 +427,19 @@ msgid "visual builder" msgstr "بصری تعمیر کنندہ" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "چھانٹیں" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "صعودی" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -547,8 +547,8 @@ msgstr "براؤز" msgid "Delete the matches for the %s table?" msgstr "اس جدول کے مشابہات حذف %s کریں؟" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -617,7 +617,7 @@ msgstr "کھوج فعال ہے۔" msgid "Tracking is not active." msgstr "کھوج غیر فعال ہے۔" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -646,20 +646,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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" @@ -670,15 +670,15 @@ msgid "Check tables having overhead" msgstr "اوور ہیڈ جداول کی پڑتال کریں" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "چھپائی منظر" @@ -736,7 +736,7 @@ msgstr "کوائف لغت" msgid "Tracked tables" msgstr "کھوج شدہ جداول" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -933,7 +933,7 @@ msgstr "" "کو اس وقت تک مکمل نہیں کرسکتا جب تک کہ php وقت حد کو آپ بڑھاتے نہیں۔" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1161,8 +1161,8 @@ msgstr "ان لائن تدوین" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1872,13 +1872,13 @@ msgstr "حصہ دارانہ" msgid "Tables" msgstr "جداول" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1978,7 +1978,7 @@ msgstr "غلط سرور اشاریہ: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "سرور کے لیے ہوسٹ نام غلط ہے %1$s. اپنے تشکیل کا جائزہ لیں۔" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2040,7 +2040,7 @@ msgstr "MySQL نے کہا:" msgid "Failed to connect to SQL validator!" msgstr "SQL جواز دہندہ سے جڑت ناکام ہوا!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "SQL کی تفصیل بتائیں" @@ -2052,11 +2052,11 @@ msgstr "SQL وضاحت کو چھوڑیں" msgid "Without PHP Code" msgstr "PHP کوڈ کے بغیر" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP کوڈ بنائیں" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "تازہ کریں" @@ -2065,7 +2065,7 @@ msgstr "تازہ کریں" msgid "Skip Validate SQL" msgstr "SQL توثیق چھوڑیں" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "SQL کی توثیق کریں" @@ -2163,11 +2163,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s ایک نامعلوم نقص سے کام متاثر ہوا, دیکھیں %s" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2213,62 +2213,75 @@ msgstr "اپ لوڈ کام کے لیے سیٹ کیا گیا پوشہ قابل ر msgid "There are no files to upload" msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "دونوں" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "کھولیں" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "بند ہوا" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "ساخت" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "کوائف" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "ساخت اور کوائف" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "سریع - تشکیل کے کم سے کم اختیارات دکھائیں" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "مخصوص - تشکیل کے تمام اختیارات دکھائیں" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "مخصوص - بالا ی طرح لیکن سریع/مخصوص انتخاب کے بغیر" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "داخل کرنا مکمل ہوا" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "توسیع شدہ داخلے" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "دونوں بالا" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "بالا میں سے کوئی بھی نہیں" @@ -2353,7 +2366,7 @@ msgid "Set value: %s" msgstr "قدر سیٹ کریں: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "طے شدہ قدر بحال کریں" @@ -2835,10 +2848,10 @@ msgstr "برااؤز موڈ کی تخصیص کریں" msgid "Customize default options" msgstr "طے شدہ اختیارات کی تخصیص کریں" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3427,7 +3440,7 @@ msgid "Maximum displayed SQL length" msgstr "SQL کی زیادہ سے زیادہ لمبائی جو دکھائی جائے" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "صارفین اسے سے زیادہ قدر مقرر نہیں کرسکتے" @@ -3491,38 +3504,34 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "یہ تدوین، ان لائن تدوین، نقل اور حذف روابط ہیں" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "جدول صف روابط کو بائیں طرف دکھائیں" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "جدول صف روابط کو دائیں طرف دکھائیں" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "جدول اور کوائفیہ نام ترتیب کے لیے قدرتی انداز استعمال کریں" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "قدرتی ترتیب" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "صرف شبیہے، صرف متن یا دوتوں استعمال کریں" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "شبیہاتی گشت بار" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "HTTP منتقلی رفتار بڑھانے کے لیے GZip آؤٹ پٹ بفر استعمال کریں" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip آؤٹ پٹ بفر" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3530,19 +3539,19 @@ msgstr "" "[kbd]SMART[/kbd] - اس اقسام کی کالموں کے لیے نزولی ترتیب type TIME, DATE, " "DATETIME اور TIMESTAMP, بصورت دیگر صعودی ترتیب" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "طے شدہ چھانٹی ترتیب" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "MySQL کوائفیہ سے جڑنے کے لیے بہتر جڑت استعمال کریں" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "بہتر جوڑ" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " @@ -3551,23 +3560,23 @@ msgstr "" "اگر phpMyAdmin تشکیل ذخیرہ میں کوئی درکار جداول نہیں ملا جو کہ کوائفیہ " "تفصیلی ساکت صفحہ میں دکھایا جاتا ہے تو طے شدہ انتباہ کو غیر فعال کریں" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "phpMyAdmin تشکیل ذخیرہ جداول موجود نہیں ہے" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "شبیہاتی جدول عملیات" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "BLOB اور BINARY کالم تدوین کے لیے ممنوع کریں" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "ثنائی کالم کو ممنوع کریں" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3577,116 +3586,116 @@ msgstr "" "درکار ہوگی). غیرفعال کرنے کی صورت میں یہ جاوا سکرپٹ فنکشن کو استعمال کرتے " "ہوئے طلب لاگ دکھاتا ہے (دریچہ بند ہونے کی صورت میں ضائع ہوجاتی ہے)." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "مستقل طلب لاگ" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "لاگ میں کتنے طلب رکھے جانے چاہیں" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "طلب لاگ کی لمبائی" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "جب ایک نیا طلب دریچہ کھولا جائے گا تو جدول نظر آئے گی" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "طے شدہ طلب دریچہ جدول" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "طلب دریچہ اونچائی(پکسل میں)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "طلب دریچہ اونچائی" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "طلب دریچہ چوڑائی(پکسل میں)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "طلب دریچہ چوڑائی" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "حروف بدلنے کے لیے کونسے فنکش استعمال ہوں کی انتخاب کریں" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "ری کوڈ انجن" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 msgid "Remember table's sorting" msgstr "" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" "سرخی کو ہرX خانے کے لیے دہرائیں, [kbd]0[/kbd] اس خاصیت کو غیر فعال کرتا ہے" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "دہرانے کے لیے سرخیاں" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "مدد دستاویز متن کی جگہ بٹن دکھائیں" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "مدد بٹن دکھائیں" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "وہ پوشہ جس پر برآمد سرور میں محفوظ کیے جاسکیں" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "پوشہ محفوظ کریں" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "استعمال نہ ہونے کی صورت میں خالی چھوڑ دیں" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "ہوسٹ توثیق حکم" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "طے شدہ کے لیے خالی چھوڑ دیں" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "ہوسٹ توثیق قاعدے" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "پاس ورڈ کے بغیر لاگ ان کی اجازت دیں" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "منتظم لاگ ان کی اجازت دیں" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "HTTP بنیادی توثیق اختیار نام جو دکھائی جائے جب HTTP توثیق کررہا ہو" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "HTTP اختیار" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3695,19 +3704,19 @@ msgstr "" "تشکیل مسل کے لیے جگہ [a@http://swekey.com]SweKey ہاروئیر توثیق[/a] (آپ کے " "منتظم دستاویز میں موجود نہیں ہے; مجوزہ: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "SweKey تشکیل مسل" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "توثیق کا طریقہ جو استعمال ہو" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "توثیق قسم" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3715,42 +3724,42 @@ msgstr "" "نہیں کے لیے خالی چھوڑیں@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "معاونت، مجوزہd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "جدول نشان کریں" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "" "کالم تبصرہ/mime اقسام کے لیے خالی چھوڑیں, مجوزہ: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "کالم معلومات جدول" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "جڑنے کو MySQL سرور کے لیے سکیڑیں" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "جڑنے کو سکیڑیں" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "سرور سے کیسے جڑا جائے, چھوڑ دیں [kbd]tcp[/kbd] اگر پتا نہیں" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "جڑنے کی قسم" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "صارف پاس ورڈ کنٹرول" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3758,19 +3767,19 @@ msgstr "" "ایک خاص MySQL صارف مقررہ اجازت نامہ کے ساتھ تشکیل دیا گیا ہے, مزید معلومات " "یہاں موجود ہیں[a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "صارف کو کنٹرول کریں" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "جب کوائفیہ فہرست دکھا رہے ہوں تو جداول کی گنتی کریں" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "حداول کی گنتی کریں" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -3778,11 +3787,11 @@ msgstr "" "اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "ڈیزائنر جدول" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3790,59 +3799,59 @@ msgstr "" "مزید معلومات یہاں موجود ہے [a@http://sf.net/support/tracker.php?aid=1849494]" "PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL نقائص[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA کی استعمال کو غیر فعال کریں" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "PHP کو کونسی قسم استعمال کی جائے; آپ استعمال کریں mysqli اگر اس کی معاونت ہے" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "PHP کی قسم جو اسعتمال کی جائے" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "وہ کوائفیے چھپائیں جو ریگولر ایکسپریشن سے مطابقت رکھتے ہیں (PCRE)" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "کوائفیے چھپائیں" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "" "SQL طلب لاگ معاونت نہ کرنے کے لیے خالی چھوڑیں , مجوزہ: [kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "SQL طلب لاگ جدول" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "جہاں MySQL سرور چل رہا ہے اس کا نام" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "سرور نام" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "لاگ آؤٹ URL" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "پاس ورڈ کے بغیر جڑنے کی کوشش کریں" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "پاس ورڈ کے بغیر جڑیں" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3851,49 +3860,49 @@ msgid "" "alphabetical order." msgstr "" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "Database" msgid "Database name" msgstr "ڈیٹا بیس" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no column comments/mime types, suggested: [kbd]" @@ -3904,80 +3913,80 @@ msgid "" msgstr "" "کالم تبصرہ/mime اقسام کے لیے خالی چھوڑیں, مجوزہ: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "صارف نام یاد کریں" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" @@ -3989,184 +3998,184 @@ msgstr "" "اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 msgid "UI preferences table" msgstr "" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4174,28 +4183,28 @@ msgid "" "alias, the table name itself stays unchanged" msgstr "" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4205,90 +4214,90 @@ msgstr "" msgid "Password" msgstr "" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default" msgid "Default title" msgstr "ڈیفالٹ" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4296,56 +4305,56 @@ msgid "" "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4353,13 +4362,13 @@ msgstr "" msgid "Version check" msgstr "" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "" @@ -4379,61 +4388,61 @@ msgstr "" msgid "Signon authentication" msgstr "" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "" @@ -4520,7 +4529,7 @@ msgstr "" msgid "Return type" msgstr "" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4910,62 +4919,62 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "ٹیبل کمنٹس" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy #| msgid "Created" msgid "Create view" msgstr "تخلیق کیا گیا" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "" @@ -9741,3 +9750,9 @@ msgstr "" #: view_operations.php:91 msgid "Rename view to" msgstr "" + +#~ msgid "Show table row links on left side" +#~ msgstr "جدول صف روابط کو بائیں طرف دکھائیں" + +#~ msgid "Show table row links on right side" +#~ msgstr "جدول صف روابط کو دائیں طرف دکھائیں" diff --git a/po/uz.po b/po/uz.po index 5cd9aa0ae7..93bb6bccfb 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_cyrillic \n" @@ -200,7 +200,7 @@ msgstr "Изоҳлар" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -216,7 +216,7 @@ msgstr "Йўқ" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -364,7 +364,7 @@ msgid "Edit or export relational schema" msgstr "Алоқалар схемаси" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -432,19 +432,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Сортировка қилиш" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "Ўсиш тартибида" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -558,8 +558,8 @@ msgstr "Кўриб чиқиш" msgid "Delete the matches for the %s table?" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -633,7 +633,7 @@ msgstr "Кузатиш фаол." msgid "Tracking is not active." msgstr "Кузатиш фаол эмас." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -663,20 +663,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +687,15 @@ msgid "Check tables having overhead" msgstr "Оптималлаштириш лозим бўлгн жадвалларни белгилаш" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Чоп этиш версияси" @@ -755,7 +755,7 @@ msgstr "Маълумотлар луғати" msgid "Tracked tables" msgstr "Кузатилган жадваллар" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -958,7 +958,7 @@ msgstr "" "phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1224,8 +1224,8 @@ msgstr "Жадвал турлари" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -2010,13 +2010,13 @@ msgstr "" msgid "Tables" msgstr "Жадваллар" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2131,7 +2131,7 @@ msgstr "" " %1$s сервери учун нотўғри хост номи кўрсатилган. phpMyAdmin конфигурацион " "файлида белгиланган созлашларни тўғирланг." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2196,7 +2196,7 @@ msgstr "MySQL жавоби: " msgid "Failed to connect to SQL validator!" msgstr "MySQL-серверга уланиб бўлмади" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "Сўров таҳлили" @@ -2208,11 +2208,11 @@ msgstr "Таҳлил керак эмас" msgid "Without PHP Code" msgstr "PHP-код олиб ташлаш" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Янгилаш" @@ -2221,7 +2221,7 @@ msgstr "Янгилаш" msgid "Skip Validate SQL" msgstr "SQL синтаксиси текширувини олиб ташлаш" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "SQL тўғрилигини текшириш" @@ -2323,11 +2323,11 @@ msgstr "" "маълумот учун қаранг \"%s\"" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2374,34 +2374,47 @@ msgstr "Кўрсатилган каталокка юклаб бўлмади" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Close" msgid "Closed" msgstr "Ёпиш" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "тузилиш" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2409,35 +2422,35 @@ msgstr "" msgid "structure and data" msgstr "Тузилиши ва маълумотлари" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Тўла қўйиш" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Кенгайтирилган қўйилмалар" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2527,7 +2540,7 @@ msgid "Set value: %s" msgstr "Қуйидаги қийматни ўрнатиш: \"%s\"" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Асл қийматларни тиклаш" @@ -3055,10 +3068,10 @@ msgstr "Кўриб чиқиш усулини созлаш" msgid "Customize default options" msgstr "Экспорт афзалликларини созлаш" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3682,7 +3695,7 @@ msgid "Maximum displayed SQL length" msgstr "SQL сўровининг максимал узунлиги" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3744,44 +3757,38 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -#, fuzzy -#| msgid "Show logo in left frame" -msgid "Show table row links on left side" -msgstr "Чап рамкада логотипни кўрсатиш" - -#: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" +msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Жадвал сортировкасини ўзгартириш" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Фақат пиктограмма, фақат матн ёки ҳар иккисини ишлатиш" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Пиктограммали навигация менюси" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "HTTP орқали маълумот узатишда юқори тезликка эришиш учун GZip буферизациядан " "фойдаланинг" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip буферизация" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -3793,46 +3800,46 @@ msgstr "" "[kbd]SMART[/kbd] – яъни, TIME, DATE, DATETIME ва TIMESTAMP туридаги " "майдонлар учун камайиш тартибида, акс ҳолда кўпайиш тартибида" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Асл тартиблаш қоидаси" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "MySQL маълумотлар базаларида доимий уланишлардан фойдаланиш" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Доимий уланишлар" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Жадвал операцияларини пиктограммалар ёрдамида амалга ошириш" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 #, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "BLOB ва BINARY майдонларини таҳирлашни ман этиш" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Бинар (иккилик) майдонларни ҳимоялаш" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3846,131 +3853,131 @@ msgstr "" "танловни ёқинг (pmadb талаб этилади). Ушбу танлов ўчирилган бўлса, ойна " "ёпилган заҳоти сўровлар тарихи йўқолади." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Доимий сўровлар тарихи" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Журналда сақланадиган сўровлар сони" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "Сўровлар тарихи узунлиги" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Янги сўровлар ойнаси очилганда кўрсатиладиган ёрлиқ" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "Сўровлар ойнасининг ёрлиғи" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "Сўровлар ойнаси" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "Сўровлар ойнаси" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "Сўровлар ойнаси" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Кодировкаларни бир-бирига ўтказишда фойдаланиладиган функцияларни танланг" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Кодировкалаш функцияси" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Жадвал номини ўзгартириш" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Оқимли тиклаш" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Сервердаги экспорт файллар сақланадиган директория" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Сақлаш директорияси" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Агар ишлатилмаса бўш қолдиринг" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Аутентификация тартиби" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Асл қоидаларни ишлатиш учун бўш қолдиринг" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Аутентификация қоидалари" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Паролсиз қиришга рухсат бериш" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "\"root\"га киришга рухсат бериш" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "HTTP Авторизация вақтида кўрсатиладиган Оддий HTTP Авторизация Бўлими номи" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "HTTP Бўлими" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3980,19 +3987,19 @@ msgstr "" "файл йўли (ҳужжатлар каталогига жойлаштирилмаган; тавсия этилади: /etc/" "swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "\"SweKey\" конфигурация файли" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Фойдаланиладиган аутентификация усули" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Аутентификация усули" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4000,11 +4007,11 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/bookmark]Хатчўп[/a] ишлатмаслик учун бўш " "қолдиринг, асли: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Хатчўплар жадвали" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4012,31 +4019,31 @@ msgstr "" "Устун изоҳлари/\"mime\"-турлари ҳақидаги маълумотларни ишлатмаслик учун бўш " "қолдиринг, асли: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Устун маълумотлари жадвали" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "MySQL сервеига уланишни қисиш" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Уланишни қисиш" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Серверга уланиш тури, агар билмасангиз, \"tcp\" деб қолдиринг" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Уланиш тури" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Назорат фойдаланувчиси пароли" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4045,19 +4052,19 @@ msgstr "" "батафсил маълумот [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/a]" "да мавжуд" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Назорат фойдаланувчиси" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Маълумотлар базалари рўйхати кўрсатилганда жадвалларни санаш" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Жадвалларни санаш" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4065,11 +4072,11 @@ msgstr "" "Дизайнер ишлатмаслик учун бўш қолдиринг, асл қиймати: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Дизайнер жадвали" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -4078,30 +4085,30 @@ msgstr "" "bug tracker\"[/a] ва [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]ларга " "қаранг" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA ишлатишни ўчириш" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Қайси PHP кенгайтмасидан фойдаланмоқчисиз; иложи бўлса, \"mysqli\" " "кенгайтмасидан фойдаланинг" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Фойдаланиладиган PHP кенгайтмаси" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" "Мунтазам иборалар(PCRE)га тўғри келадиган маълумотлар базаларини яшириш" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Базаларни яшириш" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4109,31 +4116,31 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "SQL сўровлари тарихи жадвали" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "MySQL сервери ишлаётган хост номи" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Сервер хост номи" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "Чиқиш URL" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Паролсиз уланишга ҳаракат қилиш" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Паролсиз уланиш" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -4149,31 +4156,31 @@ msgstr "" "олдига тескари эгри чизиқ (\\) қўйишингиз керак, масалан \\\"my\\_db\\" "\" (лекин \"my_db\" эмас)" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Фақат рўйхатдаги базаларни кўрсатиш" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" "Агар \"config\" аутентификация усулидан фойдаланмасангиз, бўш қолдиринг" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "\"config\" аутентификация усули пароли" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" "Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: " "[kbd]\"pma_pdf_pages\"[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF-схема: саҳифалар жадвали" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4184,22 +4191,22 @@ msgstr "" "қаранг. Агар фойдаланмасангиз, бўшқолдиринг. Асл қиймати: [kbd]\"phpmyadmin" "\"[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "маълумотлар базаси номи" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "MySQL сервери тинглайдиган порт, асл қийматни қолдириш учун бўш қолдиринг" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Сервер порти" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4211,13 +4218,13 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Фойдаланувчи номини чақириб олиш" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4225,19 +4232,19 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]Алоқа боғланишлари[/a]ни " "ишлатмаслик учун, бўш қолдиринг, асл қиймати: [kbd]\"pma_relation\"[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Алоқалар жадвали" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "Мавжуд жадвалларни кўрсатиш учун ишлатиладиган SQL буйруғи" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES буйруғи" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4245,44 +4252,44 @@ msgstr "" "Намуна учун [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "аутентификация усуллари[/a]га қаранг" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Кириш сессияси номи" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "Кириш URL" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "MySQL сервери тинглайдиган сокет, асл қиймати учун бўш қолдиринг" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Сервер сокети" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" "SSL (Secure Sockets Layer - ҳимояланган сокетлар протоколи) уланишдан " "фойдаланиш" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "SSL уланишдан фойдаланиш" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" "PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: " "[kbd]\"pma_table_coords\"[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF-схема: жадвал координаталари" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -4294,13 +4301,13 @@ msgstr "" "Кўрсатиладиган майдонлар шарҳлари сақланадиган жадвал, ишлатмаслик учун бўш " "қолдиринг, асл қиймати: [kbd]\"pma_table_info\"[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Майдонлар жадвалини кўрсатиш" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4312,53 +4319,53 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Жадвални дефрагментациялаш" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Тавсиф" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4370,25 +4377,25 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL сўровлари тарихи жадвали" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Автоматик тиклаш режими" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4400,15 +4407,15 @@ msgstr "" "Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл " "қиймати: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "\"config\" аутентификация усули фойдаланувчиси" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4417,32 +4424,32 @@ msgstr "" "ишонсангиз, унда ўчириб қўйинг. Шундай қилсангиз, ортиқча текширувларнинг " "олдини олган бўласиз ва ишлаш унумдорлигини оширган бўласиз" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Кенгайтирилган текширув" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "MySQL сервери ишлаётган хост сервер номи" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Ушбу сервернинг кенгайтирилган номи" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "Фойдаланувчига \"барча (ёзувлар)ни кўрсатиш\" тугмаси кўрсатилсинми?" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Барча қаторларни кўрсатишга рухсат бериш" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4451,35 +4458,35 @@ msgstr "" "Эсда тутинг, ушбу танловни ёқишингиз [kbd]\"config\"[/kbd] аутентификация " "усулидаги паролга таъсир этмайди" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Паролни ўзгартириш формасини кўрсатиш" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Маълумотлар базаси тузиш формасини кўрсатиш" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Очиқ жадваллар рўйхати" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Таҳрирлаш/қўйиш режимида функциялар майдонини кўрсатиш" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Фукнциялармайдонини кўрсатиш" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4487,34 +4494,34 @@ msgstr "" "[a@http://php.net/manual/function.phpinfo.php]\"phpinfo()\"[/a] функцияси " "натижасига боғ кўрсатиш" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "\"phpinfo()\" функциясига боғ кўрсатиш" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "MySQL сервери ҳақида батафсил маълумот кўрсатиш" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "phpMyAdmin томонидан генерация қилинган SQL сўровларини кўрсатиш керакми?" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Show SQL сўровларини кўрсатиш" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Маълумотлар базалари ва жадваллар статискасини (масалан, дискда эгаллаган " "жойи) кўрсатиш" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Статискани кўрсатиш" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4522,11 +4529,11 @@ msgstr "" "Агар кўрсатгич контекст ойнаси ёқилган бўлса ва маълумотлар базаларида шарҳ " "ўрнатилган бўлса, ушбу танлов база шарҳи ва ҳақиқий номи ўрнини алмаштиради" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "База номи ўрнига унинг шарҳини кўрсатиш" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4538,30 +4545,30 @@ msgstr "" "директивасида кўрсатилган усулда жадваллар бўлинади, лекин жадвал номлари " "ўзгаришсиз қолади" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Жадвал номи ўрнига унинг шарҳини кўрсатиш" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Жадвал шарҳларини кўрсатгич контекст ойнасида кўрсатиш" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Ишлатилаётган жадвалларни белгилаш ва қулфланган жадваллари мавжуд бўлган " "маълумотлар базаларини кўришга имкон бериш" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Қулфланган жадвалларни ташлаб кетишлик" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4571,28 +4578,28 @@ msgstr "" msgid "Password" msgstr "Парол" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Фойдаланувчи" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4600,65 +4607,65 @@ msgstr "" "\"База тузиш\" формасида маълумотлар базаси номини таклиф этинг ёки матн " "майдонини бўш қолдиринг" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Янги база номини таклиф этиш" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR майдонидаги устунлар сони" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR майдонидаги қаторлар сони" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Жадвал ёрлиғи" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4670,38 +4677,38 @@ msgstr "" "келаётган HTTP_X_FORWARDED_FOR (X-Forwarded-For) сарлавҳани ишончли деб " "қабул қилишини таъминлайди: [br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "IP бўйича рухсат бериш/рад этиш учун ишонарли прокси-серверлар рўйхати" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "Серверда импорт файллари сақланадиган директория" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Импорт директорияси" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" "Маълумотлар базаси ичидаги маълумотларни тўлалигича қидиришга рухсат бериш" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Базани қидиришдан фойдаланиш" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4711,19 +4718,19 @@ msgstr "" "неча сўровниўз ичига олиши мумкинлиги \"libraries/import.lib.php\" файлида " "белгиланган." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Кенгайтирилган ибора" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Охирги версияни текшириш" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4731,7 +4738,7 @@ msgstr "" msgid "Version check" msgstr "Версияни текшириш" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4739,7 +4746,7 @@ msgstr "" "Импорт ва экспорт операциялари учун [a@http://en.wikipedia.org/wiki/ZIP_" "(file_format)]ZIP[/a] қисишни ёқиш" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4767,63 +4774,63 @@ msgstr "Аутентификация тартиби" msgid "Signon authentication" msgstr "Аутентификация тартиби" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "\"LOAD DATA\" ишлатилган CSV" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS иш китоби" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX иш китоби" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document жадвали" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Рангни танлаш" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Маълумотлар базаси экспорт параметрлари" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel учун CSV" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "OpenDocument матн" @@ -4920,7 +4927,7 @@ msgstr "Муолажалар" msgid "Return type" msgstr "Қайтариладиган тип" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5387,62 +5394,62 @@ msgstr "BLOB туридаги маълумотларни кўрсатиш" msgid "Browser transformation" msgstr "Ўгириш" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Ёзув ўчирилди" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Тугатиш" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "сўров бўйича" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Ёзувларни кўрсатиш" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "жами" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "Сўров %01.4f секунд вақт олди" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "Сўров натижаларини ишлатиш" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Чоп этиш версияси (тўла)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схемани кўрсатиш" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Версиясини тузиш" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Алоқа топилмади" @@ -10924,6 +10931,11 @@ msgstr "Ном кўриниши" msgid "Rename view to" msgstr "Кўриниш номини ўзгартириш" +#, fuzzy +#~| msgid "Show logo in left frame" +#~ msgid "Show table row links on left side" +#~ msgstr "Чап рамкада логотипни кўрсатиш" + #, fuzzy #~| msgid "Delete tracking data for this table" #~ msgid "Delete the matches for the " diff --git a/po/uz@latin.po b/po/uz@latin.po index 3ccf51bec7..5a67f8f78a 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_latin \n" @@ -201,7 +201,7 @@ msgstr "Izohlar" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -217,7 +217,7 @@ msgstr "Yo‘q" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -365,7 +365,7 @@ msgid "Edit or export relational schema" msgstr "Aloqalar sxemasi" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -433,19 +433,19 @@ msgid "visual builder" msgstr "" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "Sortirovka qilish" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "O‘sish tartibida" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -559,8 +559,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:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -635,7 +635,7 @@ msgstr "Kuzatish faol." msgid "Tracking is not active." msgstr "Kuzatish faol emas." -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -665,20 +665,20 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL serveridagi andozaviy ma`lumotlar jadvali turi." #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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,15 +689,15 @@ msgid "Check tables having overhead" msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "Chop etish versiyasi" @@ -757,7 +757,7 @@ msgstr "Ma`lumotlar lug‘ati" msgid "Tracked tables" msgstr "Kuzatilgan jadvallar" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -960,7 +960,7 @@ msgstr "" "phpMyAdmin dasturi import jarayonini yakunla olmasligini bildiradi." #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1229,8 +1229,8 @@ msgstr "Jadval turlari" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -2016,13 +2016,13 @@ msgstr "" msgid "Tables" msgstr "Jadvallar" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -2138,7 +2138,7 @@ msgstr "" " %1$s serveri uchun noto‘g‘ri xost nomi ko‘rsatilgan. phpMyAdmin " "konfiguratsion faylida belgilangan sozlashlarni to‘g‘irlang." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -2204,7 +2204,7 @@ msgstr "MySQL javobi: " msgid "Failed to connect to SQL validator!" msgstr "MySQL-serverga ulanib bo‘lmadi" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "So‘rov tahlili" @@ -2216,11 +2216,11 @@ msgstr "Tahlil kerak emas" msgid "Without PHP Code" msgstr "PHP-kod olib tashlash" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "PHP-kod" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "Yangilash" @@ -2229,7 +2229,7 @@ msgstr "Yangilash" msgid "Skip Validate SQL" msgstr "SQL sintaksisi tekshiruvini olib tashlash" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "SQL to‘g‘riligini tekshirish" @@ -2331,11 +2331,11 @@ msgstr "" "ma`lumot uchun qarang \"%s\"" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2382,34 +2382,47 @@ msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi" msgid "There are no files to upload" msgstr "" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Right" +msgstr "" + +#: libraries/config.values.php:75 msgid "Open" msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 #, fuzzy #| msgid "Close" msgid "Closed" msgstr "Yopish" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "tuzilish" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #, fuzzy @@ -2417,35 +2430,35 @@ msgstr "" msgid "structure and data" msgstr "Tuzilishi va ma`lumotlari" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "To‘la qo‘yish" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Kengaytirilgan qo‘yilmalar" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "" @@ -2535,7 +2548,7 @@ msgid "Set value: %s" msgstr "Quyidagi qiymatni o‘rnatish: \"%s\"" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "Asl qiymatlarni tiklash" @@ -3064,10 +3077,10 @@ msgstr "Ko‘rib chiqish usulini sozlash" msgid "Customize default options" msgstr "Eksport afzalliklarini sozlash" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3695,7 +3708,7 @@ msgid "Maximum displayed SQL length" msgstr "SQL so‘rovining maksimal uzunligi" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "" @@ -3758,44 +3771,38 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "" #: libraries/config/messages.inc.php:318 -#, fuzzy -#| msgid "Show logo in left frame" -msgid "Show table row links on left side" -msgstr "Chap ramkada logotipni ko‘rsatish" - -#: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" +msgid "Where to show the table row links" msgstr "" -#: libraries/config/messages.inc.php:320 +#: libraries/config/messages.inc.php:319 msgid "Use natural order for sorting table and database names" msgstr "" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" msgstr "Jadval sortirovkasini o‘zgartirish" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "Faqat piktogramma, faqat matn yoki har ikkisini ishlatish" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "Piktogrammali navigatsiya menyusi" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "" "HTTP orqali ma`lumot uzatishda yuqori tezlikka erishish uchun GZip " "buferizatsiyadan foydalaning" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip buferizatsiya" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 #, fuzzy #| msgid "" #| "[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, " @@ -3807,46 +3814,46 @@ msgstr "" "[kbd]SMART[/kbd] – ya`ni, TIME, DATE, DATETIME va TIMESTAMP turidagi " "maydonlar uchun kamayish tartibida, aks holda ko‘payish tartibida" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "Asl tartiblash qoidasi" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "MySQL ma`lumotlar bazalarida doimiy ulanishlardan foydalanish" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "Doimiy ulanishlar" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "Jadval operatsiyalarini piktogrammalar yordamida amalga oshirish" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 #, fuzzy #| msgid "Disallow BLOB and BINARY fields from editing" msgid "Disallow BLOB and BINARY columns from editing" msgstr "BLOB va BINARY maydonlarini tahirlashni man etish" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 #, fuzzy #| msgid "Protect binary fields" msgid "Protect binary columns" msgstr "Binar (ikkilik) maydonlarni himoyalash" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 #, fuzzy #| msgid "" #| "Enable if you want DB-based query history (requires pmadb). If disabled, " @@ -3860,132 +3867,132 @@ msgstr "" "tanlovni yoqing (pmadb talab etiladi). Ushbu tanlov o‘chirilgan bo‘lsa, oyna " "yopilgan zahoti so‘rovlar tarixi yo‘qoladi." -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "Doimiy so‘rovlar tarixi" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "Jurnalda saqlanadigan so‘rovlar soni" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "So‘rovlar tarixi uzunligi" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "Yangi so‘rovlar oynasi ochilganda ko‘rsatiladigan yorliq" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "So‘rovlar oynasining yorlig‘i" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 #, fuzzy #| msgid "Query window" msgid "Query window height" msgstr "So‘rovlar oynasi" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" msgid "Query window width (in pixels)" msgstr "So‘rovlar oynasi" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" msgid "Query window width" msgstr "So‘rovlar oynasi" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "" "Kodirovkalarni bir-biriga o‘tkazishda foydalaniladigan funksiyalarni tanlang" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "Kodirovkalash funksiyasi" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "Jadval nomini o‘zgartirish" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" msgstr "Oqimli tiklash" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "Serverdagi eksport fayllar saqlanadigan direktoriya" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "Saqlash direktoriyasi" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "Agar ishlatilmasa bo‘sh qoldiring" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 #, fuzzy #| msgid "Host authentication order" msgid "Host authorization order" msgstr "Autentifikatsiya tartibi" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "Asl qoidalarni ishlatish uchun bo‘sh qoldiring" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 #, fuzzy #| msgid "Host authentication rules" msgid "Host authorization rules" msgstr "Autentifikatsiya qoidalari" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "Parolsiz qirishga ruxsat bеrish" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "\"root\"ga kirishga ruxsat berish" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "" "HTTP Avtorizatsiya vaqtida ko‘rsatiladigan Oddiy HTTP Avtorizatsiya Bo‘limi " "nomi" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "HTTP Bo‘limi" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3995,19 +4002,19 @@ msgstr "" "konfiguratsion fayl yo‘li (hujjatlar katalogiga joylashtirilmagan; tavsiya " "etiladi: /etc/swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "\"SweKey\" konfiguratsiya fayli" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "Foydalaniladigan autentifikatsiya usuli" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "Autentifikatsiya usuli" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -4015,11 +4022,11 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/bookmark]Xatcho‘p[/a] ishlatmaslik uchun " "bo‘sh qoldiring, asli: [kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "Xatcho‘plar jadvali" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" @@ -4027,31 +4034,31 @@ msgstr "" "Ustun izohlari/\"mime\"-turlari haqidagi ma`lumotlarni ishlatmaslik uchun " "bo‘sh qoldiring, asli: [kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "Ustun ma`lumotlari jadvali" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "MySQL serveiga ulanishni qisish" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "Ulanishni qisish" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "Serverga ulanish turi, agar bilmasangiz, \"tcp\" deb qoldiring" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "Ulanish turi" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "Nazorat foydalanuvchisi paroli" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -4060,19 +4067,19 @@ msgstr "" "batafsil ma`lumot [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/a]" "da mavjud" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "Nazorat foydalanuvchisi" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "Ma`lumotlar bazalari ro‘yxati ko‘rsatilganda jadvallarni sanash" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "Jadvallarni sanash" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" @@ -4080,11 +4087,11 @@ msgstr "" "Dizayner ishlatmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]" "pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "Dizayner jadvali" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -4093,30 +4100,30 @@ msgstr "" "aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql." "com/19588]\"MySQL Bugs\"[/a]larga qarang" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "INFORMATION_SCHEMA ishlatishni o‘chirish" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "" "Qaysi PHP kengaytmasidan foydalanmoqchisiz; iloji bo‘lsa, \"mysqli\" " "kengaytmasidan foydalaning" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "Foydalaniladigan PHP kengaytmasi" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "" "Muntazam iboralar(PCRE)ga to‘g‘ri keladigan ma`lumotlar bazalarini yashirish" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "Bazalarni yashirish" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" @@ -4124,31 +4131,31 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "SQL so‘rovlari tarixi jadvali" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "MySQL sеrvеri ishlayotgan xost nomi" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "Sеrvеr xost nomi" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "Chiqish URL" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "Parolsiz ulanishga harakat qilish" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "Parolsiz ulanish" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 #, fuzzy #| msgid "" #| "You can use MySQL wildcard characters (% and _), escape them if you want " @@ -4164,31 +4171,31 @@ msgstr "" "oldiga teskari egri chiziq (\\) qo‘yishingiz kerak, masalan \\\"my\\_db\\" "\" (lekin \"my_db\" emas)" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "Faqat ro‘yxatdagi bazalarni ko‘rsatish" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "" "Agar \"config\" autentifikatsiya usulidan foydalanmasangiz, bo‘sh qoldiring" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "\"config\" autentifikatsiya usuli paroli" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 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]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF-sxema: sahifalar jadvali" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -4199,22 +4206,22 @@ msgstr "" "ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: " "[kbd]\"phpmyadmin\"[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" msgstr "ma`lumotlar bazasi nomi" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "" "MySQL serveri tinglaydigan port, asl qiymatni qoldirish uchun bo‘sh qoldiring" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "Server porti" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4226,13 +4233,13 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Recall user name" msgid "Recently used table" msgstr "Foydalanuvchi nomini chaqirib olish" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -4240,19 +4247,19 @@ msgstr "" "[a@http://wiki.phpmyadmin.net/pma/relation]Aloqa bog‘lanishlari[/a]ni " "ishlatmaslik uchun, bo‘sh qoldiring, asl qiymati: [kbd]\"pma_relation\"[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "Aloqalar jadvali" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "Mavjud jadvallarni ko‘rsatish uchun ishlatiladigan SQL buyrug‘i" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "SHOW DATABASES buyrug‘i" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -4260,44 +4267,44 @@ msgstr "" "Namuna uchun [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]" "autentifikatsiya usullari[/a]ga qarang" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Kirish sessiyasi nomi" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "Kirish URL" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "MySQL serveri tinglaydigan soket, asl qiymati uchun bo‘sh qoldiring" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "Server soketi" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "" "SSL (Secure Sockets Layer - himoyalangan soketlar protokoli) ulanishdan " "foydalanish" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "SSL ulanishdan foydalanish" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 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]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF-sxema: jadval koordinatalari" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 #, fuzzy #| msgid "" #| "Table to describe the display fields, leave blank for no support; " @@ -4309,13 +4316,13 @@ msgstr "" "Ko‘rsatiladigan maydonlar sharhlari saqlanadigan jadval, ishlatmaslik uchun " "bo‘sh qoldiring, asl qiymati: [kbd]\"pma_table_info\"[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Display fields table" msgid "Display columns table" msgstr "Maydonlar jadvalini ko‘rsatish" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4327,53 +4334,53 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "Jadvalni defragmentatsiyalash" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." msgstr "" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." msgstr "" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." msgstr "" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 #, fuzzy #| msgid "Statements" msgid "Statements to track" msgstr "Tavsif" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4385,25 +4392,25 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 #, fuzzy #| msgid "SQL query history table" msgid "SQL query tracking table" msgstr "SQL so‘rovlari tarixi jadvali" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" msgstr "Avtomatik tiklash rejimi" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 #, fuzzy #| msgid "" #| "Leave blank for no SQL query history support, suggested: [kbd]pma_history" @@ -4415,15 +4422,15 @@ msgstr "" "Agar SQL so‘rovlar tarixidan foydalanmoqchi bo‘lmasangiz, bo‘sh qoldiring, " "asl qiymati: [kbd]\"pma_history\"[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "\"config\" autentifikatsiya usuli foydalanuvchisi" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" @@ -4433,21 +4440,21 @@ msgstr "" "tekshiruvlarning oldini olgan bo‘lasiz va ishlash unumdorligini oshirgan " "bo‘lasiz" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "Kengaytirilgan tekshiruv" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "MySQL serveri ishlayotgan xost server nomi" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "Ushbu serverning kengaytirilgan nomi" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 #, fuzzy #| msgid "" #| "Whether a user should be displayed a "show all (records)" button" @@ -4455,11 +4462,11 @@ msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "" "Foydalanuvchiga \"barcha (yozuvlar)ni ko‘rsatish\" tugmasi ko‘rsatilsinmi?" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "Barcha qatorlarni ko‘rsatishga ruxsat berish" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4468,35 +4475,35 @@ msgstr "" "Esda tuting, ushbu tanlovni yoqishingiz [kbd]\"config\"[/kbd] " "autentifikatsiya usulidagi parolga ta`sir etmaydi" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "Parolni o‘zgartirish formasini ko‘rsatish" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "Ma`lumotlar bazasi tuzish formasini ko‘rsatish" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" msgstr "Ochiq jadvallar ro‘yxati" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "Tahrirlash/qo‘yish rejimida funksiyalar maydonini ko‘rsatish" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "Fuknsiyalarmaydonini ko‘rsatish" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" @@ -4504,35 +4511,35 @@ msgstr "" "[a@http://php.net/manual/function.phpinfo.php]\"phpinfo()\"[/a] funksiyasi " "natijasiga bog‘ ko‘rsatish" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "\"phpinfo()\" funksiyasiga bog‘ ko‘rsatish" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "MySQL serveri haqida batafsil ma`lumot ko‘rsatish" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "" "phpMyAdmin tomonidan generatsiya qilingan SQL so‘rovlarini ko‘rsatish " "kerakmi?" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "Show SQL so‘rovlarini ko‘rsatish" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "" "Ma`lumotlar bazalari va jadvallar statiskasini (masalan, diskda egallagan " "joyi) ko‘rsatish" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "Statiskani ko‘rsatish" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" @@ -4541,11 +4548,11 @@ msgstr "" "sharh o‘rnatilgan bo‘lsa, ushbu tanlov baza sharhi va haqiqiy nomi o‘rnini " "almashtiradi" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "Baza nomi o‘rniga uning sharhini ko‘rsatish" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4557,30 +4564,30 @@ msgstr "" "direktivasida ko‘rsatilgan usulda jadvallar bo‘linadi, lekin jadval nomlari " "o‘zgarishsiz qoladi" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "Jadval nomi o‘rniga uning sharhini ko‘rsatish" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "Jadval sharhlarini ko‘rsatgich kontekst oynasida ko‘rsatish" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "" "Ishlatilayotgan jadvallarni belgilash va qulflangan jadvallari mavjud " "bo‘lgan ma`lumotlar bazalarini ko‘rishga imkon berish" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "Qulflangan jadvallarni tashlab ketishlik" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4590,28 +4597,28 @@ msgstr "" msgid "Password" msgstr "Parol" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "Foydalanuvchi" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" @@ -4619,65 +4626,65 @@ msgstr "" "\"Baza tuzish\" formasida ma`lumotlar bazasi nomini taklif eting yoki matn " "maydonini bo‘sh qoldiring" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "Yangi baza nomini taklif etish" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "CHAR textarea columns" msgid "Textarea columns" msgstr "CHAR maydonidagi ustunlar soni" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 #, fuzzy #| msgid "CHAR textarea rows" msgid "Textarea rows" msgstr "CHAR maydonidagi qatorlar soni" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 #, fuzzy #| msgid "Default table tab" msgid "Default title" msgstr "Jadval yorlig‘i" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4689,40 +4696,40 @@ msgstr "" "kelayotgan HTTP_X_FORWARDED_FOR (X-Forwarded-For) sarlavhani ishonchli deb " "qabul qilishini ta`minlaydi: [br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "" "IP bo‘yicha ruxsat berish/rad etish uchun ishonarli proksi-serverlar ro‘yxati" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "Serverda import fayllari saqlanadigan direktoriya" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "Import direktoriyasi" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "" "Ma`lumotlar bazasi ichidagi ma`lumotlarni to‘laligicha qidirishga ruxsat " "berish" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "Bazani qidirishdan foydalanish" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4732,19 +4739,19 @@ msgstr "" "necha so‘rovnio‘z ichiga olishi mumkinligi \"libraries/import.lib.php\" " "faylida belgilangan." -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "Kengaytirilgan ibora" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "Oxirgi versiyani tekshirish" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4752,7 +4759,7 @@ msgstr "" msgid "Version check" msgstr "Versiyani tekshirish" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4760,7 +4767,7 @@ msgstr "" "Import va eksport operatsiyalari uchun [a@http://en.wikipedia.org/wiki/ZIP_" "(file_format)]ZIP[/a] qisishni yoqish" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4788,63 +4795,63 @@ msgstr "Autentifikatsiya tartibi" msgid "Signon authentication" msgstr "Autentifikatsiya tartibi" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "\"LOAD DATA\" ishlatilgan CSV" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS ish kitobi" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX ish kitobi" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "Open Document jadvali" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 #, fuzzy #| msgid "Custom color" msgid "Custom" msgstr "Rangni tanlash" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "Ma`lumotlar bazasi eksport parametrlari" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel uchun CSV" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "OpenDocument matn" @@ -4941,7 +4948,7 @@ msgstr "Muolajalar" msgid "Return type" msgstr "Qaytariladigan tip" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5410,62 +5417,62 @@ msgstr "BLOB turidagi ma`lumotlarni ko‘rsatish" msgid "Browser transformation" msgstr "O‘girish" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "Yozuv o‘chirildi" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "Tugatish" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "so‘rov bo‘yicha" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "Yozuvlarni ko‘rsatish" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "jami" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "So‘rov %01.4f sekund vaqt oldi" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "So‘rov natijalarini ishlatish" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "Chop etish versiyasi (to‘la)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-sxemani ko‘rsatish" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Vеrsiyasini tuzish" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "Aloqa topilmadi" @@ -10990,6 +10997,11 @@ msgstr "Nom ko‘rinishi" msgid "Rename view to" msgstr "Ko‘rinish nomini o‘zgartirish" +#, fuzzy +#~| msgid "Show logo in left frame" +#~ msgid "Show table row links on left side" +#~ msgstr "Chap ramkada logotipni ko‘rsatish" + #~ msgid "Delete the matches for the " #~ msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" diff --git a/po/zh_CN.po b/po/zh_CN.po index f3196296f4..bce3e9b540 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-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-05-30 05:47+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" @@ -196,7 +196,7 @@ msgstr "注释" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -212,7 +212,7 @@ msgstr "否" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -349,7 +349,7 @@ msgid "Edit or export relational schema" msgstr "编辑或导出关系大纲" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 @@ -415,19 +415,19 @@ msgid "visual builder" msgstr "可视化查询生成器" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "排序" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "递增" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -534,8 +534,8 @@ msgstr "浏览" msgid "Delete the matches for the %s table?" msgstr "删除 %s 表中所有匹配的记录?" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -603,7 +603,7 @@ msgstr "追踪已启用。" msgid "Tracking is not active." msgstr "追踪已禁用。" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -631,20 +631,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:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: 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" @@ -655,15 +655,15 @@ msgid "Check tables having overhead" msgstr "仅选择多余" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" msgstr "打印预览" @@ -717,7 +717,7 @@ msgstr "数据字典" msgid "Tracked tables" msgstr "已追踪的表" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -906,7 +906,7 @@ msgstr "" "将无法完成导入操作。" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -1121,8 +1121,8 @@ msgstr "快速编辑" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1822,13 +1822,13 @@ msgstr "已共享" msgid "Tables" msgstr "数据表" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1926,7 +1926,7 @@ msgstr "无效的服务器索引: %s" msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "无效的主机名 %1$s,请检查配置文件。" -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -1988,7 +1988,7 @@ msgstr "MySQL 返回:" msgid "Failed to connect to SQL validator!" msgstr "连接到 SQL 校验器失败!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "解释 SQL" @@ -2000,11 +2000,11 @@ msgstr "略过解释 SQL" msgid "Without PHP Code" msgstr "无 PHP 代码" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "创建 PHP 代码" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" msgstr "刷新" @@ -2013,7 +2013,7 @@ msgstr "刷新" msgid "Skip Validate SQL" msgstr "略过校验 SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" msgstr "校验 SQL" @@ -2111,11 +2111,11 @@ msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2161,62 +2161,77 @@ msgstr "用于上传的文件夹出错,无法使用" msgid "There are no files to upload" msgstr "没有可上传的文件" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "全部" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" + +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "高" + +#: libraries/config.values.php:75 msgid "Open" msgstr "开启" -#: libraries/config.values.php:74 +#: libraries/config.values.php:75 msgid "Closed" msgstr "关闭" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "结构" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "数据" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" msgstr "结构和数据" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "快速 - 仅显示必须的设置项" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Custom - display all possible options to configure" msgstr "自定义 - 显示所有可用的设置项" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Custom - like above, but without the quick/custom choice" msgstr "自定义 - 不显示 快速/自定义 选择" -#: libraries/config.values.php:119 +#: libraries/config.values.php:120 msgid "complete inserts" msgstr "完整插入" -#: libraries/config.values.php:120 +#: libraries/config.values.php:121 msgid "extended inserts" msgstr "扩展插入" -#: libraries/config.values.php:121 +#: libraries/config.values.php:122 msgid "both of the above" msgstr "以上兼有" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "以上均不" @@ -2301,7 +2316,7 @@ msgid "Set value: %s" msgstr "设置值: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "还原默认值" @@ -2775,10 +2790,10 @@ msgstr "自定义浏览模式" msgid "Customize default options" msgstr "自定义默认选项" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" msgstr "CSV" @@ -3349,7 +3364,7 @@ msgid "Maximum displayed SQL length" msgstr "显示 SQL 语句的最大长度" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" msgstr "用户不能设置更大的值" @@ -3407,38 +3422,34 @@ msgid "These are Edit, Inline edit, Copy and Delete links" msgstr "它们是编辑、快速编辑、复制和删除链接" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" -msgstr "在数据左侧显示操作链接" +msgid "Where to show the table row links" +msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "在数据右侧显示操作链接" - -#: libraries/config/messages.inc.php:320 msgid "Use natural order for sorting table and database names" msgstr "为数据库和数据表名使用自然排序" -#: libraries/config/messages.inc.php:321 +#: libraries/config/messages.inc.php:320 msgid "Natural order" msgstr "自然排序" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" msgstr "仅使用图标、文本或都使用" -#: libraries/config/messages.inc.php:323 +#: libraries/config/messages.inc.php:322 msgid "Iconic navigation bar" msgstr "导航条显示" -#: libraries/config/messages.inc.php:324 +#: libraries/config/messages.inc.php:323 msgid "use GZip output buffering for increased speed in HTTP transfers" msgstr "使用 GZip 输出缓冲以加快 HTTP 传输速度" -#: libraries/config/messages.inc.php:325 +#: libraries/config/messages.inc.php:324 msgid "GZip output buffering" msgstr "GZip 输出缓冲" -#: libraries/config/messages.inc.php:326 +#: libraries/config/messages.inc.php:325 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" @@ -3446,42 +3457,42 @@ msgstr "" "[kbd]SMART[/kbd] - 如:对 TIME、DATE、DATETIME 和 TIMESTAMP 类型的字段递减排" "序,其他字段递增" -#: libraries/config/messages.inc.php:327 +#: libraries/config/messages.inc.php:326 msgid "Default sorting order" msgstr "默认排序" -#: libraries/config/messages.inc.php:328 +#: libraries/config/messages.inc.php:327 msgid "Use persistent connections to MySQL databases" msgstr "在连接到 MySQL 数据库时使用持久连接" -#: libraries/config/messages.inc.php:329 +#: libraries/config/messages.inc.php:328 msgid "Persistent connections" msgstr "持久连接" -#: libraries/config/messages.inc.php:330 +#: libraries/config/messages.inc.php:329 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" msgstr "禁止在缺少 phpMyAdmin 高级功能所需数据表时在数据库结构页中显示默认警告" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" msgstr "丢失 phpMyAdmin 高级功能数据表" -#: libraries/config/messages.inc.php:333 +#: libraries/config/messages.inc.php:332 msgid "Iconic table operations" msgstr "数据表操作显示" -#: libraries/config/messages.inc.php:334 +#: libraries/config/messages.inc.php:333 msgid "Disallow BLOB and BINARY columns from editing" msgstr "禁止编辑 BLOB 和 BINARY 类型字段" -#: libraries/config/messages.inc.php:335 +#: libraries/config/messages.inc.php:334 msgid "Protect binary columns" msgstr "保护二进制字段" -#: libraries/config/messages.inc.php:336 +#: libraries/config/messages.inc.php:335 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " @@ -3490,117 +3501,117 @@ msgstr "" "允许使用基于数据库的查询历史 (需要 phpMyAdmin 高级功能)。如果禁用,将使用 " "JS 程序来显示查询历史 (关闭窗口即丢失)。" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" msgstr "持久查询历史" -#: libraries/config/messages.inc.php:339 +#: libraries/config/messages.inc.php:338 msgid "How many queries are kept in history" msgstr "记录查询历史的数量" -#: libraries/config/messages.inc.php:340 +#: libraries/config/messages.inc.php:339 msgid "Query history length" msgstr "查询历史个数" -#: libraries/config/messages.inc.php:341 +#: libraries/config/messages.inc.php:340 msgid "Tab displayed when opening a new query window" msgstr "打开一个新查询窗口时默认显示的页面" -#: libraries/config/messages.inc.php:342 +#: libraries/config/messages.inc.php:341 msgid "Default query window tab" msgstr "默认查询窗口标签" -#: libraries/config/messages.inc.php:343 +#: libraries/config/messages.inc.php:342 msgid "Query window height (in pixels)" msgstr "查询窗口高度 (单位:像素)" -#: libraries/config/messages.inc.php:344 +#: libraries/config/messages.inc.php:343 msgid "Query window height" msgstr "查询窗口高度" -#: libraries/config/messages.inc.php:345 +#: libraries/config/messages.inc.php:344 msgid "Query window width (in pixels)" msgstr "查询窗口宽度 (单位:像素)" -#: libraries/config/messages.inc.php:346 +#: libraries/config/messages.inc.php:345 msgid "Query window width" msgstr "查询窗口宽度" -#: libraries/config/messages.inc.php:347 +#: libraries/config/messages.inc.php:346 msgid "Select which functions will be used for character set conversion" msgstr "选择进行字符集转换时使用的函数" -#: libraries/config/messages.inc.php:348 +#: libraries/config/messages.inc.php:347 msgid "Recoding engine" msgstr "记录引擎" -#: libraries/config/messages.inc.php:349 +#: libraries/config/messages.inc.php:348 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "将表改名为" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" msgstr "每 X 单元格重复表头,要禁止此功能请设为 [kbd]0[/kbd]" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 msgid "Repeat headers" msgstr "重复表头" -#: libraries/config/messages.inc.php:353 +#: libraries/config/messages.inc.php:352 msgid "Show help button instead of Documentation text" msgstr "显示帮助按钮代替文档文本" -#: libraries/config/messages.inc.php:354 +#: libraries/config/messages.inc.php:353 msgid "Show help button" msgstr "显示帮助按钮" -#: libraries/config/messages.inc.php:356 +#: libraries/config/messages.inc.php:355 msgid "Directory where exports can be saved on server" msgstr "服务器上用来保存导出文件的文件夹" -#: libraries/config/messages.inc.php:357 +#: libraries/config/messages.inc.php:356 msgid "Save directory" msgstr "保存文件夹" -#: libraries/config/messages.inc.php:358 +#: libraries/config/messages.inc.php:357 msgid "Leave blank if not used" msgstr "不使用请留空" -#: libraries/config/messages.inc.php:359 +#: libraries/config/messages.inc.php:358 msgid "Host authorization order" msgstr "主机认证模式" -#: libraries/config/messages.inc.php:360 +#: libraries/config/messages.inc.php:359 msgid "Leave blank for defaults" msgstr "默认请留空" -#: libraries/config/messages.inc.php:361 +#: libraries/config/messages.inc.php:360 msgid "Host authorization rules" msgstr "主机认证规则" -#: libraries/config/messages.inc.php:362 +#: libraries/config/messages.inc.php:361 msgid "Allow logins without a password" msgstr "允许空密码登录" -#: libraries/config/messages.inc.php:363 +#: libraries/config/messages.inc.php:362 msgid "Allow root login" msgstr "允许 root 用户登录" -#: libraries/config/messages.inc.php:364 +#: libraries/config/messages.inc.php:363 msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" msgstr "使用 HTTP 基本认证时显示给用户的提示信息" -#: libraries/config/messages.inc.php:365 +#: libraries/config/messages.inc.php:364 msgid "HTTP Realm" msgstr "HTTP 提示信息" -#: libraries/config/messages.inc.php:366 +#: libraries/config/messages.inc.php:365 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" @@ -3609,19 +3620,19 @@ msgstr "" "[a@http://swekey.com]SweKey 硬件认证 (外链,英文)[/a]的配置文件路径 (请勿置于" "你的文档根文件夹,推荐使用:/etc/swekey.conf)" -#: libraries/config/messages.inc.php:367 +#: libraries/config/messages.inc.php:366 msgid "SweKey config file" msgstr "SweKey 配置文件" -#: libraries/config/messages.inc.php:368 +#: libraries/config/messages.inc.php:367 msgid "Authentication method to use" msgstr "要使用的认证方式" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" msgstr "认证方式" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" @@ -3629,41 +3640,41 @@ msgstr "" "不使用[a@http://wiki.phpmyadmin.net/pma/bookmark]书签 (外链,英文)[/a]功能请" "留空,默认:[kbd]pma_bookmark[/kbd]" -#: libraries/config/messages.inc.php:371 +#: libraries/config/messages.inc.php:370 msgid "Bookmark table" msgstr "书签表" -#: libraries/config/messages.inc.php:372 +#: libraries/config/messages.inc.php:371 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" msgstr "留空则不使用列信息和MIME类型。默认值:[kbd]pma_column_info[/kbd]" -#: libraries/config/messages.inc.php:373 +#: libraries/config/messages.inc.php:372 msgid "Column information table" msgstr "列信息表" -#: libraries/config/messages.inc.php:374 +#: libraries/config/messages.inc.php:373 msgid "Compress connection to MySQL server" msgstr "压缩连接到 MySQL 服务器" -#: libraries/config/messages.inc.php:375 +#: libraries/config/messages.inc.php:374 msgid "Compress connection" msgstr "压缩连接" -#: libraries/config/messages.inc.php:376 +#: libraries/config/messages.inc.php:375 msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" msgstr "怎样连接到服务器,如果不确定,请选择 tcp" -#: libraries/config/messages.inc.php:377 +#: libraries/config/messages.inc.php:376 msgid "Connection type" msgstr "连接方式" -#: libraries/config/messages.inc.php:378 +#: libraries/config/messages.inc.php:377 msgid "Control user password" msgstr "控制用户的密码" -#: libraries/config/messages.inc.php:379 +#: libraries/config/messages.inc.php:378 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" @@ -3671,29 +3682,29 @@ msgstr "" "一个特殊的被限制权限的 MySQL 用户,参见 [a@http://wiki.phpmyadmin.net/pma/" "controluser]wiki (外链,英文)[/a]" -#: libraries/config/messages.inc.php:380 +#: libraries/config/messages.inc.php:379 msgid "Control user" msgstr "控制用户" -#: libraries/config/messages.inc.php:381 +#: libraries/config/messages.inc.php:380 msgid "Count tables when showing database list" msgstr "显示数据库列表时计算数据表的数量" -#: libraries/config/messages.inc.php:382 +#: libraries/config/messages.inc.php:381 msgid "Count tables" msgstr "统计数据表" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" msgstr "不使用设计功能请留空,默认:[kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 msgid "Designer table" msgstr "设计表" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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]" @@ -3702,57 +3713,57 @@ msgstr "" "统 (外链,英文)[/a] 和 [a@http://bugs.mysql.com/19588]MySQL 缺陷 (Bugs) (外" "链,英文)[/a]" -#: libraries/config/messages.inc.php:386 +#: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" msgstr "禁止使用 INFORMATION_SCHEMA" -#: libraries/config/messages.inc.php:387 +#: libraries/config/messages.inc.php:386 msgid "What PHP extension to use; you should use mysqli if supported" msgstr "要使用的 PHP 扩展,如果支持,推荐使用 mysqli。" -#: libraries/config/messages.inc.php:388 +#: libraries/config/messages.inc.php:387 msgid "PHP extension to use" msgstr "要使用的 PHP 扩展" -#: libraries/config/messages.inc.php:389 +#: libraries/config/messages.inc.php:388 msgid "Hide databases matching regular expression (PCRE)" msgstr "该正则表达式 (PCRE,Perl 兼容) 所匹配的数据库将被隐藏" -#: libraries/config/messages.inc.php:390 +#: libraries/config/messages.inc.php:389 msgid "Hide databases" msgstr "隐藏数据库" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" msgstr "不使用 SQL 查询历史功能请留空,默认:[kbd]pma_history[/kbd]" -#: libraries/config/messages.inc.php:392 +#: libraries/config/messages.inc.php:391 msgid "SQL query history table" msgstr "SQL 查询历史表" -#: libraries/config/messages.inc.php:393 +#: libraries/config/messages.inc.php:392 msgid "Hostname where MySQL server is running" msgstr "MySQL 服务器的主机名" -#: libraries/config/messages.inc.php:394 +#: libraries/config/messages.inc.php:393 msgid "Server hostname" msgstr "服务器主机名" -#: libraries/config/messages.inc.php:395 +#: libraries/config/messages.inc.php:394 msgid "Logout URL" msgstr "退出地址" -#: libraries/config/messages.inc.php:396 +#: libraries/config/messages.inc.php:395 msgid "Try to connect without password" msgstr "尝试用空密码连接" -#: libraries/config/messages.inc.php:397 +#: libraries/config/messages.inc.php:396 msgid "Connect without password" msgstr "用空密码连接" -#: libraries/config/messages.inc.php:398 +#: libraries/config/messages.inc.php:397 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3764,28 +3775,28 @@ msgstr "" "\\_db'[/kbd] 而不是 [kbd]'my_db'[/kbd]。通过该选项你可以对数据库列表排序,只" "需按顺序输入它们的名称并加上 [kbd]*[/kbd],剩下的数据库将按字母顺序排在最后。" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" msgstr "仅显示列出的数据库" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" msgstr "如果不使用 config 认证方式,请留空" -#: libraries/config/messages.inc.php:401 +#: libraries/config/messages.inc.php:400 msgid "Password for config auth" msgstr "config 认证方式的密码" -#: libraries/config/messages.inc.php:402 +#: libraries/config/messages.inc.php:401 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "不使用 PDF 大纲功能请留空,默认:[kbd]pma_pdf_pages[/kbd]" -#: libraries/config/messages.inc.php:403 +#: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" msgstr "PDF 大纲: 数据表页" -#: libraries/config/messages.inc.php:404 +#: libraries/config/messages.inc.php:403 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " @@ -3794,19 +3805,19 @@ msgstr "" "关系、书签、PDF 功能所用的数据库。参见 [a@http://wiki.phpmyadmin.net/pma/" "pmadb]pmadb (外链,英文)[/a]。不使用请留空。默认: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 msgid "Database name" msgstr "数据库名" -#: libraries/config/messages.inc.php:406 +#: libraries/config/messages.inc.php:405 msgid "Port on which MySQL server is listening, leave empty for default" msgstr "MySQL 服务器监听的端口,留空为默认" -#: libraries/config/messages.inc.php:407 +#: libraries/config/messages.inc.php:406 msgid "Server port" msgstr "服务器端口" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -3816,13 +3827,13 @@ msgid "" "suggested: [kbd]pma_recent[/kbd]" msgstr "不在数据库中保存用户偏好请留空,默认:[kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Currently opened table" msgid "Recently used table" msgstr "当前打开的数据表" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" @@ -3830,19 +3841,19 @@ msgstr "" "不使用[a@http://wiki.phpmyadmin.net/pma/relation]关系链接 (外链,英文)[/a]功" "能请留空,默认:[kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 msgid "Relation table" msgstr "关系表" -#: libraries/config/messages.inc.php:412 +#: libraries/config/messages.inc.php:411 msgid "SQL command to fetch available databases" msgstr "取得所有可用数据库的 SQL 语句" -#: libraries/config/messages.inc.php:413 +#: libraries/config/messages.inc.php:412 msgid "SHOW DATABASES command" msgstr "显示数据库(SHOW DATABASES)命令" -#: libraries/config/messages.inc.php:414 +#: libraries/config/messages.inc.php:413 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" @@ -3850,50 +3861,50 @@ msgstr "" "参见[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]认证方式 (外链,英文)" "[/a]中的例子" -#: libraries/config/messages.inc.php:415 +#: libraries/config/messages.inc.php:414 msgid "Signon session name" msgstr "Signon 会话名" -#: libraries/config/messages.inc.php:416 +#: libraries/config/messages.inc.php:415 msgid "Signon URL" msgstr "登录地址" -#: libraries/config/messages.inc.php:417 +#: libraries/config/messages.inc.php:416 msgid "Socket on which MySQL server is listening, leave empty for default" msgstr "MySQL 服务器监听的套接字,留空为默认" -#: libraries/config/messages.inc.php:418 +#: libraries/config/messages.inc.php:417 msgid "Server socket" msgstr "服务器套接字 (socket)" -#: libraries/config/messages.inc.php:419 +#: libraries/config/messages.inc.php:418 msgid "Enable SSL for connection to MySQL server" msgstr "使用 SSL 连接到 MySQL 服务器" -#: libraries/config/messages.inc.php:420 +#: libraries/config/messages.inc.php:419 msgid "Use SSL" msgstr "使用 SSL" -#: libraries/config/messages.inc.php:421 +#: libraries/config/messages.inc.php:420 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "不使用 PDF 大纲功能请留空,默认:[kbd]pma_table_coords[/kbd]" -#: libraries/config/messages.inc.php:422 +#: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" msgstr "PDF 大纲: 数据表并发" -#: libraries/config/messages.inc.php:423 +#: libraries/config/messages.inc.php:422 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" msgstr "描述显示字段的表,不使用请留空,默认:[kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 msgid "Display columns table" msgstr "显示字段表" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 #, fuzzy #| msgid "" #| "Leave blank for no user preferences storage in database, suggested: [kbd]" @@ -3903,113 +3914,113 @@ msgid "" "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "不在数据库中保存用户偏好请留空,默认:[kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "User preferences storage table" msgid "UI preferences table" msgstr "用户偏好表" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 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 命令。" -#: libraries/config/messages.inc.php:428 +#: libraries/config/messages.inc.php:427 msgid "Add DROP DATABASE" msgstr "添加 DROP DATABASE" -#: libraries/config/messages.inc.php:429 +#: libraries/config/messages.inc.php:428 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 命令。" -#: libraries/config/messages.inc.php:430 +#: libraries/config/messages.inc.php:429 msgid "Add DROP TABLE" msgstr "添加 DROP TABLE" -#: libraries/config/messages.inc.php:431 +#: libraries/config/messages.inc.php:430 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 命令。" -#: libraries/config/messages.inc.php:432 +#: libraries/config/messages.inc.php:431 msgid "Add DROP VIEW" msgstr "添加 DROP VIEW" -#: libraries/config/messages.inc.php:433 +#: libraries/config/messages.inc.php:432 msgid "Defines the list of statements the auto-creation uses for new versions." msgstr "定义自动创建新版的命令列表。" -#: libraries/config/messages.inc.php:434 +#: libraries/config/messages.inc.php:433 msgid "Statements to track" msgstr "要追踪的命令" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" msgstr "不使用 SQL 查询追踪功能请留空,默认:[kbd]pma_tracking[/kbd]" -#: libraries/config/messages.inc.php:436 +#: libraries/config/messages.inc.php:435 msgid "SQL query tracking table" msgstr "SQL 查询追踪表" -#: libraries/config/messages.inc.php:437 +#: libraries/config/messages.inc.php:436 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." msgstr "设置追踪系统是否自动为数据表和视图创建版本。" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 msgid "Automatically create versions" msgstr "自动创建版本" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" msgstr "不在数据库中保存用户偏好请留空,默认:[kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" msgstr "用户偏好表" -#: libraries/config/messages.inc.php:442 +#: libraries/config/messages.inc.php:441 msgid "User for config auth" msgstr "config 认证方式的用户名" -#: libraries/config/messages.inc.php:443 +#: libraries/config/messages.inc.php:442 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" msgstr "如果你确定 pma_* 数据表都是最新的,可以禁用此项。此功能提供兼容性检查" -#: libraries/config/messages.inc.php:444 +#: libraries/config/messages.inc.php:443 msgid "Verbose check" msgstr "详细检查" -#: libraries/config/messages.inc.php:445 +#: libraries/config/messages.inc.php:444 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." msgstr "一个好记的名字。留空将显示主机名。" -#: libraries/config/messages.inc.php:446 +#: libraries/config/messages.inc.php:445 msgid "Verbose name of this server" msgstr "服务器名称" -#: libraries/config/messages.inc.php:447 +#: libraries/config/messages.inc.php:446 msgid "Whether a user should be displayed a "show all (rows)" button" msgstr "设置是否给用户显示一个 "显示所有 (记录)" 的按钮" -#: libraries/config/messages.inc.php:448 +#: libraries/config/messages.inc.php:447 msgid "Allow to display all the rows" msgstr "允许显示所有行" -#: libraries/config/messages.inc.php:449 +#: libraries/config/messages.inc.php:448 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " @@ -4018,75 +4029,75 @@ msgstr "" "注意:该选项不影响 [kbd]config[/kbd] 认证方式,因为密码是保存在配置文件中,该" "选项也不限制直接执行可实现相同功能的命令。" -#: libraries/config/messages.inc.php:450 +#: libraries/config/messages.inc.php:449 msgid "Show password change form" msgstr "显示修改密码" -#: libraries/config/messages.inc.php:451 +#: libraries/config/messages.inc.php:450 msgid "Show create database form" msgstr "显示创建数据库表单" -#: libraries/config/messages.inc.php:452 +#: libraries/config/messages.inc.php:451 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" msgstr "定义在编辑/插入模式中是否显示字段类型一列" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 msgid "Show field types" msgstr "显示字段类型" -#: libraries/config/messages.inc.php:454 +#: libraries/config/messages.inc.php:453 msgid "Display the function fields in edit/insert mode" msgstr "在编辑/插入模式中显示函数列" -#: libraries/config/messages.inc.php:455 +#: libraries/config/messages.inc.php:454 msgid "Show function fields" msgstr "显示函数列" -#: libraries/config/messages.inc.php:456 +#: libraries/config/messages.inc.php:455 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" "显示 [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] 输出的链接" -#: libraries/config/messages.inc.php:457 +#: libraries/config/messages.inc.php:456 msgid "Show phpinfo() link" msgstr "显示 phpinfo() 链接" -#: libraries/config/messages.inc.php:458 +#: libraries/config/messages.inc.php:457 msgid "Show detailed MySQL server information" msgstr "显示 MySQL 服务器详细信息" -#: libraries/config/messages.inc.php:459 +#: libraries/config/messages.inc.php:458 msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" msgstr "定义是否显示 phpMyAdmin 生成的 SQL 查询" -#: libraries/config/messages.inc.php:460 +#: libraries/config/messages.inc.php:459 msgid "Show SQL queries" msgstr "显示 SQL 查询" -#: libraries/config/messages.inc.php:461 +#: libraries/config/messages.inc.php:460 msgid "Allow to display database and table statistics (eg. space usage)" msgstr "允许显示数据库和数据表的统计信息 (如:空间使用)" -#: libraries/config/messages.inc.php:462 +#: libraries/config/messages.inc.php:461 msgid "Show statistics" msgstr "显示统计" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" "如果启用了悬停提示且设置了数据库备注,这里将简略显示数据库备注和数据库名" -#: libraries/config/messages.inc.php:464 +#: libraries/config/messages.inc.php:463 msgid "Display database comment instead of its name" msgstr "显示数据库的备注而不显示数据库名" -#: libraries/config/messages.inc.php:465 +#: libraries/config/messages.inc.php:464 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" @@ -4097,28 +4108,28 @@ msgstr "" "['LeftFrameTableSeparator'] 作分割/层叠用,所有只有目录的名字像别名,数据表自" "己的名字并不改变" -#: libraries/config/messages.inc.php:466 +#: libraries/config/messages.inc.php:465 msgid "Display table comment instead of its name" msgstr "显示表备注而不显示表名" -#: libraries/config/messages.inc.php:467 +#: libraries/config/messages.inc.php:466 msgid "Display table comments in tooltips" msgstr "悬停时显示表备注" -#: libraries/config/messages.inc.php:468 +#: libraries/config/messages.inc.php:467 msgid "" "Mark used tables and make it possible to show databases with locked tables" msgstr "将已锁定的数据表在数据库中显示为使用中" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 msgid "Skip locked tables" msgstr "跳过锁定的表" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" msgstr "需要启用 SQL 校验器" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4128,47 +4139,47 @@ msgstr "需要启用 SQL 校验器" msgid "Password" msgstr "密码" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" msgstr "[strong]警告:[/strong]需要安装 PHP SOAP 扩展或 PEAR SOAP" -#: libraries/config/messages.inc.php:478 +#: libraries/config/messages.inc.php:477 msgid "Enable SQL Validator" msgstr "启用 SQL 校验器" -#: libraries/config/messages.inc.php:479 +#: libraries/config/messages.inc.php:478 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" msgstr "" "如果你有自己的用户名,请在这里输入 (默认为 [kbd]anonymous (匿名)[/kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 msgid "Username" msgstr "用户名" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" msgstr "如果可能,在 "新建数据库" 表单中建议一个名字,或留空" -#: libraries/config/messages.inc.php:482 +#: libraries/config/messages.inc.php:481 msgid "Suggest new database name" msgstr "建议新数据库名" -#: libraries/config/messages.inc.php:483 +#: libraries/config/messages.inc.php:482 msgid "A warning is displayed on the main page if Suhosin is detected" msgstr "若检测到 Suhosin 将在主页显示一个警告" -#: libraries/config/messages.inc.php:484 +#: libraries/config/messages.inc.php:483 msgid "Suhosin warning" msgstr "Suhosin 警告" -#: libraries/config/messages.inc.php:485 +#: libraries/config/messages.inc.php:484 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4176,11 +4187,11 @@ msgstr "" "编辑模式的文本框大小 (列数),此值将用于 SQL 查询文本框 (*2) 和查询窗口 " "(*1.25)" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 msgid "Textarea columns" msgstr "文本框列" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" @@ -4188,31 +4199,31 @@ msgstr "" "编辑模式的文本框大小 (行数),此值将用于 SQL 查询文本框 (*2) 和查询窗口 " "(*1.25)" -#: libraries/config/messages.inc.php:488 +#: libraries/config/messages.inc.php:487 msgid "Textarea rows" msgstr "文本框行" -#: libraries/config/messages.inc.php:489 +#: libraries/config/messages.inc.php:488 msgid "Title of browser window when a database is selected" msgstr "选中一个数据库时浏览器窗口的标题" -#: libraries/config/messages.inc.php:491 +#: libraries/config/messages.inc.php:490 msgid "Title of browser window when nothing is selected" msgstr "未选择时浏览器窗口的标题" -#: libraries/config/messages.inc.php:492 +#: libraries/config/messages.inc.php:491 msgid "Default title" msgstr "默认标题" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" msgstr "选中一个服务器时浏览器窗口的标题" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" msgstr "选中一张数据表时浏览器窗口的标题" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" @@ -4223,37 +4234,37 @@ msgstr "" "信任从代理 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd] 发来的 " "HTTP_X_FORWARDED_FOR 头" -#: libraries/config/messages.inc.php:498 +#: libraries/config/messages.inc.php:497 msgid "List of trusted proxies for IP allow/deny" msgstr "可信代理IP列表" -#: libraries/config/messages.inc.php:499 +#: libraries/config/messages.inc.php:498 msgid "Directory on server where you can upload files for import" msgstr "服务器上用来存放导入文件的文件夹" -#: libraries/config/messages.inc.php:500 +#: libraries/config/messages.inc.php:499 msgid "Upload directory" msgstr "上传文件夹" -#: libraries/config/messages.inc.php:501 +#: libraries/config/messages.inc.php:500 msgid "Allow for searching inside the entire database" msgstr "允许搜索整个数据库" -#: libraries/config/messages.inc.php:502 +#: libraries/config/messages.inc.php:501 msgid "Use database search" msgstr "使用数据库搜索" -#: libraries/config/messages.inc.php:503 +#: libraries/config/messages.inc.php:502 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" msgstr "禁用时,用户不能设置下列选项,右侧的复选框被忽略" -#: libraries/config/messages.inc.php:504 +#: libraries/config/messages.inc.php:503 msgid "Enable the Developer tab in settings" msgstr "启用设置中的开发标签" -#: libraries/config/messages.inc.php:505 +#: libraries/config/messages.inc.php:504 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " @@ -4262,19 +4273,19 @@ msgstr "" "在进行多个语句查询时,显示每个语句所影响的行数。默认一次查询可以包含的查询语" "句数可以在 libraries/import.lib.php 中找到。" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" msgstr "为多个语句输出更多信息" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" msgstr "检查更新" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" msgstr "允许在 phpMyAdmin 主页面中检查最新版本" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: setup/lib/index.lib.php:161 setup/lib/index.lib.php:164 @@ -4282,7 +4293,7 @@ msgstr "允许在 phpMyAdmin 主页面中检查最新版本" msgid "Version check" msgstr "检查更新" -#: libraries/config/messages.inc.php:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" @@ -4290,7 +4301,7 @@ msgstr "" "允许在导入和导出时使用 [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP " "(外链,英文)[/a] 压缩" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" msgstr "ZIP" @@ -4310,61 +4321,61 @@ msgstr "HTTP 认证" msgid "Signon authentication" msgstr "Signon 认证" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV 使用 LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" msgstr "Excel 97-2003 XLS 工作簿" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" msgstr "Excel 2007 XLSX 工作簿" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" msgstr "OpenOffice 表格" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" msgstr "快速" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" msgstr "自定义" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" msgstr "数据库导出选项" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel 的 CSV 格式" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" msgstr "OpenOffice 文档" @@ -4451,7 +4462,7 @@ msgstr "常规" msgid "Return type" msgstr "返回类型" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -4834,58 +4845,58 @@ msgstr "显示 BLOB 内容" msgid "Browser transformation" msgstr "浏览器转换" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" msgstr "复制" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" msgstr "已删除该行" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" msgstr "杀死" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "查询中" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" msgstr "显示行" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "总计" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" msgstr "查询花费 %01.4f 秒" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" msgstr "查询结果选项" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" msgstr "打印预览 (全文显示)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 msgid "Display chart" msgstr "显示图表" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 msgid "Create view" msgstr "新建视图" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "找不到链接" @@ -9790,6 +9801,12 @@ msgstr "视图名" msgid "Rename view to" msgstr "将视图改名为" +#~ msgid "Show table row links on left side" +#~ msgstr "在数据左侧显示操作链接" + +#~ msgid "Show table row links on right side" +#~ msgstr "在数据右侧显示操作链接" + #~ msgid "Background color" #~ msgstr "背景色" diff --git a/po/zh_TW.po b/po/zh_TW.po index ca7218a60e..05bf707131 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -1,9 +1,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-05-31 17:50+0200\n" +"POT-Creation-Date: 2011-06-02 11:48+0200\n" "PO-Revision-Date: 2011-05-30 04:51+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" @@ -12,12 +11,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 #: libraries/display_tbl.lib.php:341 server_privileges.php:1583 msgid "Show all" -msgstr "顯示全部" +msgstr "全部顯示" #: browse_foreigners.php:70 libraries/common.lib.php:2299 #: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133 @@ -26,7 +24,7 @@ msgstr "顯示全部" #: libraries/schema/Pdf_Relation_Schema.class.php:1114 #: libraries/schema/User_Schema.class.php:360 msgid "Page number:" -msgstr "頁碼:" +msgstr "頁碼:" #: browse_foreigners.php:133 msgid "" @@ -34,15 +32,15 @@ msgid "" "parent window, or your browser's security settings are configured to block " "cross-window updates." msgstr "" -"目地的視窗無法更新. 可能你已關閉此視窗或你的瀏覽器於安全設定內啟動了無法跨視" -"窗更新" +"無法更新目標瀏覽視窗。可能您已經關閉了父視窗或您瀏覽器的安全設定阻止了跨視窗" +"更新" #: browse_foreigners.php:151 libraries/common.lib.php:2792 #: libraries/common.lib.php:2799 libraries/common.lib.php:2981 #: libraries/common.lib.php:2982 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:61 msgid "Search" -msgstr "搜索" +msgstr "搜尋" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421 #: db_operations.php:531 db_operations.php:559 db_search.php:358 @@ -115,7 +113,7 @@ msgstr "本系統不支援 %s 格式,詳情請參考 www.phpmyadmin.net" #: db_create.php:58 #, php-format msgid "Database %1$s has been created." -msgstr "資料庫 %1$s 已建立" +msgstr "建立資料庫 %1$s 成功" #: db_datadict.php:48 db_operations.php:362 msgid "Database comment: " @@ -125,7 +123,7 @@ msgstr "資料庫註釋:" #: libraries/tbl_properties.inc.php:733 tbl_operations.php:362 #: tbl_printview.php:127 msgid "Table comments" -msgstr "資料表註解文字" +msgstr "表註釋" #: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445 #: libraries/export/htmlword.php:247 libraries/export/latex.php:374 @@ -163,7 +161,7 @@ msgstr "類型" #: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:269 #: tbl_tracking.php:320 msgid "Null" -msgstr "Null" +msgstr "空" #: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250 #: libraries/export/latex.php:374 libraries/export/odt.php:310 @@ -173,7 +171,7 @@ msgstr "Null" #: libraries/tbl_properties.inc.php:105 tbl_printview.php:143 #: tbl_structure.php:203 tbl_tracking.php:270 msgid "Default" -msgstr "預設值" +msgstr "預設" #: db_datadict.php:175 libraries/export/htmlword.php:252 #: libraries/export/latex.php:376 libraries/export/odt.php:314 @@ -192,11 +190,11 @@ msgstr "連結到" #: libraries/schema/Pdf_Relation_Schema.class.php:1267 #: libraries/tbl_properties.inc.php:128 tbl_printview.php:149 msgid "Comments" -msgstr "註解" +msgstr "註釋" #: db_datadict.php:260 js/messages.php:80 libraries/Index.class.php:358 #: libraries/Index.class.php:385 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:282 @@ -208,11 +206,11 @@ msgstr "註解" #: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226 #: tbl_structure.php:374 tbl_tracking.php:330 tbl_tracking.php:335 msgid "No" -msgstr " 否 " +msgstr "否" #: db_datadict.php:260 js/messages.php:79 libraries/Index.class.php:359 #: libraries/Index.class.php:384 libraries/config.values.php:45 -#: libraries/config.values.php:50 libraries/config/FormDisplay.tpl.php:204 +#: libraries/config.values.php:51 libraries/config/FormDisplay.tpl.php:204 #: libraries/export/htmlword.php:325 libraries/export/latex.php:444 #: libraries/export/odt.php:375 libraries/export/texytext.php:304 #: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78 @@ -237,12 +235,12 @@ msgstr "列印" #: db_export.php:30 msgid "View dump (schema) of database" -msgstr "檢視資料庫的備份概要 (dump schema)" +msgstr "查看資料庫的轉存(大綱)" #: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48 #: export.php:371 navigation.php:323 msgid "No tables found in database." -msgstr "資料庫中沒有資料表" +msgstr "資料庫中沒有表" #: db_export.php:44 db_search.php:340 server_export.php:26 msgid "Select All" @@ -250,11 +248,11 @@ msgstr "全選" #: db_export.php:46 db_search.php:343 server_export.php:28 msgid "Unselect All" -msgstr "全部取消" +msgstr "全不選" #: db_operations.php:41 tbl_create.php:48 msgid "The database name is empty!" -msgstr "資料庫名稱並未輸入!!" +msgstr "資料庫名不能爲空!" #: db_operations.php:272 #, php-format @@ -264,7 +262,7 @@ msgstr "資料庫 %s 已變更名稱為 %s" #: db_operations.php:276 #, php-format msgid "Database %s has been copied to %s" -msgstr "資料庫 %s 已複製到 %s" +msgstr "已將資料庫 %s 複製爲 %s" #: db_operations.php:404 msgid "Rename database to" @@ -272,16 +270,16 @@ msgstr "將資料庫改名為" #: db_operations.php:409 server_processlist.php:69 msgid "Command" -msgstr "指令" +msgstr "命令" #: db_operations.php:440 msgid "Remove database" -msgstr "移除資料庫" +msgstr "刪除資料庫" #: db_operations.php:452 #, php-format msgid "Database %s has been dropped." -msgstr "資料庫 %s 已被刪除" +msgstr "已被刪除資料庫 %s " #: db_operations.php:457 msgid "Drop the database (DROP)" @@ -293,15 +291,15 @@ msgstr "複製資料庫到" #: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418 msgid "Structure only" -msgstr "只有結構" +msgstr "僅結構" #: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420 msgid "Structure and data" -msgstr "結構與資料" +msgstr "結構和資料" #: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419 msgid "Data only" -msgstr "只有資料" +msgstr "僅資料" #: db_operations.php:504 msgid "CREATE DATABASE before copying" @@ -321,11 +319,11 @@ msgstr "新增自動遞增(AUTO_INCREMENT)數值" #: db_operations.php:515 tbl_operations.php:565 msgid "Add constraints" -msgstr "加入限制" +msgstr "新增 constraints" #: db_operations.php:528 msgid "Switch to copied database" -msgstr "轉移到複製之資料庫" +msgstr "切換到複製的資料庫" #: db_operations.php:552 libraries/Index.class.php:447 #: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53 @@ -335,7 +333,7 @@ msgstr "轉移到複製之資料庫" #: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:268 #: tbl_tracking.php:319 msgid "Collation" -msgstr "校對" +msgstr "排序規則" #: db_operations.php:565 #, php-format @@ -346,17 +344,17 @@ msgstr "phpMyAdmin 設定儲存功能未能啟動, %s請按此%s 查出問題原 #: db_operations.php:600 msgid "Edit or export relational schema" -msgstr "編輯或匯出關連表" +msgstr "編輯或匯出關聯大綱" #: db_printview.php:102 db_tracking.php:85 db_tracking.php:186 -#: libraries/config/messages.inc.php:496 libraries/db_structure.lib.php:37 +#: libraries/config/messages.inc.php:495 libraries/db_structure.lib.php:37 #: libraries/export/pdf.php:100 libraries/export/xml.php:331 #: libraries/header.inc.php:152 libraries/schema/User_Schema.class.php:237 #: server_privileges.php:1745 server_privileges.php:1801 #: server_privileges.php:2065 server_synchronize.php:422 #: server_synchronize.php:865 tbl_tracking.php:643 test/theme.php:74 msgid "Table" -msgstr "資料表" +msgstr "表" #: db_printview.php:103 libraries/build_html_for_db.lib.php:30 #: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62 @@ -364,7 +362,7 @@ msgstr "資料表" #: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475 #: tbl_structure.php:871 msgid "Rows" -msgstr "資料列列數" +msgstr "行數" #: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188 msgid "Size" @@ -408,26 +406,26 @@ msgstr "您至少需要選擇一個欄位" #: db_qbe.php:186 msgid "Switch to" -msgstr "切換至" +msgstr "切換到" #: db_qbe.php:186 msgid "visual builder" -msgstr "視覺建置器" +msgstr "視覺化查詢產生器" #: db_qbe.php:222 libraries/db_structure.lib.php:95 -#: libraries/display_tbl.lib.php:858 +#: libraries/display_tbl.lib.php:865 msgid "Sort" msgstr "排序" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102 -#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819 +#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:826 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:275 #: tbl_select.php:277 msgid "Ascending" msgstr "遞增" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110 -#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816 +#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:823 #: server_databases.php:158 server_databases.php:175 tbl_operations.php:276 #: tbl_select.php:278 msgid "Descending" @@ -440,11 +438,11 @@ msgstr "顯示" #: db_qbe.php:322 msgid "Criteria" -msgstr "篩選" +msgstr "條件" #: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580 msgid "Ins" -msgstr "新增" +msgstr "插入" #: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577 msgid "And" @@ -452,7 +450,7 @@ msgstr "與" #: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582 msgid "Del" -msgstr "移除" +msgstr "刪除" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 #: server_privileges.php:307 tbl_change.php:965 tbl_indexes.php:248 @@ -466,7 +464,7 @@ msgstr "修改" #: db_qbe.php:606 msgid "Add/Delete criteria rows" -msgstr "新增/刪除篩選列" +msgstr "新增/刪除標準行" #: db_qbe.php:618 msgid "Add/Delete columns" @@ -478,23 +476,23 @@ msgstr "更新查詢" #: db_qbe.php:639 msgid "Use Tables" -msgstr "使用資料表" +msgstr "使用表" #: db_qbe.php:662 #, php-format msgid "SQL query on database %s:" -msgstr "在資料庫 %s 執行 SQL 語法:" +msgstr "在資料庫 %s 執行 SQL 指令:" #: db_qbe.php:955 libraries/common.lib.php:1154 msgid "Submit Query" -msgstr "執行語法" +msgstr "送出查詢" #: db_search.php:52 libraries/auth/config.auth.lib.php:83 #: libraries/auth/config.auth.lib.php:102 #: libraries/auth/cookie.auth.lib.php:646 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:224 msgid "Access denied" -msgstr "拒絕存取" +msgstr "拒絕訪問" #: db_search.php:64 db_search.php:307 msgid "at least one of the words" @@ -502,11 +500,11 @@ msgstr "至少一個字" #: db_search.php:65 db_search.php:308 msgid "all words" -msgstr "所有文字" +msgstr "所有詞" #: db_search.php:66 db_search.php:309 msgid "the exact phrase" -msgstr "完整詞語" +msgstr "精確短語" #: db_search.php:67 db_search.php:310 msgid "as regular expression" @@ -515,7 +513,7 @@ msgstr "以正則運算式 (regular expression) 搜索" #: db_search.php:229 #, php-format msgid "Search results for \"%s\" %s:" -msgstr "搜索 \"%s\" 的結果 %s:" +msgstr "“%s”的搜尋結果 %s:" #: db_search.php:247 #, php-format @@ -534,8 +532,8 @@ msgstr "瀏覽" msgid "Delete the matches for the %s table?" msgstr "刪除 %s 資料表中符合的資料?" -#: db_search.php:259 libraries/display_tbl.lib.php:1229 -#: libraries/display_tbl.lib.php:2159 +#: db_search.php:259 libraries/display_tbl.lib.php:1236 +#: libraries/display_tbl.lib.php:2184 #: libraries/schema/User_Schema.class.php:169 #: libraries/schema/User_Schema.class.php:238 #: libraries/schema/User_Schema.class.php:273 @@ -554,23 +552,23 @@ msgstr[0] "總計: %s 項資料符合" #: db_search.php:295 msgid "Search in database" -msgstr "搜索資料庫" +msgstr "在資料庫中搜尋" #: db_search.php:298 msgid "Word(s) or value(s) to search for (wildcard: \"%\"):" -msgstr "尋找之文字或數值 (萬用字元: \"%\"):" +msgstr "要搜尋的文字或數值 (萬用字元:“%”):" #: db_search.php:303 msgid "Find:" -msgstr "尋找:" +msgstr "搜尋:" #: db_search.php:307 db_search.php:308 msgid "Words are separated by a space character (\" \")." -msgstr "每組文字以空格 (\" \") 分隔." +msgstr "每個單詞用空格 (“ ”) 分隔" #: db_search.php:321 msgid "Inside table(s):" -msgstr "於以下資料表:" +msgstr "於以下表:" #: db_search.php:351 msgid "Inside column:" @@ -578,32 +576,32 @@ msgstr "於以下欄位:" #: db_structure.php:59 msgid "No tables found in database" -msgstr "資料庫中沒有資料表" +msgstr "沒有在資料庫中找到表" #: db_structure.php:277 tbl_operations.php:688 #, php-format msgid "Table %s has been emptied" -msgstr "資料表 %s 已被清空" +msgstr "已清空表 %s " #: db_structure.php:286 tbl_operations.php:705 #, php-format msgid "View %s has been dropped" -msgstr "檢視 %s 己被刪除." +msgstr "已刪除 view %s" #: db_structure.php:286 tbl_operations.php:705 #, php-format msgid "Table %s has been dropped" -msgstr "資料表 %s 已被刪除" +msgstr "已刪除表 %s " #: db_structure.php:293 tbl_create.php:295 msgid "Tracking is active." -msgstr "追蹤已啟用" +msgstr "追蹤已啓用" #: db_structure.php:295 tbl_create.php:297 msgid "Tracking is not active." -msgstr "追蹤未啟用" +msgstr "追蹤已停用" -#: db_structure.php:379 libraries/display_tbl.lib.php:2043 +#: db_structure.php:379 libraries/display_tbl.lib.php:2068 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -613,7 +611,7 @@ msgstr "這個檢視至少需包含這個數目的資料,請參考%sdocumentat #: 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:73 msgid "View" -msgstr "檢視" +msgstr " view" #: db_structure.php:444 libraries/db_structure.lib.php:40 #: libraries/server_links.inc.php:90 server_replication.php:31 @@ -628,45 +626,45 @@ msgstr "總計" #: db_structure.php:455 libraries/StorageEngine.class.php:351 #, php-format msgid "%s is the default storage engine on this MySQL server." -msgstr "這 MySQL 伺服器的預設儲存引擎是 %s " +msgstr "%s 是此 MySQL 伺服器的預設儲存引擎" #: db_structure.php:483 db_structure.php:500 db_structure.php:501 -#: libraries/display_tbl.lib.php:2184 libraries/display_tbl.lib.php:2189 +#: libraries/display_tbl.lib.php:2209 libraries/display_tbl.lib.php:2214 #: 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 "選擇的資料表:" +msgstr "選中項:" -#: db_structure.php:486 libraries/display_tbl.lib.php:2179 +#: db_structure.php:486 libraries/display_tbl.lib.php:2204 #: 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:2180 +#: db_structure.php:490 libraries/display_tbl.lib.php:2205 #: libraries/replication_gui.lib.php:35 server_databases.php:264 #: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555 msgid "Uncheck All" -msgstr "全部取消" +msgstr "全不選" #: db_structure.php:495 msgid "Check tables having overhead" -msgstr "檢查額外記錄 (overhead)" +msgstr "僅選擇多餘" #: db_structure.php:503 libraries/config/messages.inc.php:162 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2197 -#: libraries/display_tbl.lib.php:2331 libraries/server_links.inc.php:65 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2222 +#: libraries/display_tbl.lib.php:2356 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 "輸出" +msgstr "匯出" #: db_structure.php:505 db_structure.php:567 -#: libraries/display_tbl.lib.php:2286 tbl_structure.php:586 +#: libraries/display_tbl.lib.php:2311 tbl_structure.php:586 #: tbl_structure.php:588 msgid "Print view" -msgstr "列印檢視" +msgstr "列印預覽" #: db_structure.php:509 libraries/common.lib.php:2988 #: libraries/common.lib.php:2989 @@ -682,20 +680,20 @@ msgstr "刪除" #: db_structure.php:513 tbl_operations.php:604 msgid "Check table" -msgstr "檢查資料表" +msgstr "檢查表" #: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:803 #: tbl_structure.php:805 msgid "Optimize table" -msgstr "最佳化資料表" +msgstr "最佳化表" #: db_structure.php:517 tbl_operations.php:640 msgid "Repair table" -msgstr "修復資料表" +msgstr "修復表" #: db_structure.php:519 tbl_operations.php:627 msgid "Analyze table" -msgstr "分析資料表" +msgstr "分析表" #: db_structure.php:521 msgid "Add prefix to table" @@ -715,9 +713,9 @@ msgstr "資料字典" #: db_tracking.php:79 msgid "Tracked tables" -msgstr "已追蹤的資料表" +msgstr "已追蹤的表" -#: db_tracking.php:84 libraries/config/messages.inc.php:490 +#: db_tracking.php:84 libraries/config/messages.inc.php:489 #: libraries/export/htmlword.php:89 libraries/export/latex.php:162 #: libraries/export/odt.php:120 libraries/export/pdf.php:100 #: libraries/export/sql.php:453 libraries/export/texytext.php:77 @@ -736,11 +734,11 @@ msgstr "最新版本" #: db_tracking.php:87 tbl_tracking.php:645 msgid "Created" -msgstr "已建立" +msgstr "建立" #: db_tracking.php:88 tbl_tracking.php:646 msgid "Updated" -msgstr "已更新" +msgstr "更新" #: db_tracking.php:89 libraries/common.lib.php:1320 #: libraries/server_links.inc.php:51 server_processlist.php:71 @@ -757,11 +755,11 @@ msgstr "動作" #: db_tracking.php:101 js/messages.php:36 msgid "Delete tracking data for this table" -msgstr "刪除此資料表的追蹤資料" +msgstr "刪除追蹤資料" #: db_tracking.php:119 tbl_tracking.php:599 tbl_tracking.php:657 msgid "active" -msgstr "啟用" +msgstr "啓用" #: db_tracking.php:121 tbl_tracking.php:601 tbl_tracking.php:659 msgid "not active" @@ -781,7 +779,7 @@ msgstr "結構快照" #: db_tracking.php:181 msgid "Untracked tables" -msgstr "未追蹤的資料表" +msgstr "未追蹤的表" #: db_tracking.php:201 db_tracking.php:203 tbl_structure.php:622 #: tbl_structure.php:624 @@ -867,12 +865,12 @@ msgid "" "file size exceeded the maximum size permitted by your PHP configuration. See " "[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]." msgstr "" -"未接收到要匯入的資料. 可能是檔案名稱未送出, 也可能是檔案大小超出 PHP 限制. 請" -"參閱 [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]。" +"沒有接收到要匯入的資料。可能是檔案名稱沒有送出,也可能是檔案大小超出 PHP 限制" +"參見 [a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]" #: import.php:371 libraries/display_import.lib.php:23 msgid "Could not load import plugins, please check your installation!" -msgstr "無法讀取載入的外掛程式, 請檢查安裝程序!" +msgstr "無法載入匯入插件,請檢查您的安裝!" #: import.php:396 msgid "The bookmark has been deleted." @@ -885,7 +883,7 @@ msgstr "顯示書籤" #: import.php:402 sql.php:909 #, php-format msgid "Bookmark %s created" -msgstr "書籤 %s 已建立" +msgstr "已建立書籤 %s" #: import.php:408 import.php:414 #, php-format @@ -904,11 +902,11 @@ msgid "" "However on last run no data has been parsed, this usually means phpMyAdmin " "won't be able to finish this import unless you increase php time limits." msgstr "" -"在最後一次執行時, 解析失敗. 請增加 PHP 運行時間限制, 否則 phpMyAdmin 將無法完" -"成資料匯入." +"在最後一次執行時沒有資料被解析,建議您增加 PHP 運行時間限制,否則 phpMyAdmin " +"將無法完成匯入操作" #: import.php:453 libraries/Message.class.php:185 -#: libraries/display_tbl.lib.php:2080 libraries/sql_query_form.lib.php:139 +#: libraries/display_tbl.lib.php:2105 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" @@ -917,7 +915,7 @@ msgstr "您的 SQL 語法已順利執行" #: import_status.php:30 libraries/common.lib.php:650 #: libraries/schema/Export_Relation_Schema.class.php:215 user_password.php:123 msgid "Back" -msgstr "回上一頁" +msgstr "返回" #: index.php:185 msgid "phpMyAdmin is more friendly with a frames-capable browser." @@ -936,15 +934,15 @@ msgstr "點擊取消" #: js/messages.php:27 libraries/import.lib.php:103 sql.php:195 msgid "\"DROP DATABASE\" statements are disabled." -msgstr "\"DROP DATABASE\" 指令已經停用." +msgstr "已經停用刪除資料庫 (“DROP DATABASE”) 指令" #: js/messages.php:30 libraries/mult_submits.inc.php:277 sql.php:293 msgid "Do you really want to " -msgstr "您確定要 " +msgstr "您真的要" #: js/messages.php:31 libraries/mult_submits.inc.php:277 sql.php:278 msgid "You are about to DESTROY a complete database!" -msgstr "您將會刪除整個資料庫!" +msgstr "您將要刪除一個完整的資料庫!" #: js/messages.php:32 msgid "You are about to DESTROY a complete table!" @@ -982,7 +980,7 @@ msgstr "您將要停用BLOB儲存格式" #: js/messages.php:43 #, php-format msgid "Are you sure you want to disable all BLOB references for database %s?" -msgstr "您確定要在資料庫 %s 上停用 BLOB 功能?" +msgstr "您確定要在資料庫 %s 上停用 BLOB 功能?" #: js/messages.php:46 msgid "Missing value in the form!" @@ -990,27 +988,27 @@ msgstr "表單內缺少部分資料" #: js/messages.php:47 msgid "This is not a number!" -msgstr "這不是一個數字!" +msgstr "這不是一個數字!" #: js/messages.php:50 msgid "The host name is empty!" -msgstr "請輸入主機名稱!" +msgstr "主機名不能爲空!" #: js/messages.php:51 msgid "The user name is empty!" -msgstr "請輸入使用者名稱!" +msgstr "帳號不能爲空!" #: js/messages.php:52 server_privileges.php:1221 user_password.php:64 msgid "The password is empty!" -msgstr "請輸入密碼!" +msgstr "密碼不能爲空!" #: js/messages.php:53 server_privileges.php:1219 user_password.php:67 msgid "The passwords aren't the same!" -msgstr "第二次輸入的密碼不同!" +msgstr "兩次密碼不一致!" #: js/messages.php:54 msgid "Add a New User" -msgstr "新增使用者" +msgstr "新增新使用者" #: js/messages.php:55 msgid "Create User" @@ -1022,7 +1020,7 @@ msgstr "重新載入權限" #: js/messages.php:57 msgid "Removing Selected Users" -msgstr "移除已選擇使用者" +msgstr "正在刪除選中的使用者" #: js/messages.php:58 libraries/tbl_properties.inc.php:791 #: tbl_tracking.php:244 tbl_tracking.php:409 @@ -1053,7 +1051,7 @@ msgstr "刪除欄位" #: js/messages.php:69 msgid "Adding Primary Key" -msgstr "增加主鍵值" +msgstr "正在新增主鍵" #: js/messages.php:70 libraries/relation.lib.php:87 pmd_general.php:386 #: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667 @@ -1124,8 +1122,8 @@ msgstr "快速編輯" #: js/messages.php:96 libraries/Index.class.php:465 #: libraries/common.lib.php:594 libraries/common.lib.php:1130 -#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:470 -#: libraries/display_tbl.lib.php:1193 libraries/import.lib.php:1150 +#: libraries/common.lib.php:2990 libraries/config/messages.inc.php:469 +#: libraries/display_tbl.lib.php:1200 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" @@ -1159,19 +1157,19 @@ msgstr "忽略" #: js/messages.php:108 msgid "Select referenced key" -msgstr "選擇參考鍵值" +msgstr "選擇外部鍵" #: js/messages.php:109 msgid "Select Foreign Key" -msgstr "選擇外來鍵值" +msgstr "選擇外部鍵" #: js/messages.php:110 msgid "Please select the primary key or a unique key" -msgstr "請選擇主鍵值或唯一鍵值" +msgstr "請選擇主鍵或唯一鍵" #: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" -msgstr "選擇顯示之欄位" +msgstr "選擇要顯示的欄位" #: js/messages.php:112 msgid "" @@ -1181,7 +1179,7 @@ msgstr "你尚未儲存修改的資料。請確認是否要捨棄這些資料?" #: js/messages.php:115 msgid "Add an option for column " -msgstr "增加一個欄位選項" +msgstr "新增選項給欄位 " #: js/messages.php:118 msgid "Generate password" @@ -1193,7 +1191,7 @@ msgstr "產生" #: js/messages.php:120 msgid "Change Password" -msgstr "更改密碼" +msgstr "修改密碼" #: js/messages.php:123 tbl_structure.php:471 msgid "More" @@ -1204,7 +1202,7 @@ msgstr "更多" 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 發佈。" +msgstr "有新的 phpMyAdmin 可用,請考慮升級。最新的版本是 %s,於 %s 發佈" #. l10n: Latest available phpMyAdmin version #: js/messages.php:128 @@ -1450,7 +1448,7 @@ msgstr "六" #. l10n: Column header for week of the year in calendar #: js/messages.php:236 msgid "Wk" -msgstr "週" +msgstr "周" #: js/messages.php:238 msgid "Hour" @@ -1470,33 +1468,33 @@ msgstr "字體大小" #: libraries/File.class.php:310 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." -msgstr "上傳文件的大小超過 php.ini 文件中 upload_max_filesize 的限制。" +msgstr "上傳檔案的大小超過 php.ini 檔案中 upload_max_filesize 的限制" #: libraries/File.class.php:313 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." -msgstr "上傳文件的大小超過 HTML 表單中指定的 MAX_FILE_SIZE 值。" +msgstr "上傳檔案的大小超過 HTML 表單中指定的 MAX_FILE_SIZE 值" #: libraries/File.class.php:316 msgid "The uploaded file was only partially uploaded." -msgstr "僅上傳了文件的部分內容。" +msgstr "僅上傳了檔案的一部分內容" #: libraries/File.class.php:319 msgid "Missing a temporary folder." -msgstr "找不到暫存資料夾。" +msgstr "找不到臨時資料夾" #: libraries/File.class.php:322 msgid "Failed to write file to disk." -msgstr "檔案存入磁碟失敗" +msgstr "將檔案寫入硬碟失敗" #: libraries/File.class.php:325 msgid "File upload stopped by extension." -msgstr "檔案上傳因為擴充功能而停止" +msgstr "因外掛而停止檔案上傳" #: libraries/File.class.php:328 msgid "Unknown error in file upload." -msgstr "檔案上傳時發生未知錯誤" +msgstr "上傳檔案時發生未知錯誤" #: libraries/File.class.php:559 msgid "" @@ -1508,7 +1506,7 @@ msgstr "" #: libraries/Index.class.php:427 tbl_relation.php:526 msgid "No index defined!" -msgstr "沒有已定義的索引!" +msgstr "沒有已定義的索引!" #: libraries/Index.class.php:432 libraries/build_html_for_db.lib.php:40 #: tbl_tracking.php:309 @@ -1519,7 +1517,7 @@ msgstr "索引" #: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:567 #: tbl_tracking.php:315 msgid "Unique" -msgstr "唯一鍵 UNIQUE" +msgstr "唯一" #: libraries/Index.class.php:444 tbl_tracking.php:316 msgid "Packed" @@ -1535,19 +1533,19 @@ msgstr "註解" #: libraries/Index.class.php:471 msgid "The primary key has been dropped" -msgstr "主鍵已被刪除" +msgstr "已刪除主鍵" #: libraries/Index.class.php:475 #, php-format msgid "Index %s has been dropped" -msgstr "索引 %s 已被刪除" +msgstr "已刪除索引 %s " #: libraries/Index.class.php:579 #, php-format msgid "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." -msgstr "索引 %1$s 和 %2$s 可能是相同的,建議可刪除其中一組" +msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除" #: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:175 #: libraries/server_links.inc.php:43 server_databases.php:100 @@ -1600,7 +1598,7 @@ msgstr "沒有可上傳的檔案" #: libraries/StorageEngine.class.php:194 msgid "" "There is no detailed status information available for this storage engine." -msgstr "這儲存引擎並無詳細的狀態資料." +msgstr "沒有該儲存引擎的詳細資訊" #: libraries/StorageEngine.class.php:354 #, php-format @@ -1610,12 +1608,12 @@ msgstr "MySQL 伺服器支援 %s ." #: libraries/StorageEngine.class.php:357 #, php-format msgid "%s has been disabled for this MySQL server." -msgstr "%s 己於這個 MySQL 伺服器中停用." +msgstr "%s 在此 MySQL 伺服器上被禁止了" #: libraries/StorageEngine.class.php:361 #, php-format msgid "This MySQL server does not support the %s storage engine." -msgstr "這 MySQL 版本並不接受 %s 儲存引擎." +msgstr "此 MySQL 伺服器不支援 %s 儲存引擎" #: libraries/Table.class.php:1026 msgid "Invalid database" @@ -1623,17 +1621,17 @@ msgstr "無效的資料庫" #: libraries/Table.class.php:1040 tbl_get_field.php:25 msgid "Invalid table name" -msgstr "無效的資料表名" +msgstr "無效的資料資料表名稱" #: libraries/Table.class.php:1055 #, php-format msgid "Error renaming table %1$s to %2$s" -msgstr "將資料表 %1$s 改名為 %2$s 時發生錯誤" +msgstr "將表 %1$s 改名爲 %2$s 時發生錯誤" #: libraries/Table.class.php:1138 #, php-format msgid "Table %s has been renamed to %s" -msgstr "已經將資料表 %s 改名成 %s" +msgstr "已將資料表 %s 改名爲 %s" #: libraries/Table.class.php:1250 msgid "Could not save table UI preferences" @@ -1650,22 +1648,22 @@ msgstr "沒有可用的預覽。" #: libraries/Theme.class.php:383 msgid "take it" -msgstr "選用" +msgstr "確定" #: libraries/Theme_Manager.class.php:109 #, php-format msgid "Default theme %s not found!" -msgstr "找不到預設佈景主題 %s !" +msgstr "未找到預設主題 %s !" #: libraries/Theme_Manager.class.php:147 #, php-format msgid "Theme %s not found!" -msgstr "找不到佈景主題 %s !" +msgstr "未找到主題 %s !" #: libraries/Theme_Manager.class.php:215 #, php-format msgid "Theme path not found for theme %s!" -msgstr "找不到佈景主題 %s 之設定路徑!" +msgstr "找不到主題 %s 的路徑" #: libraries/Theme_Manager.class.php:291 test/theme.php:160 themes.php:20 #: themes.php:40 @@ -1688,7 +1686,8 @@ msgstr "歡迎使用 %s" msgid "" "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 建立設定檔." +msgstr "" +"您可能還沒有建立設定檔案。您可以使用 %1$s設定指令%2$s 來建立一個設定檔案" #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -1697,29 +1696,28 @@ msgid "" "configuration and make sure that they correspond to the information given by " "the administrator of the MySQL server." msgstr "" -"phpMyAdmin 嘗試連線到 MySQL 伺服器, 但伺服器拒絕了連線. 您應於 config.inc." -"php 內檢查主機名稱, 登入名稱及密碼及確保這些資料是與系統管理人員所提供的 " -"MySQL 伺服器資料相同" +"phpMyAdmin 嘗試連線到 MySQL 伺服器,但伺服器拒絕連線。您應該檢查設定檔案中的" +"主機、帳號和密碼,並確認這些資訊與 MySQL 伺服器管理員所給出的資訊一致" #: libraries/auth/cookie.auth.lib.php:230 msgid "Log in" -msgstr "登入" +msgstr "登錄" #: libraries/auth/cookie.auth.lib.php:232 #: libraries/auth/cookie.auth.lib.php:234 #: libraries/navigation_header.inc.php:95 #: libraries/navigation_header.inc.php:99 msgid "phpMyAdmin documentation" -msgstr "phpMyAdmin 說明文件" +msgstr "phpMyAdmin 檔案" #: libraries/auth/cookie.auth.lib.php:244 #: libraries/auth/cookie.auth.lib.php:245 msgid "You can enter hostname/IP address and port separated by space." -msgstr "您可以輸入以空格分隔的主機名/IP位址和Port編號。" +msgstr "您可以輸入以空格分隔的主機名/IP網址和連結埠" #: libraries/auth/cookie.auth.lib.php:244 msgid "Server:" -msgstr "伺服器" +msgstr "伺服器:" #: libraries/auth/cookie.auth.lib.php:249 msgid "Username:" @@ -1727,7 +1725,7 @@ msgstr "使用者名稱" #: libraries/auth/cookie.auth.lib.php:253 msgid "Password:" -msgstr "密碼:" +msgstr "密碼:" #: libraries/auth/cookie.auth.lib.php:260 msgid "Server Choice" @@ -1741,23 +1739,23 @@ msgstr "必須啟用 Cookies 才能登入。" #: libraries/auth/signon.auth.lib.php:222 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" -msgstr "禁止使用空密碼登入 (請參考 [AllowNoPassword] 設定說明)" +msgstr "空密碼登錄被禁止 (參見 允許空密碼)" #: libraries/auth/cookie.auth.lib.php:648 #: libraries/auth/signon.auth.lib.php:226 #, php-format msgid "No activity within %s seconds; please log in again" -msgstr "由於已閒置了達 %s 秒, 請重新登入" +msgstr "登錄超時 (%s 秒未操作),請重新登錄" #: libraries/auth/cookie.auth.lib.php:658 #: libraries/auth/cookie.auth.lib.php:660 #: libraries/auth/signon.auth.lib.php:232 msgid "Cannot log in to the MySQL server" -msgstr "無法登入 MySQL 伺服器" +msgstr "無法登錄 MySQL 伺服器" #: libraries/auth/http.auth.lib.php:69 msgid "Wrong username/password. Access denied." -msgstr "錯誤的使用者名稱或密碼,拒絕存取" +msgstr "帳號/密碼錯誤。拒絕訪問" #: libraries/auth/swekey/swekey.auth.lib.php:118 #, php-format @@ -1767,15 +1765,15 @@ msgstr "檔案 %s 未包含任何密鑰" #: libraries/auth/swekey/swekey.auth.lib.php:157 #: libraries/auth/swekey/swekey.auth.lib.php:180 msgid "Hardware authentication failed" -msgstr "硬體認證失敗" +msgstr "硬件認證失敗" #: libraries/auth/swekey/swekey.auth.lib.php:166 msgid "No valid authentication key plugged" -msgstr "沒有插入可用的密鑰" +msgstr "沒有可用的密鑰插入" #: libraries/auth/swekey/swekey.auth.lib.php:202 msgid "Authenticating..." -msgstr "認證中..." +msgstr "正在認證..." #: libraries/blobstreaming.lib.php:241 msgid "PBMS error" @@ -1787,23 +1785,23 @@ msgstr "PBMS 連線失敗" #: libraries/blobstreaming.lib.php:312 msgid "PBMS get BLOB info failed:" -msgstr "PBMS 擷取 BLOB 資訊失敗:" +msgstr "PBMS 取得 BLOB 資訊失敗:" #: libraries/blobstreaming.lib.php:320 msgid "get BLOB Content-Type failed" -msgstr "擷取 BLOB 內容型別失敗" +msgstr "取得 BLOB 內容類型失敗" #: libraries/blobstreaming.lib.php:347 msgid "View image" -msgstr "檢視圖片" +msgstr "查看圖片" #: libraries/blobstreaming.lib.php:351 msgid "Play audio" -msgstr "播放音樂" +msgstr "播放音效" #: libraries/blobstreaming.lib.php:356 msgid "View video" -msgstr "檢視影片" +msgstr "播放影片" #: libraries/blobstreaming.lib.php:360 msgid "Download file" @@ -1816,7 +1814,7 @@ msgstr "無法開啟檔案:%s" #: libraries/bookmark.lib.php:83 msgid "shared" -msgstr "已分享" +msgstr "已共享" #: libraries/build_html_for_db.lib.php:25 #: libraries/config/messages.inc.php:181 libraries/export/xml.php:36 @@ -1824,13 +1822,13 @@ msgstr "已分享" msgid "Tables" msgstr "資料表" -#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:304 -#: libraries/config/setup.forms.php:340 libraries/config/setup.forms.php:371 -#: libraries/config/setup.forms.php:376 -#: libraries/config/user_preferences.forms.php:204 -#: libraries/config/user_preferences.forms.php:240 -#: libraries/config/user_preferences.forms.php:271 -#: libraries/config/user_preferences.forms.php:276 +#: libraries/build_html_for_db.lib.php:35 libraries/config/setup.forms.php:303 +#: libraries/config/setup.forms.php:339 libraries/config/setup.forms.php:370 +#: libraries/config/setup.forms.php:375 +#: libraries/config/user_preferences.forms.php:203 +#: libraries/config/user_preferences.forms.php:239 +#: libraries/config/user_preferences.forms.php:270 +#: libraries/config/user_preferences.forms.php:275 #: libraries/export/latex.php:215 libraries/export/sql.php:945 #: server_privileges.php:513 server_replication.php:314 tbl_printview.php:314 #: tbl_structure.php:759 @@ -1875,7 +1873,7 @@ msgstr "查詢統計" #: libraries/chart.lib.php:63 msgid "Query execution time comparison (in microseconds)" -msgstr "查詢執行時間比對 (單位:微秒)" +msgstr "查詢執行時間對比 (單位:微秒)" #: libraries/chart.lib.php:83 msgid "Query results" @@ -1883,15 +1881,15 @@ msgstr "查詢結果" #: libraries/chart.lib.php:109 msgid "No data found for the chart." -msgstr "未找到圖表所需資料。" +msgstr "未找到圖表所需資料" #: libraries/chart.lib.php:249 msgid "GD extension is needed for charts." -msgstr "繪製圖表需要 GD 元件。" +msgstr "繪製圖表需要 GD 外掛" #: libraries/chart.lib.php:252 msgid "JSON encoder is needed for chart tooltips." -msgstr "繪製圖表提示訊息提示需要 JSON 元件" +msgstr "繪製圖表氣泡提示需要 JSON 外掛" #: libraries/common.inc.php:575 msgid "" @@ -1910,25 +1908,25 @@ msgstr "" #: libraries/common.inc.php:586 #, php-format msgid "Could not load default configuration from: %1$s" -msgstr "無法讀取預設設定: \"%1$s\"" +msgstr "無法載入預設設定: %1$s" #: libraries/common.inc.php:591 msgid "" "The $cfg['PmaAbsoluteUri'] directive MUST be set in your " "configuration file!" -msgstr " 必須在設定檔內設定 $cfg['PmaAbsoluteUri'] !" +msgstr "必須在您的設定檔案中設定 $cfg['PmaAbsoluteUri'] !" #: libraries/common.inc.php:621 #, php-format msgid "Invalid server index: %s" -msgstr "伺服器索引錯誤: \"%s\"" +msgstr "無效的伺服器索引: %s" #: libraries/common.inc.php:628 #, php-format msgid "Invalid hostname for server %1$s. Please review your configuration." msgstr "伺服器 %1$s 主機名稱錯誤, 請檢查設定檔案." -#: libraries/common.inc.php:637 libraries/config/messages.inc.php:494 +#: libraries/common.inc.php:637 libraries/config/messages.inc.php:493 #: libraries/header.inc.php:129 main.php:161 server_synchronize.php:1174 #: test/theme.php:56 msgid "Server" @@ -1946,13 +1944,13 @@ msgstr "您應升級到 %s %s 或更高版本。" #: libraries/common.lib.php:134 #, php-format msgid "Max: %s%s" -msgstr "最大容量: %s%s" +msgstr "最大限制:%s %s" #. l10n: Language to use for MySQL 5.5 documentation, please use only languages which do exist in official documentation. #: libraries/common.lib.php:386 msgctxt "MySQL 5.5 documentation language" msgid "en" -msgstr "en" +msgstr "zh" #. l10n: Language to use for MySQL 5.1 documentation, please use only languages which do exist in official documentation. #: libraries/common.lib.php:390 @@ -1964,7 +1962,7 @@ msgstr "en" #: libraries/common.lib.php:394 msgctxt "MySQL 5.0 documentation language" msgid "en" -msgstr "en" +msgstr "zh" #: libraries/common.lib.php:407 libraries/common.lib.php:409 #: libraries/common.lib.php:411 libraries/common.lib.php:426 @@ -1975,22 +1973,22 @@ msgstr "en" #: libraries/sql_query_form.lib.php:428 libraries/sql_query_form.lib.php:431 #: main.php:212 server_variables.php:63 msgid "Documentation" -msgstr "說明文件" +msgstr "文件" #: libraries/common.lib.php:573 libraries/header_printview.inc.php:60 #: server_processlist.php:72 server_status.php:372 msgid "SQL query" -msgstr "SQL 語法" +msgstr "SQL 查詢" #: libraries/common.lib.php:609 msgid "MySQL said: " -msgstr "MySQL 傳回: " +msgstr "MySQL 返回:" #: libraries/common.lib.php:1064 msgid "Failed to connect to SQL validator!" -msgstr "連接到 SQL 驗證失敗!" +msgstr "連線到 SQL 檢驗器失敗!" -#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:471 +#: libraries/common.lib.php:1105 libraries/config/messages.inc.php:470 msgid "Explain SQL" msgstr "SQL說明 " @@ -2000,28 +1998,28 @@ msgstr "略過SQL說明 " #: libraries/common.lib.php:1143 msgid "Without PHP Code" -msgstr "移除 PHP 程式碼" +msgstr "無 PHP 程式碼" -#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:473 +#: libraries/common.lib.php:1146 libraries/config/messages.inc.php:472 msgid "Create PHP Code" msgstr "建立 PHP 程式碼" -#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:472 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:471 #: server_status.php:467 msgid "Refresh" -msgstr "更新" +msgstr "重新整理" #: libraries/common.lib.php:1173 msgid "Skip Validate SQL" -msgstr "略過檢查 SQL" +msgstr "略過檢驗 SQL" -#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:475 +#: libraries/common.lib.php:1176 libraries/config/messages.inc.php:474 msgid "Validate SQL" -msgstr "檢查 SQL" +msgstr "檢驗 SQL" #: libraries/common.lib.php:1231 msgid "Inline edit of this query" -msgstr "在此次查詢中,使用快速編輯" +msgstr "在本頁面編輯此查詢" #: libraries/common.lib.php:1233 msgid "Inline" @@ -2039,7 +2037,7 @@ msgstr "時間" #. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ #: libraries/common.lib.php:1357 msgid "B" -msgstr "Bytes" +msgstr "B" #: libraries/common.lib.php:1357 msgid "KiB" @@ -2089,35 +2087,35 @@ msgstr "%s 天 %s 小時,%s 分 %s 秒" #: libraries/common.lib.php:2308 libraries/common.lib.php:2311 #: libraries/display_tbl.lib.php:288 server_status.php:756 msgid "Begin" -msgstr "第一頁" +msgstr "開始" #: libraries/common.lib.php:2309 libraries/common.lib.php:2312 #: libraries/display_tbl.lib.php:289 server_binlog.php:154 #: server_binlog.php:156 msgid "Previous" -msgstr "前一頁" +msgstr "上一個" #: libraries/common.lib.php:2339 libraries/common.lib.php:2342 #: libraries/display_tbl.lib.php:368 msgid "End" -msgstr "最後一頁" +msgstr "結束" #: libraries/common.lib.php:2414 #, php-format msgid "Jump to database "%s"." -msgstr "跳到資料庫 "%s"." +msgstr "跳轉到資料庫“%s”" #: libraries/common.lib.php:2433 #, php-format msgid "The %s functionality is affected by a known bug, see %s" -msgstr "%s 功能受到一個已知的缺陷 (bug) 影響,請參考 %s" +msgstr "%s 功能受到一個已知的缺陷 (bug) 影響,參見 %s" #: libraries/common.lib.php:2790 libraries/common.lib.php:2797 -#: libraries/common.lib.php:2985 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 -#: libraries/config/user_preferences.forms.php:266 +#: libraries/common.lib.php:2985 libraries/config/setup.forms.php:294 +#: libraries/config/setup.forms.php:331 libraries/config/setup.forms.php:365 +#: libraries/config/user_preferences.forms.php:194 +#: libraries/config/user_preferences.forms.php:231 +#: libraries/config/user_preferences.forms.php:265 #: libraries/db_links.inc.php:48 libraries/export/latex.php:351 #: libraries/import.lib.php:1167 libraries/tbl_links.inc.php:54 #: libraries/tbl_properties.inc.php:642 pmd_general.php:151 @@ -2143,11 +2141,11 @@ msgstr "插入" #: libraries/tbl_links.inc.php:86 libraries/tbl_links.inc.php:102 #: view_operations.php:87 msgid "Operations" -msgstr "管理" +msgstr "操作" #: libraries/common.lib.php:2930 msgid "Browse your computer:" -msgstr "瀏覽你的電腦:" +msgstr "從計算機中上傳:" #: libraries/common.lib.php:2946 #, php-format @@ -2163,62 +2161,77 @@ msgstr "設定之上傳目錄錯誤,無法使用" msgid "There are no files to upload" msgstr "沒有可上傳的檔案" -#: libraries/config.values.php:45 libraries/config.values.php:50 +#: libraries/config.values.php:45 libraries/config.values.php:47 +#: libraries/config.values.php:51 msgid "Both" msgstr "全部" -#: libraries/config.values.php:74 -msgid "Open" -msgstr "開啟" +#: libraries/config.values.php:47 +msgid "Nowhere" +msgstr "" -#: libraries/config.values.php:74 +#: libraries/config.values.php:47 +msgid "Left" +msgstr "" + +#: libraries/config.values.php:47 +#, fuzzy +#| msgid "Height" +msgid "Right" +msgstr "高" + +#: libraries/config.values.php:75 +msgid "Open" +msgstr "開啓" + +#: libraries/config.values.php:75 msgid "Closed" msgstr "關閉" -#: libraries/config.values.php:95 libraries/export/htmlword.php:24 +#: libraries/config.values.php:96 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 #: libraries/import.lib.php:1172 msgid "structure" msgstr "結構" -#: libraries/config.values.php:96 libraries/export/htmlword.php:24 +#: libraries/config.values.php:97 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "data" msgstr "資料" -#: libraries/config.values.php:97 libraries/export/htmlword.php:24 +#: libraries/config.values.php:98 libraries/export/htmlword.php:24 #: libraries/export/latex.php:41 libraries/export/odt.php:33 #: libraries/export/sql.php:79 libraries/export/texytext.php:23 msgid "structure and data" -msgstr "結構與資料" +msgstr "結構和資料" -#: libraries/config.values.php:99 +#: libraries/config.values.php:100 msgid "Quick - display only the minimal options to configure" msgstr "快速 - 僅顯示必須的設定項" -#: libraries/config.values.php:100 -msgid "Custom - display all possible options to configure" -msgstr "自行定義 - 顯示所有可用的設定項" - #: libraries/config.values.php:101 -msgid "Custom - like above, but without the quick/custom choice" -msgstr "自行定義 - 不顯示 快速/自定義 選擇" +msgid "Custom - display all possible options to configure" +msgstr "自訂 - 顯示所有可用的設定項" -#: libraries/config.values.php:119 -msgid "complete inserts" -msgstr "使用完整新增指令" +#: libraries/config.values.php:102 +msgid "Custom - like above, but without the quick/custom choice" +msgstr "自訂 - 不顯示 快速/自訂 選擇" #: libraries/config.values.php:120 -msgid "extended inserts" -msgstr "伸延新增模式" +msgid "complete inserts" +msgstr "完整插入" #: libraries/config.values.php:121 +msgid "extended inserts" +msgstr "外掛插入" + +#: libraries/config.values.php:122 msgid "both of the above" msgstr "以上兼有" -#: libraries/config.values.php:122 +#: libraries/config.values.php:123 msgid "neither of the above" msgstr "以上均不" @@ -2235,7 +2248,7 @@ msgstr "輸入值不是非負數" #: libraries/config/FormDisplay.class.php:85 #: libraries/config/validate.lib.php:409 msgid "Not a valid port number" -msgstr "錯誤的Port編號" +msgstr "錯誤的連結埠" #: libraries/config/FormDisplay.class.php:86 #: libraries/config/FormDisplay.class.php:574 @@ -2252,7 +2265,7 @@ msgstr "輸入的值應小於等於 %s" #: libraries/config/FormDisplay.class.php:538 #, php-format msgid "Missing data for %s" -msgstr "在 %s 中遺失資料" +msgstr "在 %s 中丟失資料" #: libraries/config/FormDisplay.class.php:736 #: libraries/config/FormDisplay.class.php:740 @@ -2263,21 +2276,21 @@ msgstr "不可用" #: libraries/config/FormDisplay.class.php:741 #, php-format msgid "\"%s\" requires %s extension" -msgstr "「%s」功能需要 %s 元件" +msgstr "“%s”功能需要 %s 外掛" #: libraries/config/FormDisplay.class.php:755 #, php-format msgid "import will not work, missing function (%s)" -msgstr "缺少函數 (%s),導入資料功能無效" +msgstr "缺少函數 (%s),匯入功能無效" #: libraries/config/FormDisplay.class.php:759 #, php-format msgid "export will not work, missing function (%s)" -msgstr "缺少函數 (%s),導出資料功能無效" +msgstr "缺少函數 (%s),匯出功能無效" #: libraries/config/FormDisplay.class.php:766 msgid "SQL Validator is disabled" -msgstr "SQL 驗證已停用" +msgstr "SQL 檢驗器已停用" #: libraries/config/FormDisplay.class.php:773 msgid "SOAP extension not found" @@ -2290,7 +2303,7 @@ msgstr "最大 %s" #: libraries/config/FormDisplay.tpl.php:173 msgid "This setting is disabled, it will not be applied to your configuration" -msgstr "此設定已禁用,無法套用到你的設定中" +msgstr "此設定已停用,不會套用到您的設定中" #: libraries/config/FormDisplay.tpl.php:173 libraries/relation.lib.php:89 #: libraries/relation.lib.php:96 pmd_relation_new.php:68 @@ -2303,23 +2316,23 @@ msgid "Set value: %s" msgstr "設定值: %s" #: libraries/config/FormDisplay.tpl.php:253 -#: libraries/config/messages.inc.php:355 +#: libraries/config/messages.inc.php:354 msgid "Restore default value" msgstr "還原預設值" #: libraries/config/FormDisplay.tpl.php:269 msgid "Allow users to customize this value" -msgstr "允許使用者自定資料" +msgstr "允許使用者自訂該值" #: libraries/config/FormDisplay.tpl.php:333 #: libraries/schema/User_Schema.class.php:470 prefs_manage.php:320 #: prefs_manage.php:325 tbl_change.php:1103 msgid "Reset" -msgstr "重設" +msgstr "重置" #: libraries/config/messages.inc.php:17 msgid "Improves efficiency of screen refresh" -msgstr "提高更新效率" +msgstr "提高重新整理效率" #: libraries/config/messages.inc.php:18 msgid "Enable Ajax" @@ -2328,7 +2341,7 @@ msgstr "啟用 Ajax" #: libraries/config/messages.inc.php:19 msgid "" "If enabled user can enter any MySQL server in login form for cookie auth" -msgstr "如果啟用,使用者可以在 cookie 認證方式中輸入任意 MySQL 伺服器" +msgstr "如果啓用,使用者可以在 cookie 認證方式中輸入任意 MySQL 伺服器" #: libraries/config/messages.inc.php:20 msgid "Allow login to any MySQL server" @@ -2340,8 +2353,8 @@ msgid "" "inside a frame, and is a potential [strong]security hole[/strong] allowing " "cross-frame scripting attacks" msgstr "" -"開啟這個功能將允許其它不同網域的網頁透過頁框嵌入使用 phpMyAdmin,這將允許潛在" -"的跨框架腳本攻擊[strong]安全漏洞[/strong]" +"開啓這個功能將允許其它域的頁面透過框架調用 phpMyAdmin,這將允許潛在的跨框架腳" +"本攻擊[strong]安全漏洞[/strong]" #: libraries/config/messages.inc.php:22 msgid "Allow third party framing" @@ -2349,41 +2362,41 @@ msgstr "允許第三方框架" #: libraries/config/messages.inc.php:23 msgid "Show "Drop database" link to normal users" -msgstr "顯示 [刪除資料庫] 連結給普通使用者" +msgstr "顯示 "刪除資料庫" 連結給普通使用者" #: libraries/config/messages.inc.php:24 msgid "" "Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] " "authentication" -msgstr "在cookie認證方式下用於加密 cookies 的加密字串" +msgstr "在 [kbd]cookie[/kbd] 認證方式下用於加密 cookies 的短語密碼" #: libraries/config/messages.inc.php:25 msgid "Blowfish secret" -msgstr "加密字串" +msgstr "短語密碼" #: libraries/config/messages.inc.php:26 msgid "Highlight selected rows" -msgstr "醒目顯示選取的資料行" +msgstr "醒目提示選中的行" #: libraries/config/messages.inc.php:27 msgid "Row marker" -msgstr "標記資料行" +msgstr "行標記" #: libraries/config/messages.inc.php:28 msgid "Highlight row pointed by the mouse cursor" -msgstr "醒目顯示滑鼠指標停留的資料行" +msgstr "醒目提示鼠標指標所在的行" #: libraries/config/messages.inc.php:29 msgid "Highlight pointer" -msgstr "醒目指標" +msgstr "醒目提示指標" #: libraries/config/messages.inc.php:30 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for " "import and export operations" msgstr "" -"輸入及輸出資料時,開啟[a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] 壓縮功" -"能" +"允許在匯入和匯出時使用 [a@http://en.wikipedia.org/wiki/Bzip2]bzip2 (外鏈,英" +"文)[/a] 壓縮" #: libraries/config/messages.inc.php:31 msgid "Bzip2" @@ -2395,41 +2408,40 @@ 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" -msgstr "編輯CHAR 資料欄位" +msgstr "編輯 CHAR 類型欄位" #: libraries/config/messages.inc.php:34 msgid "Number of columns for CHAR/VARCHAR textareas" -msgstr "CHAR/VARCHAR欄位輸入區塊的列數" +msgstr "CHAR/VARCHAR 文字框的列數" #: libraries/config/messages.inc.php:35 msgid "CHAR textarea columns" -msgstr "CHAR 欄位輸入區塊" +msgstr "CHAR 文字框列" #: libraries/config/messages.inc.php:36 msgid "Number of rows for CHAR/VARCHAR textareas" -msgstr "CHAR/VARCHAR欄位輸入區塊的行數" +msgstr "CHAR/VARCHAR 文字框的行數" #: libraries/config/messages.inc.php:37 msgid "CHAR textarea rows" -msgstr "CHAR 輸入區塊資料行" +msgstr "CHAR 文字框行" #: libraries/config/messages.inc.php:38 msgid "Check config file permissions" -msgstr "檢查設定檔案文件的權限" +msgstr "檢查設定檔案權限" #: libraries/config/messages.inc.php:39 msgid "" "Compress gzip/bzip2 exports on the fly without the need for much memory; if " "you encounter problems with created gzip/bzip2 files disable this feature" msgstr "" -"使用較少的記憶體進行gzip/bzip2即時壓縮。如果建立壓縮檔按時發生錯誤,請關閉此" -"選項。" +"使用較少的記憶體進行 gzip/bzip2 即時壓縮。如果建立壓縮檔案時發生錯誤,請停用" +"該選項" #: libraries/config/messages.inc.php:40 msgid "Compress on the fly" @@ -2444,15 +2456,15 @@ msgstr "設定檔案" msgid "" "Whether a warning ("Are your really sure...") should be displayed " "when you're about to lose data" -msgstr "當SQL命令將可能刪除資料時,是否顯示警告訊息:("您真的要...")" +msgstr "當查詢可能丟失資料時是否顯示警告 ("您真的要...")" #: libraries/config/messages.inc.php:43 msgid "Confirm DROP queries" -msgstr "警示確認刪除(DROP)命令" +msgstr "確認刪除 (DROP) 查詢" #: libraries/config/messages.inc.php:44 msgid "Debug SQL" -msgstr "SQL指令偵錯" +msgstr "除錯 SQL" #: libraries/config/messages.inc.php:45 msgid "Default display direction" @@ -2468,11 +2480,11 @@ msgstr "" #: libraries/config/messages.inc.php:47 msgid "Display direction for altering/creating columns" -msgstr "修改/新建欄位時的顯示模式" +msgstr "修改/建立欄位時的顯示模式" #: libraries/config/messages.inc.php:48 msgid "Tab that is displayed when entering a database" -msgstr "在進入資料庫頁籤時預設的顯示頁面" +msgstr "在進入資料庫標籤時預設顯示的頁面" #: libraries/config/messages.inc.php:49 msgid "Default database tab" @@ -2480,27 +2492,27 @@ msgstr "預設資料庫頁籤" #: libraries/config/messages.inc.php:50 msgid "Tab that is displayed when entering a server" -msgstr "在進入伺服器頁籤時預設顯示的頁面" +msgstr "在進入伺服器標籤時預設顯示的頁面" #: libraries/config/messages.inc.php:51 msgid "Default server tab" -msgstr "預設伺服器頁籤" +msgstr "預設伺服器標籤" #: libraries/config/messages.inc.php:52 msgid "Tab that is displayed when entering a table" -msgstr "在進入資料表頁籤時預設顯示的頁面" +msgstr "在進入資料表標籤時預設顯示的頁面" #: libraries/config/messages.inc.php:53 msgid "Default table tab" -msgstr "預設資料表頁籤" +msgstr "預設資料表標籤" #: libraries/config/messages.inc.php:54 msgid "Show binary contents as HEX by default" -msgstr "預設以十六進位顯示二進位內容" +msgstr "預設以十六進制顯示二進制內容" #: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:590 msgid "Show binary contents as HEX" -msgstr "以十六進位顯示二進位內容" +msgstr "以十六進制顯示二進制內容" #: libraries/config/messages.inc.php:56 msgid "Show database listing as a list instead of a drop down" @@ -2508,19 +2520,19 @@ msgstr "直接顯示資料庫列表而不使用下拉選單" #: libraries/config/messages.inc.php:57 msgid "Display databases as a list" -msgstr "將資料庫用列表方式顯示" +msgstr "顯示資料庫爲列表" #: libraries/config/messages.inc.php:58 msgid "Show server listing as a list instead of a drop down" -msgstr "直接顯示伺服器列表,而不使用下拉選單" +msgstr "直接顯示伺服器列表而不使用下拉選單" #: libraries/config/messages.inc.php:59 msgid "Display servers as a list" -msgstr "將伺服器用列表方式顯示" +msgstr "顯示伺服器爲列表" #: libraries/config/messages.inc.php:60 msgid "Edit SQL queries in popup window" -msgstr "在新的彈出視窗中編輯SQL指令" +msgstr "在新視窗中編輯 SQL 查詢" #: libraries/config/messages.inc.php:61 msgid "Edit in window" @@ -2536,17 +2548,17 @@ msgstr "收集錯誤" #: libraries/config/messages.inc.php:64 msgid "Show icons for warning, error and information messages" -msgstr "在警告、錯誤和訊息上顯示圖示" +msgstr "在警告、錯誤和資訊上顯示圖示" #: libraries/config/messages.inc.php:65 msgid "Iconic errors" -msgstr "圖示錯誤" +msgstr "錯誤圖示" #: libraries/config/messages.inc.php:66 msgid "" "Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no " "limit)" -msgstr "設定指令最長執行時間 (單位:秒,[kbd]0[/kbd] 為不限制)" +msgstr "設定指令最大運行時間 (單位:秒,[kbd]0[/kbd] 爲不限制)" #: libraries/config/messages.inc.php:67 msgid "Maximum execution time" @@ -2558,7 +2570,7 @@ msgstr "另存檔案" #: libraries/config/messages.inc.php:69 libraries/config/messages.inc.php:237 msgid "Character set of the file" -msgstr "文字編碼檔案:" +msgstr "檔案字集" #: libraries/config/messages.inc.php:70 libraries/config/messages.inc.php:86 #: tbl_printview.php:373 tbl_structure.php:831 @@ -2579,7 +2591,7 @@ msgstr "壓縮" #: libraries/export/odt.php:57 libraries/export/texytext.php:27 #: libraries/export/xls.php:24 libraries/export/xlsx.php:24 msgid "Put columns names in the first row" -msgstr "將欄位名稱放在首行" +msgstr "首行儲存欄位名稱" #: libraries/config/messages.inc.php:73 libraries/config/messages.inc.php:239 #: libraries/config/messages.inc.php:246 libraries/import/csv.php:75 @@ -2599,11 +2611,11 @@ msgstr "跳脫字元使用:" #: libraries/config/messages.inc.php:140 libraries/config/messages.inc.php:143 #: libraries/config/messages.inc.php:145 libraries/export/texytext.php:26 msgid "Replace NULL by" -msgstr "將 NULL 取代為" +msgstr "將 NULL 替換爲" #: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:82 msgid "Remove CRLF characters within columns" -msgstr "刪除欄位中的換行符號" +msgstr "刪除欄位中的回車換行符號" #: libraries/config/messages.inc.php:77 libraries/config/messages.inc.php:243 #: libraries/config/messages.inc.php:251 libraries/import/csv.php:62 @@ -2642,12 +2654,12 @@ msgstr "轉存資料表" #: libraries/config/messages.inc.php:90 libraries/export/latex.php:31 msgid "Include table caption" -msgstr "包括資料表標題" +msgstr "包含表的標題" #: libraries/config/messages.inc.php:93 libraries/config/messages.inc.php:99 #: libraries/export/latex.php:49 libraries/export/latex.php:73 msgid "Table caption" -msgstr "資料表標題" +msgstr "表的標題" #: libraries/config/messages.inc.php:94 libraries/config/messages.inc.php:100 msgid "Continued table caption" @@ -2656,7 +2668,7 @@ msgstr "換頁時延續資料表標題" #: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101 #: libraries/export/latex.php:53 libraries/export/latex.php:77 msgid "Label key" -msgstr "標記鍵名" +msgstr "關鍵標籤" #: libraries/config/messages.inc.php:96 libraries/config/messages.inc.php:108 #: libraries/config/messages.inc.php:132 libraries/export/odt.php:325 @@ -2671,7 +2683,7 @@ msgstr "關聯" #: libraries/config/messages.inc.php:103 msgid "Export method" -msgstr "輸出方式" +msgstr "匯出方式" #: libraries/config/messages.inc.php:112 libraries/config/messages.inc.php:114 msgid "Save on server" @@ -2680,7 +2692,7 @@ msgstr "儲存在伺服器上" #: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:115 #: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221 msgid "Overwrite existing file(s)" -msgstr "覆寫已存在檔案" +msgstr "覆蓋已有檔案" #: libraries/config/messages.inc.php:116 msgid "Remember file name template" @@ -2693,7 +2705,7 @@ msgstr "在資料表名稱及欄位名稱使用反引號(`)" #: libraries/config/messages.inc.php:119 libraries/config/messages.inc.php:258 #: libraries/display_export.lib.php:353 msgid "SQL compatibility mode" -msgstr "SQL 兼容模式" +msgstr "SQL 相容模式" #: libraries/config/messages.inc.php:120 libraries/config/messages.inc.php:130 msgid "Syntax to use when inserting data" @@ -2701,11 +2713,11 @@ msgstr "在插入資料時使用的語法" #: libraries/config/messages.inc.php:121 msgid "Creation/Update/Check dates" -msgstr "建立/更新/檢查 日期" +msgstr "建立/更新/檢查日期" #: libraries/config/messages.inc.php:122 msgid "Use delayed inserts" -msgstr "使用延遲式新增" +msgstr "使用延遲插入" #: libraries/config/messages.inc.php:123 libraries/export/sql.php:53 msgid "Disable foreign key checks" @@ -2713,7 +2725,7 @@ msgstr "關閉外鍵 (Foreign Key) 檢查" #: libraries/config/messages.inc.php:126 msgid "Use hexadecimal for BLOB" -msgstr "BLOB 資料使用16進位" +msgstr "爲 BLOB 欄位使用16進制 (HEX)" #: libraries/config/messages.inc.php:128 msgid "Use ignore inserts" @@ -2737,7 +2749,7 @@ msgstr "以協和標準時間 (UTC) 輸出時間" #: libraries/config/messages.inc.php:146 msgid "Force secured connection while using phpMyAdmin" -msgstr "強制使用安全連線方式進入 phpMyAdmin" +msgstr "強制使用安全連線訪問 phpMyAdmin" #: libraries/config/messages.inc.php:147 msgid "Force SSL connection" @@ -2748,20 +2760,20 @@ msgid "" "Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is " "the referenced data, [kbd]id[/kbd] is the key value" msgstr "" -"外鍵下拉選單中選項的排序順序,[kbd]content[/kbd] 為關聯內容,[kbd]id[/kbd] 為" -"鍵值" +"外部鍵下拉選單中選項的排序順序,[kbd]content[/kbd] 爲關聯內容,[kbd]id[/kbd] " +"爲鍵值" #: libraries/config/messages.inc.php:149 msgid "Foreign key dropdown order" -msgstr "外鍵下拉選單順序" +msgstr "外部鍵下拉選單順序" #: libraries/config/messages.inc.php:150 msgid "A dropdown will be used if fewer items are present" -msgstr "下拉框中選項數量的限制" +msgstr "下拉選單中選項個數的限制" #: libraries/config/messages.inc.php:151 msgid "Foreign key limit" -msgstr "外鍵限制" +msgstr "外部鍵限制" #: libraries/config/messages.inc.php:152 msgid "Browse mode" @@ -2769,7 +2781,7 @@ msgstr "瀏覽模式" #: libraries/config/messages.inc.php:153 msgid "Customize browse mode" -msgstr "自定瀏覽模式" +msgstr "自訂瀏覽模式" #: libraries/config/messages.inc.php:155 libraries/config/messages.inc.php:157 #: libraries/config/messages.inc.php:174 libraries/config/messages.inc.php:185 @@ -2778,13 +2790,13 @@ msgstr "自定瀏覽模式" msgid "Customize default options" msgstr "自定預設選項" -#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:236 -#: libraries/config/setup.forms.php:315 -#: libraries/config/user_preferences.forms.php:138 -#: libraries/config/user_preferences.forms.php:215 libraries/export/csv.php:16 +#: libraries/config/messages.inc.php:156 libraries/config/setup.forms.php:235 +#: libraries/config/setup.forms.php:314 +#: libraries/config/user_preferences.forms.php:137 +#: libraries/config/user_preferences.forms.php:214 libraries/export/csv.php:16 #: libraries/import/csv.php:21 msgid "CSV" -msgstr "CSV 資料" +msgstr "CSV" #: libraries/config/messages.inc.php:158 msgid "Developer" @@ -2800,15 +2812,15 @@ msgstr "編輯模式" #: libraries/config/messages.inc.php:161 msgid "Customize edit mode" -msgstr "自定編輯模式" +msgstr "自訂編輯模式" #: libraries/config/messages.inc.php:163 msgid "Export defaults" -msgstr "輸出選項" +msgstr "匯出選項" #: libraries/config/messages.inc.php:164 msgid "Customize default export options" -msgstr "自定輸出預設值" +msgstr "自訂匯出選項的預設值" #: libraries/config/messages.inc.php:165 libraries/config/messages.inc.php:207 #: setup/frames/menu.inc.php:16 @@ -2831,19 +2843,19 @@ msgstr "輸入" #: libraries/config/messages.inc.php:169 msgid "Import defaults" -msgstr "輸入檔案" +msgstr "匯入選項" #: libraries/config/messages.inc.php:170 msgid "Customize default common import options" -msgstr "自定輸入選項的預設值" +msgstr "自訂匯入選項的預設值" #: libraries/config/messages.inc.php:171 msgid "Import / export" -msgstr "輸入 / 輸出" +msgstr "匯入 / 匯出" #: libraries/config/messages.inc.php:172 msgid "Set import and export directories and compression options" -msgstr "設定輸入和輸出資料夾以及壓縮選項" +msgstr "設定匯入和匯出資料夾以及壓縮選項" #: libraries/config/messages.inc.php:173 libraries/export/latex.php:26 msgid "LaTeX" @@ -2851,15 +2863,15 @@ msgstr "LaTeX" #: libraries/config/messages.inc.php:176 msgid "Databases display options" -msgstr "資料庫輸出選項" +msgstr "資料庫顯示選項" #: libraries/config/messages.inc.php:177 setup/frames/menu.inc.php:18 msgid "Navigation frame" -msgstr "導覽頁框" +msgstr "導覽框架" #: libraries/config/messages.inc.php:178 msgid "Customize appearance of the navigation frame" -msgstr "自定導覽頁框" +msgstr "自訂導覽框架" #: libraries/config/messages.inc.php:179 libraries/select_server.lib.php:42 #: setup/frames/index.inc.php:110 @@ -2876,7 +2888,7 @@ msgstr "資料表顯示選項" #: libraries/config/messages.inc.php:183 setup/frames/menu.inc.php:19 msgid "Main frame" -msgstr "主頁框" +msgstr "主框架" #: libraries/config/messages.inc.php:184 msgid "Microsoft Office" @@ -2904,8 +2916,8 @@ msgid "" "html#cfg_TitleTable]documentation[/a] for magic strings that can be used to " "get special values." msgstr "" -"設定瀏覽器標題欄所顯示的文字。參見[a@Documentation.html#cfg_TitleTable]文件[/" -"a]中關於可以取得特殊值的魔術字串符號。" +"設定瀏覽器標題欄所顯示的文字。參見[a@Documentation.html#cfg_TitleTable]檔案[/" +"a]中關於可以取得特殊值的魔術字元串" #: libraries/config/messages.inc.php:192 #: libraries/navigation_header.inc.php:83 @@ -2916,7 +2928,7 @@ msgstr "查詢視窗" #: libraries/config/messages.inc.php:193 msgid "Customize query window options" -msgstr "自定查詢視窗選項" +msgstr "自訂查詢視窗選項" #: libraries/config/messages.inc.php:194 msgid "Security" @@ -2926,7 +2938,7 @@ msgstr "安全" msgid "" "Please note that phpMyAdmin is just a user interface and its features do not " "limit MySQL" -msgstr "注意:phpMyAdmin 只是一個使用者介面,其設定不會對 MySQL 有任何限制" +msgstr "注意:phpMyAdmin 只是一個使用者接口,其功能不會對 MySQL 有限制" #: libraries/config/messages.inc.php:196 msgid "Basic settings" @@ -2948,15 +2960,15 @@ msgstr "伺服器設定" msgid "" "Advanced server configuration, do not change these options unless you know " "what they are for" -msgstr "進階伺服器設定,如果你不知道這些是什麼,請不要修改" +msgstr "進階伺服器設定,如果您不知道這些是什麼,請不要修改" #: libraries/config/messages.inc.php:201 msgid "Enter server connection parameters" -msgstr "伺服器連接參數" +msgstr "伺服器連線參數" #: libraries/config/messages.inc.php:202 msgid "Configuration storage" -msgstr "儲存設定" +msgstr "進階功能" #: libraries/config/messages.inc.php:203 msgid "" @@ -2964,7 +2976,7 @@ msgid "" "features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration " "storage[/a] in documentation" msgstr "" -"設定 phpMyAdmin 進階功能,參見文件[a@Documentation.html#linked-tables]" +"設定 phpMyAdmin 進階功能,參見檔案[a@Documentation.html#linked-tables]" "phpMyAdmin 進階功能[/a]" #: libraries/config/messages.inc.php:204 @@ -2975,7 +2987,7 @@ msgstr "修改追蹤" msgid "" "Tracking of changes made in database. Requires the phpMyAdmin configuration " "storage." -msgstr "追蹤資料庫的修改。需要開啟 phpMyAdmin 進階功能。" +msgstr "追蹤資料庫的修改。需要 phpMyAdmin 進階功能" #: libraries/config/messages.inc.php:206 msgid "Customize export options" @@ -2983,20 +2995,20 @@ msgstr "自定輸出選項" #: libraries/config/messages.inc.php:208 msgid "Customize import defaults" -msgstr "自定輸入預設值" +msgstr "自訂匯入選項" #: libraries/config/messages.inc.php:209 msgid "Customize navigation frame" -msgstr "自定導覽頁框" +msgstr "自訂導覽框架" #: libraries/config/messages.inc.php:210 msgid "Customize main frame" -msgstr "自定主頁框" +msgstr "自訂主框架" #: libraries/config/messages.inc.php:211 libraries/config/messages.inc.php:216 #: setup/frames/menu.inc.php:17 msgid "SQL queries" -msgstr "SQL 語法" +msgstr "SQL 查詢" #: libraries/config/messages.inc.php:213 msgid "SQL Query box" @@ -3004,7 +3016,7 @@ msgstr "SQL 語法輸入框" #: libraries/config/messages.inc.php:214 msgid "Customize links shown in SQL Query boxes" -msgstr "自定顯示在 SQL 語法輸入框中的連結" +msgstr "自訂顯示在 SQL 查詢框中的連結" #: libraries/config/messages.inc.php:217 msgid "SQL queries settings" @@ -3012,7 +3024,7 @@ msgstr "SQL 語法設定" #: libraries/config/messages.inc.php:218 msgid "SQL Validator" -msgstr "SQL 歷程" +msgstr "SQL 檢驗器" #: libraries/config/messages.inc.php:219 msgid "" @@ -3021,9 +3033,9 @@ msgid "" "strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], " "Copyright 2002 Upright Database Technology. All rights reserved.[/em]" msgstr "" -"若要使用 SQL 驗證服務,請注意[strong]所有 SQL 語句將出於統計目的而被匿名存儲" -"[/strong]。[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL 驗證服務[/a]," -"版權所有 2002 Upright Database Technology. 保留所有權利。[/em]" +"若要使用 SQL 檢驗服務,請注意[strong]所有 SQL 指令將出於統計目的而被匿名儲存" +"[/strong]。[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL 檢驗器[/a],版" +"權所有 2002 Upright Database Technology. 保留所有權利。[/em]" #: libraries/config/messages.inc.php:220 msgid "Startup" @@ -3031,7 +3043,7 @@ msgstr "起始頁" #: libraries/config/messages.inc.php:221 msgid "Customize startup page" -msgstr "自定起始頁" +msgstr "自訂起始頁" #: libraries/config/messages.inc.php:222 msgid "Tabs" @@ -3039,11 +3051,11 @@ msgstr "頁籤" #: libraries/config/messages.inc.php:223 msgid "Choose how you want tabs to work" -msgstr "選擇你希望頁籤如何運作" +msgstr "選擇您想讓標籤怎樣工作" #: libraries/config/messages.inc.php:224 msgid "Text fields" -msgstr "文字輸入" +msgstr "文字欄位" #: libraries/config/messages.inc.php:225 msgid "Customize text input fields" @@ -3051,7 +3063,7 @@ msgstr "自定文字輸入框" #: libraries/config/messages.inc.php:226 libraries/export/texytext.php:17 msgid "Texy! text" -msgstr "Texy! 格式文字" +msgstr "Texy! 文字" #: libraries/config/messages.inc.php:228 msgid "Warnings" @@ -3059,15 +3071,14 @@ msgstr "警告" #: libraries/config/messages.inc.php:229 msgid "Disable some of the warnings shown by phpMyAdmin" -msgstr "關閉 phpMyAdmin 發出的部分警告" +msgstr "禁止部分 phpMyAdmin 發出的警告" #: libraries/config/messages.inc.php:230 msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" msgstr "" -"允許在輸入和輸出資料時使用 [a@http://en.wikipedia.org/wiki/Gzip]gzip (外連," -"英文)[/a] 壓縮" +"允許在匯入和匯出時使用 [a@http://en.wikipedia.org/wiki/Gzip]gzip [/a] 壓縮" #: libraries/config/messages.inc.php:231 msgid "GZip" @@ -3082,12 +3093,12 @@ msgid "" "If enabled, phpMyAdmin continues computing multiple-statement queries even " "if one of the queries failed" msgstr "" -"如果開啟此選項,在執行多語句查詢的時候,即使有一條或多條語句發生錯誤," -"phpMyAdmin 也會繼續執行其他的語句" +"如果開啟此選項,在執行多指令查詢的時候,即使有一條或多條指令發生錯誤," +"phpMyAdmin 也會繼續執行其他的指令" #: libraries/config/messages.inc.php:234 msgid "Ignore multiple statement errors" -msgstr "忽略執行多指令時的語句錯誤" +msgstr "忽略多個指令錯誤" #: libraries/config/messages.inc.php:235 msgid "" @@ -3095,8 +3106,8 @@ msgid "" "This might be good way to import large files, however it can break " "transactions." msgstr "" -"允許開啟指令檢查將可能花費較長的時間。這可能會導致輸入資料中段,但在輸入大量" -"資料時還是一個推薦的方法。" +"該功能作用於在匯入時指令檢測到可能需要花費很長時間。儘管這會中斷交易,但在導" +"入大檔案時是個很好的方法" #: libraries/config/messages.inc.php:236 msgid "Partial import: allow interrupt" @@ -3105,24 +3116,23 @@ msgstr "部分匯入:允許中斷" #: libraries/config/messages.inc.php:241 libraries/config/messages.inc.php:248 #: libraries/import/csv.php:26 libraries/import/ldi.php:39 msgid "Do not abort on INSERT error" -msgstr "不在發生新增錯誤時中斷" +msgstr "不在發生插入錯誤時中斷" #: libraries/config/messages.inc.php:242 libraries/config/messages.inc.php:250 #: libraries/import/csv.php:25 libraries/import/ldi.php:38 msgid "Replace table data with file" -msgstr "以檔案取代資料表資料" +msgstr "將表的資料用此檔案替換" #: libraries/config/messages.inc.php:244 msgid "" "Default format; be aware that this list depends on location (database, " "table) and only SQL is always available" msgstr "" -"預設格式。此列表將依據所在位置(資料庫或資料表)不同而有所改變,只有 SQL 指令是" -"通用的" +"預設格式,此列表根據位置(資料庫或資料表)不同將有所改變,只有 SQL 總是可用的" #: libraries/config/messages.inc.php:245 msgid "Format of imported file" -msgstr "載入檔案格式" +msgstr "匯入檔案的格式" #: libraries/config/messages.inc.php:249 libraries/import/ldi.php:45 msgid "Use LOCAL keyword" @@ -3135,15 +3145,15 @@ msgstr "首行資料為欄位名稱" #: libraries/config/messages.inc.php:253 libraries/import/ods.php:27 msgid "Do not import empty rows" -msgstr "不匯入空的資料行" +msgstr "不匯入空行" #: libraries/config/messages.inc.php:254 msgid "Import currencies ($5.00 to 5.00)" -msgstr "匯入貨幣格式 (開啟此功能 $5.00 將被匯入為 5.00)" +msgstr "匯入貨幣 ($5.00 將被匯入爲 5.00)" #: libraries/config/messages.inc.php:255 msgid "Import percentages as proper decimals (12.00% to .12)" -msgstr "將百分比匯入為小數點格式 (開啟此功能 12.00% 將被匯入為 .12)" +msgstr "匯入百分數爲小數 (12.00% 將被匯入爲 .12)" #: libraries/config/messages.inc.php:256 msgid "Number of queries to skip from start" @@ -3151,7 +3161,7 @@ msgstr "略過指定行數的資料" #: libraries/config/messages.inc.php:257 msgid "Partial import: skip queries" -msgstr "部分匯入:忽略指令" +msgstr "部分匯入:跳過查詢" #: libraries/config/messages.inc.php:259 msgid "Do not use AUTO_INCREMENT for zero values" @@ -3159,104 +3169,104 @@ msgstr "請勿為數值為零的資料加上 AUTO_INCREMENT 屬性" #: libraries/config/messages.inc.php:262 msgid "Initial state for sliders" -msgstr "滑動顯示初始狀態" +msgstr "滑塊原始狀態" #: libraries/config/messages.inc.php:263 msgid "How many rows can be inserted at one time" -msgstr "可一次新增多少資料列" +msgstr "一次可以插入的行數" #: libraries/config/messages.inc.php:264 msgid "Number of inserted rows" -msgstr "新增的資料列數" +msgstr "插入的行數" #: libraries/config/messages.inc.php:265 msgid "Target for quick access icon" -msgstr "捷徑圖示的目標" +msgstr "快速訪問圖示的目標" #: libraries/config/messages.inc.php:266 msgid "Show logo in left frame" -msgstr "在左側頁框顯示LOGO" +msgstr "在左側框架中顯示 logo" #: libraries/config/messages.inc.php:267 msgid "Display logo" -msgstr "顯示LOGO" +msgstr "顯示 logo" #: libraries/config/messages.inc.php:268 msgid "Display server choice at the top of the left frame" -msgstr "在左側頁框頂端顯示伺服器選單" +msgstr "在左側框架頂部顯示伺服器選擇" #: libraries/config/messages.inc.php:269 msgid "Display servers selection" -msgstr "顯示伺服器選單" +msgstr "顯示伺服器選擇" #: libraries/config/messages.inc.php:270 msgid "Minimum number of tables to display the table filter box" -msgstr "" +msgstr "顯示過濾框的最少資料表數量" #: libraries/config/messages.inc.php:271 msgid "String that separates databases into different tree levels" -msgstr "" +msgstr "將資料庫分爲不同樹的分隔字元串" #: libraries/config/messages.inc.php:272 msgid "Database tree separator" -msgstr "" +msgstr "樹狀資料庫分隔符號" #: libraries/config/messages.inc.php:273 msgid "" "Only light version; display databases in a tree (determined by the separator " "defined below)" -msgstr "" +msgstr "只使用輕量級版本,以樹形顯示資料庫 (以下面的樹形分隔符號來顯示)" #: libraries/config/messages.inc.php:274 msgid "Display databases in a tree" -msgstr "" +msgstr "以樹形顯示資料庫" #: libraries/config/messages.inc.php:275 msgid "Disable this if you want to see all databases at once" -msgstr "" +msgstr "如果想一次性瀏覽所有資料庫,則停用該選項" #: libraries/config/messages.inc.php:276 #, fuzzy msgid "Use light version" -msgstr "MySQL 客戶端版本" +msgstr "使用輕量級版本" #: libraries/config/messages.inc.php:277 msgid "Maximum table tree depth" -msgstr "" +msgstr "資料表樹最大深度" #: libraries/config/messages.inc.php:278 msgid "String that separates tables into different tree levels" -msgstr "" +msgstr "將表分爲不同樹的分隔符號" #: libraries/config/messages.inc.php:279 msgid "Table tree separator" -msgstr "" +msgstr "樹形表分隔符號" #: libraries/config/messages.inc.php:280 msgid "URL where logo in the navigation frame will point to" -msgstr "" +msgstr "導覽框架中 logo 的網址" #: libraries/config/messages.inc.php:281 msgid "Logo link URL" -msgstr "" +msgstr "Logo 連結網址" #: libraries/config/messages.inc.php:282 msgid "" "Open the linked page in the main window ([kbd]main[/kbd]) or in a new one " "([kbd]new[/kbd])" -msgstr "" +msgstr "在主視窗 ([kbd]main[/kbd]) 或新視窗 ([kbd]new[/kbd]) 開啟目標頁面" #: libraries/config/messages.inc.php:283 msgid "Logo link target" -msgstr "" +msgstr "Logo 連結目標" #: libraries/config/messages.inc.php:284 msgid "Highlight server under the mouse cursor" -msgstr "" +msgstr "醒目提示顯示鼠標所在位置的伺服器" #: libraries/config/messages.inc.php:285 msgid "Enable highlighting" -msgstr "" +msgstr "啓用醒目提示" #: libraries/config/messages.inc.php:286 msgid "Maximum number of recently used tables; set 0 to disable" @@ -3270,20 +3280,20 @@ msgstr "未追蹤的資料表" #: libraries/config/messages.inc.php:288 msgid "Use less graphically intense tabs" -msgstr "" +msgstr "不在標簽上使用背景" #: libraries/config/messages.inc.php:289 msgid "Light tabs" -msgstr "" +msgstr "簡化標籤" #: libraries/config/messages.inc.php:290 msgid "" "Maximum number of characters shown in any non-numeric column on browse view" -msgstr "" +msgstr "瀏覽非數字欄位時所顯示的最大字元數" #: libraries/config/messages.inc.php:291 msgid "Limit column characters" -msgstr "" +msgstr "限制欄位字元數" #: libraries/config/messages.inc.php:292 msgid "" @@ -3291,20 +3301,22 @@ msgid "" "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" +"如果設爲 TRUE,在登出時將會刪除所有伺服器的 Cookies。如果設爲 FALSE,在您登錄" +"多臺伺服器的時候,容易忘記登出登錄" #: libraries/config/messages.inc.php:293 msgid "Delete all cookies on logout" -msgstr "" +msgstr "登出時刪除所有 cookies" #: libraries/config/messages.inc.php:294 msgid "" "Define whether the previous login should be recalled or not in cookie " "authentication mode" -msgstr "" +msgstr "定義在 cookie 認證方式中是否顯示上次登錄的帳號" #: libraries/config/messages.inc.php:295 msgid "Recall user name" -msgstr "" +msgstr "顯示上次登錄的帳號" #: libraries/config/messages.inc.php:296 msgid "" @@ -3313,51 +3325,54 @@ msgid "" "and will be deleted as soon as you close the browser window. This is " "recommended for non-trusted environments." msgstr "" +"設定登錄 Cookies 應該儲存多長時間 (單位:秒)。若設定爲 0,Cookies 的有效期將" +"爲瀏覽器程序,在關閉瀏覽器之後 Cookies 就會被刪除。預設值爲0。在不安全的環境" +"下建議使用預設值" #: libraries/config/messages.inc.php:297 msgid "Login cookie store" -msgstr "" +msgstr "登錄 cookie 儲存" #: libraries/config/messages.inc.php:298 msgid "Define how long (in seconds) a login cookie is valid" -msgstr "" +msgstr "定義登錄 cookie 的有效期 (單位:秒)" #: libraries/config/messages.inc.php:299 msgid "Login cookie validity" -msgstr "" +msgstr "登錄 cookie 有效期" #: libraries/config/messages.inc.php:300 msgid "Double size of textarea for LONGTEXT columns" -msgstr "" +msgstr "放大一倍 LONGTEXT 欄位的輸入框" #: libraries/config/messages.inc.php:301 msgid "Bigger textarea for LONGTEXT" -msgstr "" +msgstr "放大 LONGTEXT 欄位的輸入框" #: libraries/config/messages.inc.php:302 msgid "Use icons on main page" -msgstr "" +msgstr "在首頁上使用圖示" #: libraries/config/messages.inc.php:303 msgid "Maximum number of characters used when a SQL query is displayed" -msgstr "" +msgstr "顯示 SQL 指令時可以使用的最多字元數" #: libraries/config/messages.inc.php:304 msgid "Maximum displayed SQL length" -msgstr "" +msgstr "顯示 SQL 指令的最大長度" #: libraries/config/messages.inc.php:305 libraries/config/messages.inc.php:310 -#: libraries/config/messages.inc.php:338 +#: libraries/config/messages.inc.php:337 msgid "Users cannot set a higher value" -msgstr "" +msgstr "使用者不能設定更大的值" #: libraries/config/messages.inc.php:306 msgid "Maximum number of databases displayed in left frame and database list" -msgstr "" +msgstr "在左欄和資料庫列資料表中最多顯示的資料庫個數" #: libraries/config/messages.inc.php:307 msgid "Maximum databases" -msgstr "" +msgstr "最大資料庫數量" #: libraries/config/messages.inc.php:308 msgid "" @@ -3365,394 +3380,404 @@ msgid "" "contains more rows, "Previous" and "Next" links will be " "shown." msgstr "" +"瀏覽一個結果集時一次顯示的最多行數。如果結果集超過此值,將會顯示 "上一頁" +"" 和 "下一頁" 的連結" #: libraries/config/messages.inc.php:309 msgid "Maximum number of rows to display" -msgstr "" +msgstr "顯示的最多行數" #: libraries/config/messages.inc.php:311 msgid "Maximum number of tables displayed in table list" -msgstr "" +msgstr "在資料表列資料表中最多顯示的資料表個數" #: libraries/config/messages.inc.php:312 msgid "Maximum tables" -msgstr "" +msgstr "最大資料表數量" #: libraries/config/messages.inc.php:313 msgid "" "Disable the default warning that is displayed if mcrypt is missing for " "cookie authentication" -msgstr "" +msgstr "禁止顯示在使用 cookie 認證時缺少 mcrypt 的預設警告" #: libraries/config/messages.inc.php:314 msgid "mcrypt warning" -msgstr "" +msgstr "mcrypt 警告" #: libraries/config/messages.inc.php:315 msgid "" "The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] " "([kbd]0[/kbd] for no limit)" -msgstr "" +msgstr "一個指令可分配到的記憶體大小,例 [kbd]32MB[kbd] ([kbd]0[/kbd]爲不限制)" #: libraries/config/messages.inc.php:316 #, fuzzy msgid "Memory limit" -msgstr "資源限制" +msgstr "記憶體限制" #: libraries/config/messages.inc.php:317 msgid "These are Edit, Inline edit, Copy and Delete links" -msgstr "" +msgstr "它們是編輯、快速編輯、複製和刪除連結" #: libraries/config/messages.inc.php:318 -msgid "Show table row links on left side" +msgid "Where to show the table row links" msgstr "" #: libraries/config/messages.inc.php:319 -msgid "Show table row links on right side" -msgstr "" +msgid "Use natural order for sorting table and database names" +msgstr "爲資料庫和資料資料表名稱使用自然排序" #: libraries/config/messages.inc.php:320 -msgid "Use natural order for sorting table and database names" -msgstr "" - -#: libraries/config/messages.inc.php:321 #, fuzzy #| msgid "Alter table order by" msgid "Natural order" -msgstr "根據欄位內容排序記錄" +msgstr "自然排序" -#: libraries/config/messages.inc.php:322 libraries/config/messages.inc.php:332 +#: libraries/config/messages.inc.php:321 libraries/config/messages.inc.php:331 msgid "Use only icons, only text or both" -msgstr "" +msgstr "僅使用圖示、文字或都使用" + +#: libraries/config/messages.inc.php:322 +msgid "Iconic navigation bar" +msgstr "導覽列使用圖示" #: libraries/config/messages.inc.php:323 -msgid "Iconic navigation bar" -msgstr "" +msgid "use GZip output buffering for increased speed in HTTP transfers" +msgstr "使用 GZip 輸出快取以加快 HTTP 傳輸速度" #: libraries/config/messages.inc.php:324 -msgid "use GZip output buffering for increased speed in HTTP transfers" -msgstr "" +msgid "GZip output buffering" +msgstr "GZip 輸出快取" #: libraries/config/messages.inc.php:325 -msgid "GZip output buffering" -msgstr "" - -#: libraries/config/messages.inc.php:326 msgid "" "[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, " "DATETIME and TIMESTAMP, ascending order otherwise" msgstr "" +"[kbd]SMART[/kbd] - 如:對 TIME、DATE、DATETIME 和 TIMESTAMP 類型的欄位遞減排" +"序,其他欄位遞增" + +#: libraries/config/messages.inc.php:326 +msgid "Default sorting order" +msgstr "預設排序" #: libraries/config/messages.inc.php:327 -msgid "Default sorting order" -msgstr "" +msgid "Use persistent connections to MySQL databases" +msgstr "在連線到 MySQL 資料庫時使用持續連線" #: libraries/config/messages.inc.php:328 -msgid "Use persistent connections to MySQL databases" -msgstr "" +msgid "Persistent connections" +msgstr "持續連線" #: libraries/config/messages.inc.php:329 -msgid "Persistent connections" -msgstr "" - -#: libraries/config/messages.inc.php:330 msgid "" "Disable the default warning that is displayed on the database details " "Structure page if any of the required tables for the phpMyAdmin " "configuration storage could not be found" -msgstr "" +msgstr "禁止在缺少 phpMyAdmin 進階功能所需資料表時在資料庫結構頁中顯示預設警告" -#: libraries/config/messages.inc.php:331 +#: libraries/config/messages.inc.php:330 msgid "Missing phpMyAdmin configuration storage tables" -msgstr "" +msgstr "丟失 phpMyAdmin 進階功能資料表" + +#: libraries/config/messages.inc.php:332 +msgid "Iconic table operations" +msgstr "資料表操作顯示" #: libraries/config/messages.inc.php:333 -msgid "Iconic table operations" -msgstr "" +msgid "Disallow BLOB and BINARY columns from editing" +msgstr "禁止編輯 BLOB 和 BINARY 類型欄位" #: libraries/config/messages.inc.php:334 -msgid "Disallow BLOB and BINARY columns from editing" -msgstr "" +msgid "Protect binary columns" +msgstr "保護二進制欄位" #: libraries/config/messages.inc.php:335 -msgid "Protect binary columns" -msgstr "" - -#: libraries/config/messages.inc.php:336 msgid "" "Enable if you want DB-based query history (requires phpMyAdmin configuration " "storage). If disabled, this utilizes JS-routines to display query history " "(lost by window close)." msgstr "" +"允許使用基於資料庫的查詢歷史 (需要 phpMyAdmin 進階功能)。如果停用,將使用 " +"JS 程序來顯示查詢歷史 (關閉視窗即丟失)" -#: libraries/config/messages.inc.php:337 +#: libraries/config/messages.inc.php:336 msgid "Permanent query history" -msgstr "" +msgstr "持續查詢歷史" + +#: libraries/config/messages.inc.php:338 +msgid "How many queries are kept in history" +msgstr "記錄查詢歷史的數量" #: libraries/config/messages.inc.php:339 -msgid "How many queries are kept in history" -msgstr "" +msgid "Query history length" +msgstr "查詢歷史個數" #: libraries/config/messages.inc.php:340 -msgid "Query history length" -msgstr "" +msgid "Tab displayed when opening a new query window" +msgstr "開啟一個新查詢視窗時預設顯示的頁面" #: libraries/config/messages.inc.php:341 -msgid "Tab displayed when opening a new query window" -msgstr "" +msgid "Default query window tab" +msgstr "預設查詢視窗標籤" #: libraries/config/messages.inc.php:342 -msgid "Default query window tab" -msgstr "" +msgid "Query window height (in pixels)" +msgstr "查詢視窗高度 (單位:像素)" #: libraries/config/messages.inc.php:343 -msgid "Query window height (in pixels)" -msgstr "" +#, fuzzy +#| msgid "Query window" +msgid "Query window height" +msgstr "查詢視窗高度" #: libraries/config/messages.inc.php:344 #, fuzzy #| msgid "Query window" -msgid "Query window height" -msgstr "查詢視窗" +msgid "Query window width (in pixels)" +msgstr "查詢視窗寬度 (單位:像素)" #: libraries/config/messages.inc.php:345 #, fuzzy #| msgid "Query window" -msgid "Query window width (in pixels)" -msgstr "查詢視窗" +msgid "Query window width" +msgstr "查詢視窗寬度" #: libraries/config/messages.inc.php:346 -#, fuzzy -#| msgid "Query window" -msgid "Query window width" -msgstr "查詢視窗" +msgid "Select which functions will be used for character set conversion" +msgstr "選擇進行字集轉換時使用的函數" #: libraries/config/messages.inc.php:347 -msgid "Select which functions will be used for character set conversion" -msgstr "" +msgid "Recoding engine" +msgstr "記錄引擎" #: libraries/config/messages.inc.php:348 -msgid "Recoding engine" -msgstr "" - -#: libraries/config/messages.inc.php:349 msgid "When browsing tables, the sorting of each table is remembered" msgstr "" -#: libraries/config/messages.inc.php:350 +#: libraries/config/messages.inc.php:349 #, fuzzy #| msgid "Rename table to" msgid "Remember table's sorting" msgstr "將資料表改名為" -#: libraries/config/messages.inc.php:351 +#: libraries/config/messages.inc.php:350 msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature" -msgstr "" +msgstr "每 X 單元格重複表頭,要禁止此功能請設爲 [kbd]0[/kbd]" -#: libraries/config/messages.inc.php:352 +#: libraries/config/messages.inc.php:351 #, fuzzy #| msgid "Repair threads" msgid "Repeat headers" -msgstr "修復工作" +msgstr "重複表頭" + +#: libraries/config/messages.inc.php:352 +msgid "Show help button instead of Documentation text" +msgstr "顯示幫助按鈕代替檔案文字" #: libraries/config/messages.inc.php:353 -msgid "Show help button instead of Documentation text" -msgstr "" - -#: libraries/config/messages.inc.php:354 msgid "Show help button" -msgstr "" +msgstr "顯示幫助按鈕" + +#: libraries/config/messages.inc.php:355 +msgid "Directory where exports can be saved on server" +msgstr "伺服器上用來儲存匯出檔案的資料夾" #: libraries/config/messages.inc.php:356 -msgid "Directory where exports can be saved on server" -msgstr "" - -#: libraries/config/messages.inc.php:357 #, fuzzy msgid "Save directory" -msgstr "資料主目錄" +msgstr "儲存資料夾" + +#: libraries/config/messages.inc.php:357 +msgid "Leave blank if not used" +msgstr "不使用請留空" #: libraries/config/messages.inc.php:358 -msgid "Leave blank if not used" -msgstr "" +msgid "Host authorization order" +msgstr "主機認證模式" #: libraries/config/messages.inc.php:359 -msgid "Host authorization order" -msgstr "" +msgid "Leave blank for defaults" +msgstr "預設請留空" #: libraries/config/messages.inc.php:360 -msgid "Leave blank for defaults" -msgstr "" +msgid "Host authorization rules" +msgstr "主機認證規則" #: libraries/config/messages.inc.php:361 -msgid "Host authorization rules" -msgstr "" +msgid "Allow logins without a password" +msgstr "允許空密碼登錄" #: libraries/config/messages.inc.php:362 -msgid "Allow logins without a password" -msgstr "" +msgid "Allow root login" +msgstr "允許 root 使用者登錄" #: libraries/config/messages.inc.php:363 -msgid "Allow root login" -msgstr "" +msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" +msgstr "使用 HTTP 基本認證時顯示給使用者的提示資訊" #: libraries/config/messages.inc.php:364 -msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth" -msgstr "" +msgid "HTTP Realm" +msgstr "HTTP 提示資訊" #: libraries/config/messages.inc.php:365 -msgid "HTTP Realm" -msgstr "" - -#: libraries/config/messages.inc.php:366 msgid "" "The path for the config file for [a@http://swekey.com]SweKey hardware " "authentication[/a] (not located in your document root; suggested: /etc/" "swekey.conf)" msgstr "" +"[a@http://swekey.com]SweKey 硬件認證 [/a]的設定檔案路徑 (請勿置於您的檔案根資" +"料夾,推薦使用:/etc/swekey.conf)" + +#: libraries/config/messages.inc.php:366 +msgid "SweKey config file" +msgstr "SweKey 設定檔案" #: libraries/config/messages.inc.php:367 -msgid "SweKey config file" -msgstr "" - -#: libraries/config/messages.inc.php:368 msgid "Authentication method to use" -msgstr "" +msgstr "要使用的認證方式" -#: libraries/config/messages.inc.php:369 setup/frames/index.inc.php:126 +#: libraries/config/messages.inc.php:368 setup/frames/index.inc.php:126 msgid "Authentication type" -msgstr "" +msgstr "認證方式" -#: libraries/config/messages.inc.php:370 +#: libraries/config/messages.inc.php:369 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma_bookmark[/kbd]" msgstr "" +"不使用[a@http://wiki.phpmyadmin.net/pma/bookmark]書籤 [/a]功能請留空,預設:" +"[kbd]pma_bookmark[/kbd]" + +#: libraries/config/messages.inc.php:370 +msgid "Bookmark table" +msgstr "書籤表" #: libraries/config/messages.inc.php:371 -msgid "Bookmark table" -msgstr "" - -#: libraries/config/messages.inc.php:372 msgid "" "Leave blank for no column comments/mime types, suggested: [kbd]" "pma_column_info[/kbd]" -msgstr "" +msgstr "留空則不使用列資訊和MIME類型。預設值:[kbd]pma_column_info[/kbd]" + +#: libraries/config/messages.inc.php:372 +msgid "Column information table" +msgstr "列資訊表" #: libraries/config/messages.inc.php:373 -msgid "Column information table" -msgstr "" +msgid "Compress connection to MySQL server" +msgstr "壓縮連線到 MySQL 伺服器" #: libraries/config/messages.inc.php:374 -msgid "Compress connection to MySQL server" -msgstr "" +msgid "Compress connection" +msgstr "壓縮連線" #: libraries/config/messages.inc.php:375 -msgid "Compress connection" -msgstr "" +msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" +msgstr "怎樣連線到伺服器,如果不確定,請選擇 tcp" #: libraries/config/messages.inc.php:376 -msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure" -msgstr "" - -#: libraries/config/messages.inc.php:377 #, fuzzy msgid "Connection type" -msgstr "連線" +msgstr "連線方式" + +#: libraries/config/messages.inc.php:377 +msgid "Control user password" +msgstr "控制使用者的密碼" #: libraries/config/messages.inc.php:378 -msgid "Control user password" -msgstr "" - -#: libraries/config/messages.inc.php:379 msgid "" "A special MySQL user configured with limited permissions, more information " "available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]" msgstr "" +"一個特殊的被限制權限的 MySQL 使用者,參見 [a@http://wiki.phpmyadmin.net/pma/" +"controluser]wiki [/a]" + +#: libraries/config/messages.inc.php:379 +msgid "Control user" +msgstr "控制使用者" #: libraries/config/messages.inc.php:380 -msgid "Control user" -msgstr "" +msgid "Count tables when showing database list" +msgstr "顯示資料庫列表時計算資料表的數量" #: libraries/config/messages.inc.php:381 -msgid "Count tables when showing database list" -msgstr "" - -#: libraries/config/messages.inc.php:382 #, fuzzy msgid "Count tables" -msgstr "沒有資料表" +msgstr "統計資料表" -#: libraries/config/messages.inc.php:383 +#: libraries/config/messages.inc.php:382 msgid "" "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" "kbd]" -msgstr "" +msgstr "不使用設計功能請留空,預設:[kbd]pma_designer_coords[/kbd]" -#: libraries/config/messages.inc.php:384 +#: libraries/config/messages.inc.php:383 #, fuzzy msgid "Designer table" -msgstr "整理資料表" +msgstr "設計表" -#: libraries/config/messages.inc.php:385 +#: libraries/config/messages.inc.php:384 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 "" +"參見 [a@http://sf.net/support/tracker.php?aid=1849494]PMA 缺陷 (bug) 跟蹤係" +"統 [/a] 和 [a@http://bugs.mysql.com/19588]MySQL 缺陷 (Bugs) (外鏈,英文)[/a]" + +#: libraries/config/messages.inc.php:385 +msgid "Disable use of INFORMATION_SCHEMA" +msgstr "禁止使用 INFORMATION_SCHEMA" #: libraries/config/messages.inc.php:386 -msgid "Disable use of INFORMATION_SCHEMA" -msgstr "" +msgid "What PHP extension to use; you should use mysqli if supported" +msgstr "要使用的 PHP 外掛,如果支援,推薦使用 mysqli" #: libraries/config/messages.inc.php:387 -msgid "What PHP extension to use; you should use mysqli if supported" -msgstr "" +msgid "PHP extension to use" +msgstr "要使用的 PHP 外掛" #: libraries/config/messages.inc.php:388 -msgid "PHP extension to use" -msgstr "" +msgid "Hide databases matching regular expression (PCRE)" +msgstr "該正則表達式 (PCRE,Perl 相容) 所符合的資料庫將被隱藏" #: libraries/config/messages.inc.php:389 -msgid "Hide databases matching regular expression (PCRE)" -msgstr "" - -#: libraries/config/messages.inc.php:390 #, fuzzy msgid "Hide databases" -msgstr "沒有資料庫" +msgstr "隱藏資料庫" -#: libraries/config/messages.inc.php:391 +#: libraries/config/messages.inc.php:390 msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma_history[/" "kbd]" -msgstr "" +msgstr "不使用 SQL 查詢歷史功能請留空,預設:[kbd]pma_history[/kbd]" + +#: libraries/config/messages.inc.php:391 +msgid "SQL query history table" +msgstr "SQL 查詢歷史表" #: libraries/config/messages.inc.php:392 -msgid "SQL query history table" -msgstr "" +msgid "Hostname where MySQL server is running" +msgstr "MySQL 伺服器的主機名" #: libraries/config/messages.inc.php:393 -msgid "Hostname where MySQL server is running" -msgstr "" - -#: libraries/config/messages.inc.php:394 #, fuzzy msgid "Server hostname" -msgstr "伺服器名稱" +msgstr "伺服器主機名" + +#: libraries/config/messages.inc.php:394 +msgid "Logout URL" +msgstr "登出網址" #: libraries/config/messages.inc.php:395 -msgid "Logout URL" -msgstr "" +msgid "Try to connect without password" +msgstr "嘗試用空密碼連線" #: libraries/config/messages.inc.php:396 -msgid "Try to connect without password" -msgstr "" +msgid "Connect without password" +msgstr "用空密碼連線" #: libraries/config/messages.inc.php:397 -msgid "Connect without password" -msgstr "" - -#: libraries/config/messages.inc.php:398 msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " @@ -3760,357 +3785,372 @@ msgid "" "their names in order and use [kbd]*[/kbd] at the end to show the rest in " "alphabetical order." msgstr "" +"可以使用 MySQL 萬用字元 (% 和 _),若表示它們本身,請轉義,例:用 [kbd]'my" +"\\_db'[/kbd] 而不是 [kbd]'my_db'[/kbd]。透過該選項您可以對資料庫列表排序,只" +"需按順序輸入它們的名稱並加上 [kbd]*[/kbd],剩下的資料庫將按字母順序排在最後" -#: libraries/config/messages.inc.php:399 +#: libraries/config/messages.inc.php:398 msgid "Show only listed databases" -msgstr "" +msgstr "僅顯示列出的資料庫" -#: libraries/config/messages.inc.php:400 libraries/config/messages.inc.php:441 +#: libraries/config/messages.inc.php:399 libraries/config/messages.inc.php:440 msgid "Leave empty if not using config auth" -msgstr "" +msgstr "如果不使用 config 認證方式,請留空" + +#: libraries/config/messages.inc.php:400 +msgid "Password for config auth" +msgstr "config 認證方式的密碼" #: libraries/config/messages.inc.php:401 -msgid "Password for config auth" -msgstr "" - -#: libraries/config/messages.inc.php:402 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" -msgstr "" +msgstr "不使用 PDF 大綱功能請留空,預設:[kbd]pma_pdf_pages[/kbd]" + +#: libraries/config/messages.inc.php:402 +msgid "PDF schema: pages table" +msgstr "PDF 大綱: 資料表頁" #: libraries/config/messages.inc.php:403 -msgid "PDF schema: pages table" -msgstr "" - -#: libraries/config/messages.inc.php:404 msgid "" "Database used for relations, bookmarks, and PDF features. See [a@http://wiki." "phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for " "no support. Suggested: [kbd]phpmyadmin[/kbd]" msgstr "" +"關聯、書籤、PDF 功能所用的資料庫。參見 [a@http://wiki.phpmyadmin.net/pma/" +"pmadb]pmadb [/a]。不使用請留空。預設: [kbd]phpmyadmin[/kbd]" -#: libraries/config/messages.inc.php:405 +#: libraries/config/messages.inc.php:404 #, fuzzy #| msgid "database name" msgid "Database name" -msgstr "資料庫名稱" +msgstr "資料庫名" + +#: libraries/config/messages.inc.php:405 +msgid "Port on which MySQL server is listening, leave empty for default" +msgstr "MySQL 伺服器監聽的連接埠,留空爲預設" #: libraries/config/messages.inc.php:406 -msgid "Port on which MySQL server is listening, leave empty for default" -msgstr "" - -#: libraries/config/messages.inc.php:407 #, fuzzy msgid "Server port" -msgstr "伺服器 ID" +msgstr "伺服器連接埠" -#: libraries/config/messages.inc.php:408 +#: libraries/config/messages.inc.php:407 msgid "" "Leave blank for no \"persistent\" recently used tables across sessions, " "suggested: [kbd]pma_recent[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:409 +#: libraries/config/messages.inc.php:408 #, fuzzy #| msgid "Analyze table" msgid "Recently used table" msgstr "分析資料表" -#: libraries/config/messages.inc.php:410 +#: libraries/config/messages.inc.php:409 msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links" "[/a] support, suggested: [kbd]pma_relation[/kbd]" msgstr "" +"不使用[a@http://wiki.phpmyadmin.net/pma/relation]關聯連結 [/a]功能請留空,預" +"設:[kbd]pma_relation[/kbd]" -#: libraries/config/messages.inc.php:411 +#: libraries/config/messages.inc.php:410 #, fuzzy msgid "Relation table" -msgstr "修復資料表" +msgstr "關聯表" + +#: libraries/config/messages.inc.php:411 +msgid "SQL command to fetch available databases" +msgstr "取得所有可用資料庫的 SQL 指令" #: libraries/config/messages.inc.php:412 -msgid "SQL command to fetch available databases" -msgstr "" +msgid "SHOW DATABASES command" +msgstr "顯示資料庫(SHOW DATABASES)命令" #: libraries/config/messages.inc.php:413 -msgid "SHOW DATABASES command" -msgstr "" - -#: libraries/config/messages.inc.php:414 msgid "" "See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types" "[/a] for an example" msgstr "" +"參見[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]認證方式 [/a]中的例子" + +#: libraries/config/messages.inc.php:414 +msgid "Signon session name" +msgstr "Signon 連線名" #: libraries/config/messages.inc.php:415 -msgid "Signon session name" -msgstr "" +msgid "Signon URL" +msgstr "登錄網址" #: libraries/config/messages.inc.php:416 -msgid "Signon URL" -msgstr "" +msgid "Socket on which MySQL server is listening, leave empty for default" +msgstr "MySQL 伺服器監聽的連線埠,留空爲預設" #: libraries/config/messages.inc.php:417 -msgid "Socket on which MySQL server is listening, leave empty for default" -msgstr "" - -#: libraries/config/messages.inc.php:418 #, fuzzy msgid "Server socket" -msgstr "選擇伺服器" +msgstr "伺服器連線埠 (socket)" + +#: libraries/config/messages.inc.php:418 +msgid "Enable SSL for connection to MySQL server" +msgstr "使用 SSL 連線到 MySQL 伺服器" #: libraries/config/messages.inc.php:419 -msgid "Enable SSL for connection to MySQL server" -msgstr "" +msgid "Use SSL" +msgstr "使用 SSL" #: libraries/config/messages.inc.php:420 -msgid "Use SSL" -msgstr "" - -#: libraries/config/messages.inc.php:421 msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" -msgstr "" +msgstr "不使用 PDF 大綱功能請留空,預設:[kbd]pma_table_coords[/kbd]" + +#: libraries/config/messages.inc.php:421 +msgid "PDF schema: table coordinates" +msgstr "PDF 大綱: 資料表同時" #: libraries/config/messages.inc.php:422 -msgid "PDF schema: table coordinates" -msgstr "" - -#: libraries/config/messages.inc.php:423 msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma_table_info[/kbd]" -msgstr "" +msgstr "描述顯示欄位的表,不使用請留空,預設:[kbd]pma_table_info[/kbd]" -#: libraries/config/messages.inc.php:424 +#: libraries/config/messages.inc.php:423 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display columns table" -msgstr "顯示欄位註解" +msgstr "顯示欄位表" -#: libraries/config/messages.inc.php:425 +#: libraries/config/messages.inc.php:424 msgid "" "Leave blank for no \"persistent\" tables'UI preferences across sessions, " "suggested: [kbd]pma_table_uiprefs[/kbd]" msgstr "" -#: libraries/config/messages.inc.php:426 +#: libraries/config/messages.inc.php:425 #, fuzzy #| msgid "Defragment table" msgid "UI preferences table" msgstr "整理資料表" -#: libraries/config/messages.inc.php:427 +#: libraries/config/messages.inc.php:426 msgid "" "Whether a DROP DATABASE IF EXISTS statement will be added as first line to " "the log when creating a database." -msgstr "" +msgstr "設定當記錄資料庫建立時,是否在前面加上 DROP DATABASE IF EXISTS 命令" + +#: libraries/config/messages.inc.php:427 +msgid "Add DROP DATABASE" +msgstr "新增 DROP DATABASE" #: libraries/config/messages.inc.php:428 -msgid "Add DROP DATABASE" -msgstr "" - -#: libraries/config/messages.inc.php:429 msgid "" "Whether a DROP TABLE IF EXISTS statement will be added as first line to the " "log when creating a table." -msgstr "" +msgstr "設定當記錄資料表建立時,是否在前面加上 DROP TABLE IF EXISTS 命令" + +#: libraries/config/messages.inc.php:429 +msgid "Add DROP TABLE" +msgstr "新增 DROP TABLE" #: libraries/config/messages.inc.php:430 -msgid "Add DROP TABLE" -msgstr "" - -#: libraries/config/messages.inc.php:431 msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." -msgstr "" +msgstr "設定當記錄 view建立時,是否在前面加上 DROP VIEW IF EXISTS 命令" + +#: libraries/config/messages.inc.php:431 +msgid "Add DROP VIEW" +msgstr "新增 DROP VIEW" #: libraries/config/messages.inc.php:432 -msgid "Add DROP VIEW" -msgstr "" +msgid "Defines the list of statements the auto-creation uses for new versions." +msgstr "定義自動建立新版的命令列表" #: libraries/config/messages.inc.php:433 -msgid "Defines the list of statements the auto-creation uses for new versions." -msgstr "" - -#: libraries/config/messages.inc.php:434 #, fuzzy #| msgid "Statements" msgid "Statements to track" -msgstr "敘述" +msgstr "要追蹤的命令" -#: libraries/config/messages.inc.php:435 +#: libraries/config/messages.inc.php:434 msgid "" "Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/" "kbd]" -msgstr "" +msgstr "不使用 SQL 查詢追蹤功能請留空,預設:[kbd]pma_tracking[/kbd]" + +#: libraries/config/messages.inc.php:435 +msgid "SQL query tracking table" +msgstr "SQL 查詢追蹤表" #: libraries/config/messages.inc.php:436 -msgid "SQL query tracking table" -msgstr "" - -#: libraries/config/messages.inc.php:437 msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." -msgstr "" +msgstr "設定追蹤系統是否自動爲資料表和 view建立版本" -#: libraries/config/messages.inc.php:438 +#: libraries/config/messages.inc.php:437 #, fuzzy #| msgid "Automatic recovery mode" msgid "Automatically create versions" -msgstr "自動修復模式" +msgstr "自動建立版本" -#: libraries/config/messages.inc.php:439 +#: libraries/config/messages.inc.php:438 msgid "" "Leave blank for no user preferences storage in database, suggested: [kbd]" "pma_config[/kbd]" -msgstr "" +msgstr "不在資料庫中儲存使用者偏好請留空,預設:[kbd]pma_config[/kbd]" -#: libraries/config/messages.inc.php:440 +#: libraries/config/messages.inc.php:439 msgid "User preferences storage table" -msgstr "" +msgstr "使用者偏好表" + +#: libraries/config/messages.inc.php:441 +msgid "User for config auth" +msgstr "config 認證方式的帳號" #: libraries/config/messages.inc.php:442 -msgid "User for config auth" -msgstr "" - -#: libraries/config/messages.inc.php:443 msgid "" "Disable if you know that your pma_* tables are up to date. This prevents " "compatibility checks and thereby increases performance" -msgstr "" +msgstr "如果您確定 pma_* 資料表都是最新的,可以停用此項。此功能提供相容性檢查" + +#: libraries/config/messages.inc.php:443 +msgid "Verbose check" +msgstr "詳細檢查" #: libraries/config/messages.inc.php:444 -msgid "Verbose check" -msgstr "" - -#: libraries/config/messages.inc.php:445 msgid "" "A user-friendly description of this server. Leave blank to display the " "hostname instead." -msgstr "" +msgstr "一個好記的名字。留空將顯示主機名" + +#: libraries/config/messages.inc.php:445 +msgid "Verbose name of this server" +msgstr "伺服器名稱" #: libraries/config/messages.inc.php:446 -msgid "Verbose name of this server" -msgstr "" +msgid "Whether a user should be displayed a "show all (rows)" button" +msgstr "設定是否給使用者顯示一個 "顯示所有 (記錄)" 的按鈕" #: libraries/config/messages.inc.php:447 -msgid "Whether a user should be displayed a "show all (rows)" button" -msgstr "" +msgid "Allow to display all the rows" +msgstr "允許顯示所有行" #: libraries/config/messages.inc.php:448 -msgid "Allow to display all the rows" -msgstr "" - -#: libraries/config/messages.inc.php:449 msgid "" "Please note that enabling this has no effect with [kbd]config[/kbd] " "authentication mode because the password is hard coded in the configuration " "file; this does not limit the ability to execute the same command directly" msgstr "" +"注意:該選項不影響 [kbd]config[/kbd] 認證方式,因爲密碼是儲存在設定檔案中,該" +"選項也不限制直接執行可實現相同功能的命令" + +#: libraries/config/messages.inc.php:449 +msgid "Show password change form" +msgstr "顯示修改密碼" #: libraries/config/messages.inc.php:450 -msgid "Show password change form" -msgstr "" +msgid "Show create database form" +msgstr "顯示建立資料庫表單" #: libraries/config/messages.inc.php:451 -msgid "Show create database form" -msgstr "" - -#: libraries/config/messages.inc.php:452 msgid "" "Defines whether or not type fields should be initially displayed in edit/" "insert mode" -msgstr "" +msgstr "定義在編輯/插入模式中是否顯示欄位類型一列" -#: libraries/config/messages.inc.php:453 +#: libraries/config/messages.inc.php:452 #, fuzzy #| msgid "Show open tables" msgid "Show field types" -msgstr "顯示開啟資料表" +msgstr "顯示欄位類型" + +#: libraries/config/messages.inc.php:453 +msgid "Display the function fields in edit/insert mode" +msgstr "在編輯/插入模式中顯示函數列" #: libraries/config/messages.inc.php:454 -msgid "Display the function fields in edit/insert mode" -msgstr "" +msgid "Show function fields" +msgstr "顯示函數列" #: libraries/config/messages.inc.php:455 -msgid "Show function fields" -msgstr "" - -#: libraries/config/messages.inc.php:456 msgid "" "Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] " "output" msgstr "" +"顯示 [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] 輸出的連結" + +#: libraries/config/messages.inc.php:456 +msgid "Show phpinfo() link" +msgstr "顯示 phpinfo() 連結" #: libraries/config/messages.inc.php:457 -msgid "Show phpinfo() link" -msgstr "" +msgid "Show detailed MySQL server information" +msgstr "顯示 MySQL 伺服器詳細資訊" #: libraries/config/messages.inc.php:458 -msgid "Show detailed MySQL server information" -msgstr "" +msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" +msgstr "定義是否顯示 phpMyAdmin 產生的 SQL 查詢" #: libraries/config/messages.inc.php:459 -msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed" -msgstr "" - -#: libraries/config/messages.inc.php:460 #, fuzzy msgid "Show SQL queries" -msgstr "顯示完整查詢" +msgstr "顯示 SQL 查詢" + +#: libraries/config/messages.inc.php:460 +msgid "Allow to display database and table statistics (eg. space usage)" +msgstr "允許顯示資料庫和資料表的統計資訊 (如:空間使用)" #: libraries/config/messages.inc.php:461 -msgid "Allow to display database and table statistics (eg. space usage)" -msgstr "" - -#: libraries/config/messages.inc.php:462 #, fuzzy msgid "Show statistics" -msgstr "資料列統計數值" +msgstr "顯示統計" -#: libraries/config/messages.inc.php:463 +#: libraries/config/messages.inc.php:462 msgid "" "If tooltips are enabled and a database comment is set, this will flip the " "comment and the real name" msgstr "" +"如果啓用了提示功能且設定了資料庫備註,這裏將簡略顯示資料庫備註和資料庫名" + +#: libraries/config/messages.inc.php:463 +msgid "Display database comment instead of its name" +msgstr "顯示資料庫的備註而不顯示資料庫名" #: libraries/config/messages.inc.php:464 -msgid "Display database comment instead of its name" -msgstr "" - -#: libraries/config/messages.inc.php:465 msgid "" "When setting this to [kbd]nested[/kbd], the alias of the table name is only " "used to split/nest the tables according to the $cfg" "['LeftFrameTableSeparator'] directive, so only the folder is called like the " "alias, the table name itself stays unchanged" msgstr "" +"當設爲 [kbd]nested[/kbd] 時,資料表的別名僅根據 $cfg" +"['LeftFrameTableSeparator'] 作分割/層疊用,所有只有目錄的名字像別名,資料表自" +"己的名字並不改變" + +#: libraries/config/messages.inc.php:465 +msgid "Display table comment instead of its name" +msgstr "顯示資料表備註而不顯示資料資料表名稱" #: libraries/config/messages.inc.php:466 -msgid "Display table comment instead of its name" -msgstr "" +msgid "Display table comments in tooltips" +msgstr "在提示視窗顯示資料表備註" #: libraries/config/messages.inc.php:467 -msgid "Display table comments in tooltips" -msgstr "" - -#: libraries/config/messages.inc.php:468 msgid "" "Mark used tables and make it possible to show databases with locked tables" -msgstr "" +msgstr "將已鎖定的資料表在資料庫中顯示爲使用中" -#: libraries/config/messages.inc.php:469 +#: libraries/config/messages.inc.php:468 #, fuzzy msgid "Skip locked tables" -msgstr "顯示開啟資料表" +msgstr "跳過鎖定的表" -#: libraries/config/messages.inc.php:474 +#: libraries/config/messages.inc.php:473 msgid "Requires SQL Validator to be enabled" -msgstr "" +msgstr "需要啓用 SQL 檢驗器" -#: libraries/config/messages.inc.php:476 +#: libraries/config/messages.inc.php:475 #: libraries/display_change_password.lib.php:40 #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:62 #: libraries/replication_gui.lib.php:337 libraries/replication_gui.lib.php:341 @@ -4120,267 +4160,278 @@ msgstr "" msgid "Password" msgstr "密碼" -#: libraries/config/messages.inc.php:477 +#: libraries/config/messages.inc.php:476 msgid "" "[strong]Warning:[/strong] requires PHP SOAP extension or PEAR SOAP to be " "installed" -msgstr "" +msgstr "[strong]警告:[/strong]需要安裝 PHP SOAP 外掛或 PEAR SOAP" + +#: libraries/config/messages.inc.php:477 +msgid "Enable SQL Validator" +msgstr "啓用 SQL 檢驗器" #: libraries/config/messages.inc.php:478 -msgid "Enable SQL Validator" -msgstr "" - -#: libraries/config/messages.inc.php:479 msgid "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" -msgstr "" +msgstr "如果您有自己的帳號,請在這裏輸入 (預設爲 [kbd]anonymous (匿名)[/kbd])" -#: libraries/config/messages.inc.php:480 tbl_tracking.php:454 +#: libraries/config/messages.inc.php:479 tbl_tracking.php:454 #: tbl_tracking.php:511 #, fuzzy msgid "Username" -msgstr "登入名稱:" +msgstr "帳號" -#: libraries/config/messages.inc.php:481 +#: libraries/config/messages.inc.php:480 msgid "" "Suggest a database name on the "Create Database" form (if " "possible) or keep the text field empty" -msgstr "" +msgstr "如果可能,在 "建立資料庫" 表單中建議一個名字,或留空" + +#: libraries/config/messages.inc.php:481 +msgid "Suggest new database name" +msgstr "建議新資料庫名" #: libraries/config/messages.inc.php:482 -msgid "Suggest new database name" -msgstr "" +msgid "A warning is displayed on the main page if Suhosin is detected" +msgstr "若檢測到 Suhosin 將在首頁顯示一個警告" #: libraries/config/messages.inc.php:483 -msgid "A warning is displayed on the main page if Suhosin is detected" -msgstr "" +msgid "Suhosin warning" +msgstr "Suhosin 警告" #: libraries/config/messages.inc.php:484 -msgid "Suhosin warning" -msgstr "" - -#: libraries/config/messages.inc.php:485 msgid "" "Textarea size (columns) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" +"編輯模式的文字框大小 (列數),此值將用於 SQL 查詢文字框 (*2) 和查詢視窗 " +"(*1.25)" -#: libraries/config/messages.inc.php:486 +#: libraries/config/messages.inc.php:485 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Textarea columns" -msgstr "新增/減少 選擇欄" +msgstr "文字框列" -#: libraries/config/messages.inc.php:487 +#: libraries/config/messages.inc.php:486 msgid "" "Textarea size (rows) in edit mode, this value will be emphasized for SQL " "query textareas (*2) and for query window (*1.25)" msgstr "" +"編輯模式的文字框大小 (行數),此值將用於 SQL 查詢文字框 (*2) 和查詢視窗 " +"(*1.25)" + +#: libraries/config/messages.inc.php:487 +msgid "Textarea rows" +msgstr "文字框行" #: libraries/config/messages.inc.php:488 -msgid "Textarea rows" -msgstr "" - -#: libraries/config/messages.inc.php:489 msgid "Title of browser window when a database is selected" -msgstr "" +msgstr "選中一個資料庫時瀏覽器視窗的標題" + +#: libraries/config/messages.inc.php:490 +msgid "Title of browser window when nothing is selected" +msgstr "未選擇時瀏覽器視窗的標題" #: libraries/config/messages.inc.php:491 -msgid "Title of browser window when nothing is selected" -msgstr "" - -#: libraries/config/messages.inc.php:492 #, fuzzy #| msgid "Default" msgid "Default title" -msgstr "預設值" +msgstr "預設標題" -#: libraries/config/messages.inc.php:493 +#: libraries/config/messages.inc.php:492 msgid "Title of browser window when a server is selected" -msgstr "" +msgstr "選中一個伺服器時瀏覽器視窗的標題" -#: libraries/config/messages.inc.php:495 +#: libraries/config/messages.inc.php:494 msgid "Title of browser window when a table is selected" -msgstr "" +msgstr "選中一張資料表時瀏覽器視窗的標題" -#: libraries/config/messages.inc.php:497 +#: libraries/config/messages.inc.php:496 msgid "" "Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example " "specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-" "For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: " "HTTP_X_FORWARDED_FOR[/kbd]" msgstr "" +"輸入作爲代理的 [kbd]IP:可信 HTTP 頭[/kbd]。下面的例子指定了 phpMyAdmin 應該" +"信任從代理 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd] 發來的 " +"HTTP_X_FORWARDED_FOR 頭" + +#: libraries/config/messages.inc.php:497 +msgid "List of trusted proxies for IP allow/deny" +msgstr "可信代理IP列表" #: libraries/config/messages.inc.php:498 -msgid "List of trusted proxies for IP allow/deny" -msgstr "" +msgid "Directory on server where you can upload files for import" +msgstr "伺服器上用來存放匯入檔案的資料夾" #: libraries/config/messages.inc.php:499 -msgid "Directory on server where you can upload files for import" -msgstr "" +msgid "Upload directory" +msgstr "上傳資料夾" #: libraries/config/messages.inc.php:500 -msgid "Upload directory" -msgstr "" +msgid "Allow for searching inside the entire database" +msgstr "允許搜尋整個資料庫" #: libraries/config/messages.inc.php:501 -msgid "Allow for searching inside the entire database" -msgstr "" +msgid "Use database search" +msgstr "使用資料庫搜尋" #: libraries/config/messages.inc.php:502 -msgid "Use database search" -msgstr "" - -#: libraries/config/messages.inc.php:503 msgid "" "When disabled, users cannot set any of the options below, regardless of the " "checkbox on the right" -msgstr "" +msgstr "停用時,使用者不能設定下列選項,右側的複選框被忽略" + +#: libraries/config/messages.inc.php:503 +msgid "Enable the Developer tab in settings" +msgstr "啓用設定中的開發標籤" #: libraries/config/messages.inc.php:504 -msgid "Enable the Developer tab in settings" -msgstr "" - -#: libraries/config/messages.inc.php:505 msgid "" "Show affected rows of each statement on multiple-statement queries. See " "libraries/import.lib.php for defaults on how many queries a statement may " "contain." msgstr "" +"在進行多個指令查詢時,顯示每個指令所影響的行數。預設一次查詢可以包含的查詢語" +"句數可以在 libraries/import.lib.php 中找到" -#: libraries/config/messages.inc.php:506 +#: libraries/config/messages.inc.php:505 msgid "Verbose multiple statements" -msgstr "" +msgstr "爲多個指令輸出更多資訊" -#: libraries/config/messages.inc.php:507 setup/frames/index.inc.php:241 +#: libraries/config/messages.inc.php:506 setup/frames/index.inc.php:241 msgid "Check for latest version" -msgstr "" +msgstr "檢查更新" -#: libraries/config/messages.inc.php:508 +#: libraries/config/messages.inc.php:507 msgid "Enables check for latest version on main phpMyAdmin page" -msgstr "" +msgstr "允許在 phpMyAdmin 首頁面中檢查最新版本" -#: libraries/config/messages.inc.php:509 setup/lib/index.lib.php:118 +#: libraries/config/messages.inc.php:508 setup/lib/index.lib.php:118 #: setup/lib/index.lib.php:125 setup/lib/index.lib.php:142 #: setup/lib/index.lib.php:149 setup/lib/index.lib.php:157 #: 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:510 +#: libraries/config/messages.inc.php:509 msgid "" "Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression " "for import and export operations" msgstr "" +"允許在匯入和匯出時使用 [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP " +"[/a] 壓縮" -#: libraries/config/messages.inc.php:511 +#: libraries/config/messages.inc.php:510 msgid "ZIP" -msgstr "" +msgstr "ZIP" #: libraries/config/setup.forms.php:41 msgid "Config authentication" -msgstr "" +msgstr "Config 認證" #: libraries/config/setup.forms.php:45 msgid "Cookie authentication" -msgstr "" +msgstr "Cookie 認證" #: libraries/config/setup.forms.php:48 msgid "HTTP authentication" -msgstr "" +msgstr "HTTP 認證" #: libraries/config/setup.forms.php:51 msgid "Signon authentication" -msgstr "" +msgstr "Signon 認證" -#: libraries/config/setup.forms.php:244 -#: libraries/config/user_preferences.forms.php:146 libraries/import/ldi.php:34 +#: libraries/config/setup.forms.php:243 +#: libraries/config/user_preferences.forms.php:145 libraries/import/ldi.php:34 msgid "CSV using LOAD DATA" msgstr "CSV 使用 LOAD DATA" -#: libraries/config/setup.forms.php:253 libraries/config/setup.forms.php:347 -#: libraries/config/user_preferences.forms.php:154 -#: libraries/config/user_preferences.forms.php:247 libraries/export/xls.php:17 +#: libraries/config/setup.forms.php:252 libraries/config/setup.forms.php:346 +#: libraries/config/user_preferences.forms.php:153 +#: libraries/config/user_preferences.forms.php:246 libraries/export/xls.php:17 #: libraries/import/xls.php:20 msgid "Excel 97-2003 XLS Workbook" -msgstr "" +msgstr "Excel 97-2003 XLS 工作簿" -#: libraries/config/setup.forms.php:256 libraries/config/setup.forms.php:351 -#: libraries/config/user_preferences.forms.php:157 -#: libraries/config/user_preferences.forms.php:251 +#: libraries/config/setup.forms.php:255 libraries/config/setup.forms.php:350 +#: libraries/config/user_preferences.forms.php:156 +#: libraries/config/user_preferences.forms.php:250 #: libraries/export/xlsx.php:17 libraries/import/xlsx.php:20 msgid "Excel 2007 XLSX Workbook" -msgstr "" +msgstr "Excel 2007 XLSX 工作簿" -#: libraries/config/setup.forms.php:259 libraries/config/setup.forms.php:360 -#: libraries/config/user_preferences.forms.php:160 -#: libraries/config/user_preferences.forms.php:260 libraries/export/ods.php:17 +#: libraries/config/setup.forms.php:258 libraries/config/setup.forms.php:359 +#: libraries/config/user_preferences.forms.php:159 +#: libraries/config/user_preferences.forms.php:259 libraries/export/ods.php:17 #: libraries/import/ods.php:22 msgid "Open Document Spreadsheet" -msgstr "" +msgstr "OpenOffice 表格" -#: libraries/config/setup.forms.php:266 -#: libraries/config/user_preferences.forms.php:167 +#: libraries/config/setup.forms.php:265 +#: libraries/config/user_preferences.forms.php:166 msgid "Quick" -msgstr "" +msgstr "快速" -#: libraries/config/setup.forms.php:270 -#: libraries/config/user_preferences.forms.php:171 +#: libraries/config/setup.forms.php:269 +#: libraries/config/user_preferences.forms.php:170 msgid "Custom" -msgstr "" +msgstr "自訂" -#: libraries/config/setup.forms.php:291 -#: libraries/config/user_preferences.forms.php:191 +#: libraries/config/setup.forms.php:290 +#: libraries/config/user_preferences.forms.php:190 msgid "Database export options" -msgstr "資料庫輸出選項" +msgstr "資料庫匯出選項" -#: libraries/config/setup.forms.php:324 -#: libraries/config/user_preferences.forms.php:224 +#: libraries/config/setup.forms.php:323 +#: libraries/config/user_preferences.forms.php:223 #: libraries/export/excel.php:17 msgid "CSV for MS Excel" msgstr "MS Excel 的 CSV 格式" -#: libraries/config/setup.forms.php:355 -#: libraries/config/user_preferences.forms.php:255 +#: libraries/config/setup.forms.php:354 +#: libraries/config/user_preferences.forms.php:254 #: libraries/export/htmlword.php:17 msgid "Microsoft Word 2000" msgstr "Microsoft Word 2000" -#: libraries/config/setup.forms.php:364 -#: libraries/config/user_preferences.forms.php:264 libraries/export/odt.php:21 +#: libraries/config/setup.forms.php:363 +#: libraries/config/user_preferences.forms.php:263 libraries/export/odt.php:21 msgid "Open Document Text" -msgstr "" +msgstr "OpenOffice 檔案" #: libraries/config/validate.lib.php:202 libraries/config/validate.lib.php:209 msgid "Could not connect to MySQL server" -msgstr "" +msgstr "無法連線到 MySQL 伺服器" #: libraries/config/validate.lib.php:234 msgid "Empty username while using config authentication method" -msgstr "" +msgstr "使用 config 認證方式時 config 認證方式的帳號不能爲空" #: libraries/config/validate.lib.php:238 msgid "Empty signon session name while using signon authentication method" -msgstr "" +msgstr "使用 singon 認證方式時 Signon 連線名不能爲空" #: libraries/config/validate.lib.php:242 msgid "Empty signon URL while using signon authentication method" -msgstr "" +msgstr "使用 singon 認證方式時登錄網址不能爲空" #: libraries/config/validate.lib.php:276 msgid "Empty phpMyAdmin control user while using pmadb" -msgstr "" +msgstr "使用 PMA 資料庫時控制使用者不能爲空" #: libraries/config/validate.lib.php:280 msgid "Empty phpMyAdmin control user password while using pmadb" -msgstr "" +msgstr "使用 PMA 資料時控制使用者的密碼不能爲空" #: libraries/config/validate.lib.php:367 #, php-format msgid "Incorrect IP address: %s" -msgstr "" +msgstr "%s 是一個錯誤的 IP 網址" #. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation. #: libraries/core.lib.php:264 @@ -4391,36 +4442,36 @@ msgstr "zh" #: libraries/core.lib.php:278 #, php-format msgid "The %s extension is missing. Please check your PHP configuration." -msgstr "" +msgstr "缺少 %s 外掛。請檢查 PHP 設定" #: libraries/db_events.inc.php:14 libraries/db_events.inc.php:16 #: libraries/export/sql.php:493 msgid "Events" -msgstr "" +msgstr "事件" #: libraries/db_events.inc.php:24 libraries/db_routines.inc.php:35 #: libraries/display_create_table.lib.php:51 libraries/tbl_triggers.lib.php:26 #: setup/frames/index.inc.php:125 msgid "Name" -msgstr "名稱" +msgstr "名字" #: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43 #: libraries/db_links.inc.php:44 msgid "Database seems to be empty!" -msgstr "" +msgstr "資料庫是空的!" #: libraries/db_links.inc.php:66 libraries/relation.lib.php:151 #: libraries/tbl_links.inc.php:90 msgid "Tracking" -msgstr "" +msgstr "追蹤" #: libraries/db_links.inc.php:71 msgid "Query" -msgstr "依範例查詢 (QBE)" +msgstr "查詢" #: libraries/db_links.inc.php:76 libraries/relation.lib.php:139 msgid "Designer" -msgstr "" +msgstr "設計器" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 #: server_privileges.php:119 server_privileges.php:1802 @@ -4430,60 +4481,59 @@ msgstr "權限" #: libraries/db_routines.inc.php:24 libraries/db_routines.inc.php:26 msgid "Routines" -msgstr "" +msgstr "一般" #: libraries/db_routines.inc.php:37 msgid "Return type" -msgstr "" +msgstr "返回類型" -#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1929 +#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:1954 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" -msgstr "可能接近. 請參看 FAQ 3.11" +msgstr "" +"可能接近。參見 [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]" #: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 msgid "Connection for controluser as defined in your configuration failed." -msgstr "" +msgstr "使用設定檔案中定義的控制使用者連線失敗" #: libraries/dbi/mysql.dbi.lib.php:361 libraries/dbi/mysql.dbi.lib.php:363 #: libraries/dbi/mysqli.dbi.lib.php:417 msgid "The server is not responding" -msgstr "伺服器並無回應" +msgstr "伺服器沒有響應" #: libraries/dbi/mysql.dbi.lib.php:361 libraries/dbi/mysqli.dbi.lib.php:417 msgid "(or the local MySQL server's socket is not correctly configured)" -msgstr "( 或者本機 MySQL 伺服器之 socket 並未正確設定)" +msgstr "(或者本地 MySQL 伺服器的連線埠沒有正確設定)" #: libraries/dbi/mysql.dbi.lib.php:370 msgid "Details..." -msgstr "" +msgstr "詳細..." #: libraries/display_change_password.lib.php:29 main.php:94 #: user_password.php:119 user_password.php:137 msgid "Change password" -msgstr "更改密碼" +msgstr "修改密碼" #: libraries/display_change_password.lib.php:34 #: libraries/replication_gui.lib.php:347 server_privileges.php:789 msgid "No Password" -msgstr "不用密碼" +msgstr "無密碼" #: libraries/display_change_password.lib.php:45 #: libraries/replication_gui.lib.php:355 libraries/replication_gui.lib.php:358 #: server_privileges.php:797 server_privileges.php:800 msgid "Re-type" -msgstr "確認密碼" +msgstr "重新輸入" #: libraries/display_change_password.lib.php:51 msgid "Password Hashing" -msgstr "密碼雜湊" +msgstr "密碼加密方式" #: libraries/display_change_password.lib.php:65 -#, fuzzy -#| msgid "MySQL 4.0 compatible" msgid "MySQL 4.0 compatible" -msgstr "MySQL 4.0 相容" +msgstr "MySQL 4.0 相容" #: libraries/display_create_database.lib.php:21 #: libraries/display_create_database.lib.php:39 @@ -4499,125 +4549,103 @@ msgstr "建立" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 #: server_privileges.php:1493 server_replication.php:33 msgid "No Privileges" -msgstr "沒有權限" +msgstr "無權限" #: libraries/display_create_table.lib.php:46 #, php-format msgid "Create table on database %s" -msgstr "建立新資料表於資料庫 %s" +msgstr "在資料庫 %s 中建立一張資料表" #: libraries/display_create_table.lib.php:55 -#, fuzzy -#| msgid "Number of fields" msgid "Number of columns" -msgstr "欄位數目" +msgstr "欄位數" #: libraries/display_export.lib.php:35 -#, fuzzy msgid "Could not load export plugins, please check your installation!" -msgstr "無法讀取載入的外掛程式, 請檢查安裝程序!" +msgstr "無法載入匯出插件,請檢查安裝!" #: libraries/display_export.lib.php:87 -#, fuzzy -#| msgid "Allows locking tables for the current thread." msgid "Exporting databases from the current server" -msgstr "容許鎖上現時連線之資料表." +msgstr "正在從目前伺服器中匯出資料庫" #: libraries/display_export.lib.php:89 -#, fuzzy, php-format -#| msgid "Create table on database %s" +#, php-format msgid "Exporting tables from \"%s\" database" -msgstr "建立新資料表於資料庫 %s" +msgstr "正在匯出資料庫“%s”中的資料表" #: libraries/display_export.lib.php:91 -#, fuzzy, php-format -#| msgid "Create table on database %s" +#, php-format msgid "Exporting rows from \"%s\" table" -msgstr "建立新資料表於資料庫 %s" +msgstr "正在匯出資料表“%s”中的記錄" #: libraries/display_export.lib.php:97 -#, fuzzy -#| msgid "Export type" msgid "Export Method:" -msgstr "輸出方式" +msgstr "匯出方式" #: libraries/display_export.lib.php:113 msgid "Quick - display only the minimal options" -msgstr "" +msgstr "快速 - 顯示最少的選項" #: libraries/display_export.lib.php:129 msgid "Custom - display all possible options" -msgstr "" +msgstr "自訂 - 顯示所有可用的選項" #: libraries/display_export.lib.php:137 -#, fuzzy -#| msgid "Databases" msgid "Database(s):" -msgstr "資料庫" +msgstr "資料庫:" #: libraries/display_export.lib.php:139 -#, fuzzy -#| msgid "Tables" msgid "Table(s):" -msgstr "個資料表" +msgstr "資料表:" #: libraries/display_export.lib.php:149 -#, fuzzy -#| msgid "Rows" msgid "Rows:" -msgstr "資料列列數" +msgstr "記錄:" #: libraries/display_export.lib.php:157 msgid "Dump some row(s)" -msgstr "" +msgstr "匯出部分記錄" #: libraries/display_export.lib.php:159 -#, fuzzy -#| msgid "Number of fields" msgid "Number of rows:" -msgstr "欄位數目" +msgstr "記錄數:" #: libraries/display_export.lib.php:162 msgid "Row to begin at:" -msgstr "" +msgstr "起始行數:" #: libraries/display_export.lib.php:173 msgid "Dump all rows" -msgstr "" +msgstr "匯出所有行" #: libraries/display_export.lib.php:181 libraries/display_export.lib.php:202 msgid "Output:" -msgstr "" +msgstr "輸出:" #: libraries/display_export.lib.php:188 libraries/display_export.lib.php:214 -#, fuzzy, php-format -#| msgid "Save on server in %s directory" +#, php-format msgid "Save on server in the directory %s" -msgstr "儲存到伺服器於 %s 目錄" +msgstr "儲存到伺服器上的 %s 資料夾中" #: libraries/display_export.lib.php:206 -#, fuzzy -#| msgid "Save as file" msgid "Save output to a file" -msgstr "下載儲存" +msgstr "儲存爲檔案" #: libraries/display_export.lib.php:227 -#, fuzzy -#| msgid "File name template" msgid "File name template:" -msgstr "檔案名稱樣式" +msgstr "檔案名稱模板:" #: libraries/display_export.lib.php:229 msgid "@SERVER@ will become the server name" -msgstr "" +msgstr "@SERVER@ 將變成伺服器名稱" #: libraries/display_export.lib.php:231 msgid ", @DATABASE@ will become the database name" -msgstr "" +msgstr ",@DATABASE@ 將變成資料庫名" #: libraries/display_export.lib.php:233 msgid ", @TABLE@ will become the table name" -msgstr "" +msgstr ",@TABLE@ 將變成資料資料表名稱" #: libraries/display_export.lib.php:237 #, php-format @@ -4626,75 +4654,75 @@ msgid "" "formatting 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" #: libraries/display_export.lib.php:275 msgid "use this for future exports" -msgstr "" +msgstr "以後也使用此設定" #: libraries/display_export.lib.php:281 libraries/display_import.lib.php:188 #: libraries/display_import.lib.php:201 libraries/sql_query_form.lib.php:516 msgid "Character set of the file:" -msgstr "文字編碼檔案:" +msgstr "檔案的字集:" #: libraries/display_export.lib.php:311 #, fuzzy #| msgid "Compression" msgid "Compression:" -msgstr "壓縮" +msgstr "壓縮:" #: libraries/display_export.lib.php:313 libraries/display_tbl.lib.php:517 #: libraries/export/sql.php:945 libraries/tbl_properties.inc.php:578 #: pmd_general.php:510 server_privileges.php:1955 server_processlist.php:96 msgid "None" -msgstr "不適用" +msgstr "無" #: libraries/display_export.lib.php:315 #, fuzzy #| msgid "\"zipped\"" msgid "zipped" -msgstr "\"zipped\"" +msgstr "zip 壓縮" #: libraries/display_export.lib.php:317 #, fuzzy #| msgid "\"gzipped\"" msgid "gzipped" -msgstr "\"gzipped\"" +msgstr "gzip 壓縮" #: libraries/display_export.lib.php:319 #, fuzzy #| msgid "\"bzipped\"" msgid "bzipped" -msgstr "\"bzipped\"" +msgstr "bzip 壓縮" #: libraries/display_export.lib.php:328 #, fuzzy #| msgid "Save as file" msgid "View output as text" -msgstr "下載儲存" +msgstr "直接顯示爲文字" #: libraries/display_export.lib.php:333 libraries/display_import.lib.php:244 #: libraries/export/codegen.php:37 -#, fuzzy -#| msgid "Format" msgid "Format:" -msgstr "格式" +msgstr "格式:" #: libraries/display_export.lib.php:338 #, fuzzy #| msgid "Transformation options" msgid "Format-specific options:" -msgstr "轉換方式選項" +msgstr "格式特定選項:" #: libraries/display_export.lib.php:339 msgid "" "Scroll down to fill in the options for the selected format and ignore the " "options for other formats." -msgstr "" +msgstr "請下拉至所選格式並設定選項,其它格式請忽略" #: libraries/display_export.lib.php:347 libraries/display_import.lib.php:260 #, fuzzy msgid "Encoding Conversion:" -msgstr "MySQL 客戶端版本" +msgstr "編碼轉換:" #: libraries/display_import.lib.php:66 msgid "" @@ -4702,65 +4730,61 @@ msgid "" "this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) " "browsers." msgstr "" +"上傳的檔案可能超過了最大大小,也可能是一個基於 webkit 瀏覽器 (Safari, Google " +"Chrome, Arora 等) 的已知缺陷 (bug) " #: libraries/display_import.lib.php:76 msgid "The file is being processed, please be patient." -msgstr "" +msgstr "正在處理,請稍候" #: libraries/display_import.lib.php:98 msgid "" "Please be patient, the file is being uploaded. Details about the upload are " "not available." -msgstr "" +msgstr "正在上傳,沒有詳細資訊,請稍候" #: libraries/display_import.lib.php:129 -#, fuzzy -#| msgid "Cannot log in to the MySQL server" msgid "Importing into the current server" -msgstr "無法登入 MySQL 伺服器" +msgstr "匯入到目前伺服器" #: libraries/display_import.lib.php:131 -#, fuzzy, php-format +#, php-format msgid "Importing into the database \"%s\"" -msgstr "沒有資料庫" +msgstr "匯入到資料庫“%s”" #: libraries/display_import.lib.php:133 -#, fuzzy, php-format +#, php-format msgid "Importing into the table \"%s\"" -msgstr "沒有資料庫" +msgstr "匯入到資料表“%s”" #: libraries/display_import.lib.php:139 -#, fuzzy -#| msgid "File to import" msgid "File to Import:" -msgstr "載入檔案" +msgstr "要匯入的檔案:" #: libraries/display_import.lib.php:156 #, php-format msgid "File may be compressed (%s) or uncompressed." -msgstr "" +msgstr "檔案可能已壓縮 (%s) 或未壓縮" #: libraries/display_import.lib.php:158 msgid "" "A compressed file's name must end in .[format].[compression]. " "Example: .sql.zip" -msgstr "" +msgstr "壓縮檔案名稱必須以 .[格式].[壓縮方式] 結尾。如:.sql.zip" #: libraries/display_import.lib.php:178 msgid "File uploads are not allowed on this server." -msgstr "" +msgstr "此伺服器禁止了檔案上傳" #: libraries/display_import.lib.php:208 -#, fuzzy -#| msgid "Partial import" msgid "Partial Import:" -msgstr "部份載入" +msgstr "部分匯入:" #: libraries/display_import.lib.php:214 #, php-format msgid "" "Previous import timed out, after resubmitting will continue from position %d." -msgstr "" +msgstr "上一個匯入操作超時,隨後重新送出將會從 %d 處開始" #: libraries/display_import.lib.php:221 msgid "" @@ -4768,32 +4792,30 @@ msgid "" "to the PHP timeout limit. (This might be good way to import large files, " "however it can break transactions.)" msgstr "" +"在匯入時指令若檢測到可能需要花費很長時間則允許中斷。(儘管這會中斷交易,但" +"在匯入大檔案時是個很好的方法。)" #: libraries/display_import.lib.php:228 -#, fuzzy -#| msgid "Number of records (queries) to skip from start" msgid "Number of rows to skip, starting from the first row:" -msgstr "開始時略過多少行記錄 (語法)" +msgstr "從首行起要跳過的行數:" #: libraries/display_import.lib.php:250 msgid "Format-Specific Options:" -msgstr "" +msgstr "格式特定選項:" #: libraries/display_select_lang.lib.php:44 #: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71 msgid "Language" -msgstr "" +msgstr "Language" #: libraries/display_tbl.lib.php:386 #, php-format msgid "%d is not valid row number." -msgstr "%d 不是一個有效的列數數目." +msgstr "%d 不是有效行數" #: libraries/display_tbl.lib.php:392 -#, fuzzy -#| msgid "row(s) starting from record #" msgid "row(s) starting from row #" -msgstr "筆記錄,開始列數:" +msgstr "行,起始行 #" #: libraries/display_tbl.lib.php:397 msgid "horizontal" @@ -4801,7 +4823,7 @@ msgstr "水平" #: libraries/display_tbl.lib.php:398 msgid "horizontal (rotated headers)" -msgstr "垂直 (旋轉標題)" +msgstr "水平 (旋轉標題)" #: libraries/display_tbl.lib.php:399 msgid "vertical" @@ -4810,11 +4832,11 @@ msgstr "垂直" #: libraries/display_tbl.lib.php:405 #, php-format msgid "in %s mode and repeat headers after %s cells" -msgstr "顯示為 %s 方式 及 每隔 %s 行顯示欄名" +msgstr "以 %s 模式顯示,並且在 %s 行後重複標題" #: libraries/display_tbl.lib.php:499 msgid "Sort by key" -msgstr "依鍵名排序" +msgstr "主鍵排序" #: libraries/display_tbl.lib.php:546 libraries/export/codegen.php:40 #: libraries/export/csv.php:31 libraries/export/excel.php:36 @@ -4833,99 +4855,99 @@ msgstr "依鍵名排序" #: tbl_structure.php:847 #, fuzzy msgid "Options" -msgstr "管理" +msgstr "選項" #: libraries/display_tbl.lib.php:551 libraries/display_tbl.lib.php:561 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" -msgstr "顯示部份文字" +msgstr "部分內容" #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:565 #, fuzzy #| msgid "Full Texts" msgid "Full texts" -msgstr "顯示完整文字" +msgstr "完整內容" #: libraries/display_tbl.lib.php:578 #, fuzzy msgid "Relational key" -msgstr "關聯概要" +msgstr "關聯鍵" #: libraries/display_tbl.lib.php:579 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" -msgstr "關聯概要" +msgstr "關聯顯示欄位" #: libraries/display_tbl.lib.php:586 msgid "Show binary contents" -msgstr "" +msgstr "顯示二進制內容" #: libraries/display_tbl.lib.php:588 msgid "Show BLOB contents" -msgstr "" +msgstr "顯示 BLOB 內容" #: libraries/display_tbl.lib.php:598 libraries/relation.lib.php:123 #: libraries/tbl_properties.inc.php:142 transformation_overview.php:46 msgid "Browser transformation" -msgstr "瀏覽器轉換方式" +msgstr "瀏覽器轉換" -#: libraries/display_tbl.lib.php:1194 +#: libraries/display_tbl.lib.php:1201 msgid "Copy" -msgstr "" +msgstr "複製" -#: libraries/display_tbl.lib.php:1209 libraries/display_tbl.lib.php:1221 +#: libraries/display_tbl.lib.php:1216 libraries/display_tbl.lib.php:1228 msgid "The row has been deleted" -msgstr "記錄已被刪除" +msgstr "已刪除該行" -#: libraries/display_tbl.lib.php:1248 libraries/display_tbl.lib.php:2159 +#: libraries/display_tbl.lib.php:1255 libraries/display_tbl.lib.php:2184 #: server_processlist.php:92 msgid "Kill" -msgstr "Kill" +msgstr "中止" -#: libraries/display_tbl.lib.php:2033 +#: libraries/display_tbl.lib.php:2058 msgid "in query" msgstr "查詢中" -#: libraries/display_tbl.lib.php:2051 +#: libraries/display_tbl.lib.php:2076 msgid "Showing rows" -msgstr "顯示記錄" +msgstr "顯示行" -#: libraries/display_tbl.lib.php:2061 +#: libraries/display_tbl.lib.php:2086 msgid "total" msgstr "總計" -#: libraries/display_tbl.lib.php:2069 sql.php:653 +#: libraries/display_tbl.lib.php:2094 sql.php:653 #, php-format msgid "Query took %01.4f sec" -msgstr "查詢需時 %01.4f 秒" +msgstr "查詢花費 %01.4f 秒" -#: libraries/display_tbl.lib.php:2192 querywindow.php:114 querywindow.php:118 +#: libraries/display_tbl.lib.php:2217 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:2265 +#: libraries/display_tbl.lib.php:2290 msgid "Query results operations" -msgstr "查詢結果操作" +msgstr "查詢結果選項" -#: libraries/display_tbl.lib.php:2293 +#: libraries/display_tbl.lib.php:2318 msgid "Print view (with full texts)" -msgstr "列印檢視 (顯示完整文字)" +msgstr "列印預覽 (全文顯示)" -#: libraries/display_tbl.lib.php:2337 tbl_chart.php:81 +#: libraries/display_tbl.lib.php:2362 tbl_chart.php:81 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" -msgstr "顯示 PDF 概要" +msgstr "顯示圖表" -#: libraries/display_tbl.lib.php:2356 +#: libraries/display_tbl.lib.php:2381 #, fuzzy msgid "Create view" -msgstr "伺服器版本" +msgstr "建立 view" -#: libraries/display_tbl.lib.php:2471 +#: libraries/display_tbl.lib.php:2496 msgid "Link not found" msgstr "找不到連結" @@ -4935,11 +4957,11 @@ msgstr "版本資訊" #: libraries/engines/innodb.lib.php:22 msgid "Data home directory" -msgstr "資料主目錄" +msgstr "資料主資料夾" #: libraries/engines/innodb.lib.php:23 msgid "The common part of the directory path for all InnoDB data files." -msgstr "所有 InnoDB 資料檔案的主資料目錄位置." +msgstr "所有 InnoDB 資料檔案的公共路徑." #: libraries/engines/innodb.lib.php:26 msgid "Data files" @@ -4947,27 +4969,27 @@ msgstr "資料檔案" #: libraries/engines/innodb.lib.php:29 msgid "Autoextend increment" -msgstr "自動伸延大小" +msgstr "自動增加" #: libraries/engines/innodb.lib.php:30 msgid "" " The increment size for extending the size of an autoextending tablespace " "when it becomes full." -msgstr "當資料表容量接近滿時, 自動增大容量的大小." +msgstr " 資料表空間不足時自動增加的大小" #: libraries/engines/innodb.lib.php:34 msgid "Buffer pool size" -msgstr "緩衝區大小" +msgstr "快取池大小" #: libraries/engines/innodb.lib.php:35 msgid "" "The size of the memory buffer InnoDB uses to cache data and indexes of its " "tables." -msgstr "InnoDB 資料表用於快取資料及索引時使用的記憶體綬緩衝大小." +msgstr "InnoDB 用於快取資料和索引要使用的記憶體快取大小" #: libraries/engines/innodb.lib.php:134 msgid "Buffer Pool" -msgstr "緩衝區" +msgstr "快取池" #: libraries/engines/innodb.lib.php:135 server_status.php:432 msgid "InnoDB Status" @@ -4975,63 +4997,63 @@ msgstr "InnoDB 狀態" #: libraries/engines/innodb.lib.php:163 msgid "Buffer Pool Usage" -msgstr "緩衝區使用空間" +msgstr "快取池使用情況" #: libraries/engines/innodb.lib.php:171 msgid "pages" -msgstr "頁" +msgstr "頁數" #: libraries/engines/innodb.lib.php:180 msgid "Free pages" -msgstr "閒置頁" +msgstr "空閒頁" #: libraries/engines/innodb.lib.php:186 msgid "Dirty pages" -msgstr "問題頁" +msgstr "髒頁" #: libraries/engines/innodb.lib.php:192 msgid "Pages containing data" -msgstr "包含資料頁" +msgstr "非空頁" #: libraries/engines/innodb.lib.php:198 msgid "Pages to be flushed" -msgstr "強迫更新頁" +msgstr "要重新整理的頁" #: libraries/engines/innodb.lib.php:204 msgid "Busy pages" -msgstr "繁忙頁" +msgstr "負載頁" #: libraries/engines/innodb.lib.php:213 msgid "Latched pages" -msgstr "鎖上頁" +msgstr "鎖定頁" #: libraries/engines/innodb.lib.php:224 msgid "Buffer Pool Activity" -msgstr "緩衝區活動率" +msgstr "快取池操作" #: libraries/engines/innodb.lib.php:228 msgid "Read requests" -msgstr "讀取要求" +msgstr "讀請求" #: libraries/engines/innodb.lib.php:234 msgid "Write requests" -msgstr "寫入要求" +msgstr "寫請求" #: libraries/engines/innodb.lib.php:240 msgid "Read misses" -msgstr "讀取遺漏" +msgstr "讀缺失數" #: libraries/engines/innodb.lib.php:246 msgid "Write waits" -msgstr "寫入等候" +msgstr "寫等待數" #: libraries/engines/innodb.lib.php:252 msgid "Read misses in %" -msgstr "讀取遺漏 %" +msgstr "讀缺失率" #: libraries/engines/innodb.lib.php:260 msgid "Write waits in %" -msgstr "寫入等候 %" +msgstr "寫等待率" #: libraries/engines/myisam.lib.php:22 msgid "Data pointer size" @@ -5042,24 +5064,23 @@ msgid "" "The default pointer size in bytes, to be used by CREATE TABLE for MyISAM " "tables when no MAX_ROWS option is specified." msgstr "" -"預設的資料指標大小時當以 CREATE TABLE 建立 MyISAM 資料表, 而並無設定最大列數 " -"(MAX_ROWS) 時, 將會以位完組為設定大小" +"預設資料指標的大小 (單位:字元),用於在沒有指定 MAX_ROWS 選項的情況下建立 " +"MyISAM 資料表" #: libraries/engines/myisam.lib.php:27 msgid "Automatic recovery mode" -msgstr "自動修復模式" +msgstr "自動恢復模式" #: libraries/engines/myisam.lib.php:28 msgid "" "The mode for automatic recovery of crashed MyISAM tables, as set via the --" "myisam-recover server startup option." msgstr "" -"這個模式將會自動修復損壞之 MyISAM 資料表, 如同於伺服器啟動設定加入 --myisam-" -"recover 選項." +"該模式用於自動恢復崩潰的 MyISAM 表,可在啓動時使用 --myisam-recover 參數" #: libraries/engines/myisam.lib.php:31 msgid "Maximum size for temporary sort files" -msgstr "臨時排序檔案最大容量" +msgstr "臨時排序檔案的最大大小" #: libraries/engines/myisam.lib.php:32 msgid "" @@ -5067,12 +5088,12 @@ msgid "" "creating a MyISAM index (during REPAIR TABLE, ALTER TABLE, or LOAD DATA " "INFILE)." msgstr "" -"MySQL 用於重建 MyISAM 索引 (REPAIR TABLE, ALTER TABLE, 或 LOAD DATA INFILE) " -"時的臨時檔案大小." +"重建 MyISAM 索引時 MySQL 最多可以使用的臨時檔案大小 (在 REPAIR TABLE、ALTER " +"TABLE 或 LOAD DATA INFILE 時)" #: libraries/engines/myisam.lib.php:36 msgid "Maximum size for temporary files on index creation" -msgstr "臨時檔案建立索引時最大的容量" +msgstr "建立索引的臨時檔案最大大小" #: libraries/engines/myisam.lib.php:37 msgid "" @@ -5080,53 +5101,54 @@ msgid "" "than using the key cache by the amount specified here, prefer the key cache " "method." msgstr "" -"如臨時檔案用作快速 MyISAM 索引時大於這個設定的容量, 建議使用鍵名快取方式." +"如果用於建立 MyISAM 快速索引的臨時檔案大於在此指定的鍵快取,則建議使用鍵緩存" #: libraries/engines/myisam.lib.php:41 msgid "Repair threads" -msgstr "修復工作" +msgstr "修復程序" #: libraries/engines/myisam.lib.php:42 msgid "" "If this value is greater than 1, MyISAM table indexes are created in " "parallel (each index in its own thread) during the repair by sorting process." -msgstr "如數值大於 1 , MyISAM 資料表於修復時之索引將會以同步建立." +msgstr "" +"如果該值大於 1,在進行排序過程的修復操作時 MyISAM 表的索引將會同時 (每個索引" +"都有自己的程序) 建立" #: libraries/engines/myisam.lib.php:46 msgid "Sort buffer size" -msgstr "排序緩衝大小" +msgstr "排序快取大小" #: libraries/engines/myisam.lib.php:47 msgid "" "The buffer that is allocated when sorting MyISAM indexes during a REPAIR " "TABLE or when creating indexes with CREATE INDEX or ALTER TABLE." msgstr "" -"這個緩衝大小是分配給在執行修復資料表指令 (REPAIR TABLE) 、執行 CREATE INDEX " -"或 ALTER TABLE 指令時, 用於排序 MyISAM 索引之用" +"在修復表 (REPAIR TABLE) 的過程中進行排序 MyISAM 的索引或透過建立索引 (CREATE " +"INDEX) 和修改表 (ALTER TABLE) 建立索引時所要分配的快取大小" #: libraries/engines/pbms.lib.php:30 msgid "Garbage Threshold" -msgstr "" +msgstr "垃圾閾值" #: libraries/engines/pbms.lib.php:31 msgid "The percentage of garbage in a repository file before it is compacted." -msgstr "" +msgstr "在庫檔案被壓縮之前垃圾資料所佔的比率" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:69 #: server_synchronize.php:1178 -#, fuzzy msgid "Port" -msgstr "排序" +msgstr "連接埠" #: libraries/engines/pbms.lib.php:36 msgid "" "The port for the PBMS stream-based communications. Setting this value to 0 " "will disable HTTP communication with the daemon." -msgstr "" +msgstr "PBMS 基於流的通信連接埠。設爲 0 將禁止與該伺服器的 HTTP 通信" #: libraries/engines/pbms.lib.php:40 msgid "Repository Threshold" -msgstr "" +msgstr "庫閾值" #: libraries/engines/pbms.lib.php:41 msgid "" @@ -5134,20 +5156,24 @@ msgid "" "indicate the unit of the value. A value in bytes is assumed when no unit is " "specified." msgstr "" +"一個 BLOB 庫檔案的最大大小。可以使用 Kb、MB 或 GB 來表示單位。不指定則使用默" +"認單位:字元" #: libraries/engines/pbms.lib.php:45 msgid "Temp Blob Timeout" -msgstr "" +msgstr "臨時 Blob 超時" #: libraries/engines/pbms.lib.php:46 msgid "" "The timeout, in seconds, for temporary BLOBs. Uploaded BLOB data is removed " "after this time, unless they are referenced by a record in the database." msgstr "" +"臨時 BLOB 的超時時間 (單位:秒)。上傳的 BLOB 資料將在此時間後刪除,除非其被數" +"據庫中的記錄所引用" #: libraries/engines/pbms.lib.php:50 msgid "Temp Log Threshold" -msgstr "" +msgstr "臨時日誌閾值" #: libraries/engines/pbms.lib.php:51 msgid "" @@ -5155,61 +5181,63 @@ msgid "" "indicate the unit of the value. A value in bytes is assumed when no unit is " "specified." msgstr "" +"一個臨時 BLOB 日志檔案的最大大小。可以使用 Kb、MB 或 GB 作爲單位。若不寫單" +"位,預設爲字元" #: libraries/engines/pbms.lib.php:55 msgid "Max Keep Alive" -msgstr "" +msgstr "最大保持連線" #: libraries/engines/pbms.lib.php:56 msgid "" "The timeout for inactive connection with the keep-alive flag set. After this " "time the connection will be closed. The time-out is in milliseconds (1/1000)." msgstr "" +"keep-alive 標記所設定的不操作連線超時時間。在此時間後連線將被關閉。單位:毫秒" #: libraries/engines/pbms.lib.php:60 msgid "Metadata Headers" -msgstr "" +msgstr "後設資料頭" #: libraries/engines/pbms.lib.php:61 msgid "" "A \":\" delimited list of metadata headers to be used to initialize the " "pbms_metadata_header table when a database is created." msgstr "" +"建立資料庫時用來原始化 pbms_metadata_header 表的用“:”分隔的後設資料頭列表" #: libraries/engines/pbms.lib.php:94 #, php-format msgid "" "Documentation and further information about PBMS can be found on %sThe " "PrimeBase Media Streaming home page%s." -msgstr "" +msgstr "關於 PBMS 的檔案和更多資訊請參見 %sPrimeBase Media Streaming 首頁%s" #: libraries/engines/pbms.lib.php:96 libraries/engines/pbxt.lib.php:127 -#, fuzzy -#| msgid "Relations" msgid "Related Links" -msgstr "關聯" +msgstr "相關連結" #: libraries/engines/pbms.lib.php:98 msgid "The PrimeBase Media Streaming Blog by Barry Leslie" -msgstr "" +msgstr "Barry 的 PrimeBase 開發博客 —— Barry Leslie 著" #: libraries/engines/pbms.lib.php:99 msgid "PrimeBase XT Home Page" -msgstr "" +msgstr "PrimeBase XT 首頁" #: libraries/engines/pbxt.lib.php:22 msgid "Index cache size" -msgstr "" +msgstr "索引快取大小" #: libraries/engines/pbxt.lib.php:23 msgid "" "This is the amount of memory allocated to the index cache. Default value is " "32MB. The memory allocated here is used only for caching index pages." -msgstr "" +msgstr "用於索引快取的記憶體大小。預設值爲 32MB。該快取僅用於快取索引頁" #: libraries/engines/pbxt.lib.php:27 msgid "Record cache size" -msgstr "" +msgstr "記錄快取大小" #: libraries/engines/pbxt.lib.php:28 msgid "" @@ -5217,50 +5245,52 @@ msgid "" "table data. The default value is 32MB. This memory is used to cache changes " "to the handle data (.xtd) and row pointer (.xtr) files." msgstr "" +"用於快取表資料的快取記憶體大小。預設值爲 32MB。該快取用於記錄處理器資料 (*." +"xtd) 和行指標 (*.xtr) 檔案" #: libraries/engines/pbxt.lib.php:32 msgid "Log cache size" -msgstr "" +msgstr "日誌快取大小" #: libraries/engines/pbxt.lib.php:33 msgid "" "The amount of memory allocated to the transaction log cache used to cache on " "transaction log data. The default is 16MB." -msgstr "" +msgstr "用於快取交易日誌的記憶體快取區大小。預設值爲 16MB" #: libraries/engines/pbxt.lib.php:37 msgid "Log file threshold" -msgstr "" +msgstr "日志檔案閾值" #: libraries/engines/pbxt.lib.php:38 msgid "" "The size of a transaction log before rollover, and a new log is created. The " "default value is 16MB." -msgstr "" +msgstr "回滾和新日誌建立前交易日誌的大小。預設值爲 16MB" #: libraries/engines/pbxt.lib.php:42 msgid "Transaction buffer size" -msgstr "" +msgstr "交易快取大小" #: libraries/engines/pbxt.lib.php:43 msgid "" "The size of the global transaction log buffer (the engine allocates 2 " "buffers of this size). The default is 1MB." -msgstr "" +msgstr "全域交易日誌快取 (資料引擎會分配兩個該大小的快取區)。預設值爲 1MB" #: libraries/engines/pbxt.lib.php:47 msgid "Checkpoint frequency" -msgstr "" +msgstr "檢查點頻率" #: libraries/engines/pbxt.lib.php:48 msgid "" "The amount of data written to the transaction log before a checkpoint is " "performed. The default value is 24MB." -msgstr "" +msgstr "在檢查點前最大可以寫入交易日誌的最大資料大小。預設值爲 24MB" #: libraries/engines/pbxt.lib.php:52 msgid "Data log threshold" -msgstr "" +msgstr "資料日誌閾值" #: libraries/engines/pbxt.lib.php:53 msgid "" @@ -5269,21 +5299,22 @@ msgid "" "value of this variable can be increased to increase the total amount of data " "that can be stored in the database." msgstr "" +"資料日志檔案的最大大小。預設值爲 64MB。PBXT 最多可以建立 32000 個資料日誌,可" +"用於所有的表。增加該值可以增加資料庫所能儲存資料的大小" #: libraries/engines/pbxt.lib.php:57 msgid "Garbage threshold" -msgstr "" +msgstr "垃圾閾值" #: libraries/engines/pbxt.lib.php:58 msgid "" "The percentage of garbage in a data log file before it is compacted. This is " "a value between 1 and 99. The default is 50." -msgstr "" +msgstr "資料日志檔案中壓縮前無效資料所佔的比率。值域爲 1 到 99,預設值爲50" #: libraries/engines/pbxt.lib.php:62 -#, fuzzy msgid "Log buffer size" -msgstr "排序緩衝大小" +msgstr "日誌快取大小" #: libraries/engines/pbxt.lib.php:63 msgid "" @@ -5291,26 +5322,28 @@ msgid "" "The engine allocates one buffer per thread, but only if the thread is " "required to write a data log." msgstr "" +"寫入資料日誌時使用的快取大小。預設值爲 256MB。資料引擎會爲每一個需要進行資料" +"日誌寫入的程序分配一個快取區" #: libraries/engines/pbxt.lib.php:67 msgid "Data file grow size" -msgstr "" +msgstr "資料檔案增長大小" #: libraries/engines/pbxt.lib.php:68 msgid "The grow size of the handle data (.xtd) files." -msgstr "" +msgstr "處理器資料檔案 (*.xtd) 增長大小" #: libraries/engines/pbxt.lib.php:72 msgid "Row file grow size" -msgstr "" +msgstr "行檔案增長大小" #: libraries/engines/pbxt.lib.php:73 msgid "The grow size of the row pointer (.xtr) files." -msgstr "" +msgstr "行指標檔案 (*.xtr) 增長大小" #: libraries/engines/pbxt.lib.php:77 msgid "Log file count" -msgstr "" +msgstr "日志檔案總數" #: libraries/engines/pbxt.lib.php:78 msgid "" @@ -5319,130 +5352,105 @@ msgid "" "will be deleted, otherwise they are renamed and given the next highest " "number." msgstr "" +"系統維護的交易日誌數量 (pbxt/system/*.xt)。如果日誌數量大於此值,舊的日誌將會" +"被刪除,或者被以升序數字序列重命名" #: 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." -msgstr "" +msgstr "關於 PBXT 的檔案和更多資訊請參見 %sPrimeBase XT 首頁%s" #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" -msgstr "" +msgstr "PrimeBase XT 博客 —— Paul McCullagh 著" #: libraries/engines/pbxt.lib.php:130 msgid "The PrimeBase Media Streaming (PBMS) home page" -msgstr "" +msgstr "PrimeBase Media Streaming (PBMS) 首頁" #: libraries/export/csv.php:21 libraries/import/csv.php:27 -#, fuzzy -#| msgid "Lines terminated by" msgid "Columns separated with:" -msgstr "「下一行」使用字元:" +msgstr "欄位分隔符號:" #: libraries/export/csv.php:22 libraries/import/csv.php:28 -#, fuzzy -#| msgid "Fields enclosed by" msgid "Columns enclosed with:" -msgstr "「欄位」使用字元:" +msgstr "內容分隔符號:" #: libraries/export/csv.php:23 libraries/import/csv.php:29 -#, fuzzy -#| msgid "Fields escaped by" msgid "Columns escaped with:" -msgstr "「ESCAPE」使用字元:" +msgstr "內容跳脫符號:" #: libraries/export/csv.php:24 libraries/import/csv.php:30 -#, fuzzy -#| msgid "Lines terminated by" msgid "Lines terminated with:" -msgstr "「下一行」使用字元:" +msgstr "換行符號:" #: libraries/export/csv.php:25 libraries/export/excel.php:22 #: libraries/export/htmlword.php:28 libraries/export/latex.php:79 #: libraries/export/ods.php:23 libraries/export/odt.php:59 #: libraries/export/xls.php:23 libraries/export/xlsx.php:23 -#, fuzzy -#| msgid "Replace NULL by" msgid "Replace NULL with:" -msgstr "將 NULL 取代為" +msgstr "將 NULL 替換爲:" #: libraries/export/csv.php:26 libraries/export/excel.php:23 msgid "Remove carriage return/line feed characters within columns" -msgstr "" +msgstr "刪除欄位中的回車換行符號" #: libraries/export/excel.php:32 -#, fuzzy -#| msgid "Excel edition" msgid "Excel edition:" msgstr "Excel 版本" #: libraries/export/htmlword.php:27 libraries/export/latex.php:69 #: libraries/export/odt.php:55 libraries/export/sql.php:132 #: libraries/export/texytext.php:25 libraries/export/xml.php:45 -#, fuzzy msgid "Data dump options" -msgstr "資料庫輸出選項" +msgstr "資料匯出選項" #: libraries/export/htmlword.php:135 libraries/export/odt.php:175 #: libraries/export/sql.php:1043 libraries/export/texytext.php:123 msgid "Dumping data for table" -msgstr "列出以下資料庫的數據:" +msgstr "轉存資料表中的資料" #: libraries/export/htmlword.php:188 libraries/export/odt.php:245 #: libraries/export/sql.php:862 libraries/export/texytext.php:170 msgid "Table structure for table" -msgstr "資料表格式:" +msgstr "表的結構" #: libraries/export/latex.php:13 -#, fuzzy -#| msgid "Content of table __TABLE__" msgid "Content of table @TABLE@" -msgstr "資料表 __TABLE__ 內容" +msgstr "@TABLE@ 表的內容" #: libraries/export/latex.php:14 msgid "(continued)" -msgstr "(連續)" +msgstr "(持續的)" #: libraries/export/latex.php:15 -#, fuzzy -#| msgid "Structure of table __TABLE__" msgid "Structure of table @TABLE@" -msgstr "資料表 __TABLE__ 結構" +msgstr "@TABLE@ 表的結構" #: libraries/export/latex.php:47 libraries/export/odt.php:39 #: libraries/export/sql.php:87 -#, fuzzy -#| msgid "Transformation options" msgid "Object creation options" -msgstr "轉換方式選項" +msgstr "物件建立選項" #: libraries/export/latex.php:51 libraries/export/latex.php:75 -#, fuzzy -#| msgid "Table caption" msgid "Table caption (continued)" -msgstr "資料表標題" +msgstr "表的副標題" #: libraries/export/latex.php:56 libraries/export/odt.php:42 #: libraries/export/sql.php:40 -#, fuzzy -#| msgid "Disable foreign key checks" msgid "Display foreign key relationships" -msgstr "暫定外來鍵 (Foreign Key) 檢查" +msgstr "顯示外部鍵的關聯" #: libraries/export/latex.php:59 libraries/export/odt.php:45 -#, fuzzy -#| msgid "Displaying Column Comments" msgid "Display comments" -msgstr "顯示欄位註解" +msgstr "顯示註釋" #: libraries/export/latex.php:62 libraries/export/odt.php:48 #: libraries/export/sql.php:44 -#, fuzzy -#| msgid "Available MIME types" msgid "Display MIME types" -msgstr "可使用 MIME 類型" +msgstr "顯示 MIME 類型" #: libraries/export/latex.php:139 libraries/export/sql.php:341 #: libraries/export/xml.php:105 libraries/header_printview.inc.php:56 @@ -5458,7 +5466,7 @@ msgstr "主機" #: libraries/export/latex.php:144 libraries/export/sql.php:342 #: libraries/export/xml.php:110 libraries/header_printview.inc.php:58 msgid "Generation Time" -msgstr "建立日期" +msgstr "產生日期" #: libraries/export/latex.php:145 libraries/export/sql.php:344 #: libraries/export/xml.php:111 main.php:162 @@ -5472,7 +5480,7 @@ msgstr "PHP 版本" #: libraries/export/mediawiki.php:15 msgid "MediaWiki Table" -msgstr "" +msgstr "MediaWiki 表" #: libraries/export/pdf.php:17 msgid "PDF" @@ -5480,83 +5488,78 @@ msgstr "PDF" #: libraries/export/pdf.php:23 msgid "(Generates a report containing the data of a single table)" -msgstr "" +msgstr "(根據一個資料表的資料產生報告)" #: libraries/export/pdf.php:24 -#, fuzzy -#| msgid "Report title" msgid "Report title:" -msgstr "報告標題" +msgstr "報告標題:" #: libraries/export/php_array.php:16 msgid "PHP array" -msgstr "" +msgstr "PHP 陣列" #: libraries/export/sql.php:33 msgid "" "Display comments (includes info such as export timestamp, PHP version, " "and server version)" -msgstr "" +msgstr "顯示註釋 (包括匯出時間、PHP 版本和伺服器版本等資訊)" #: libraries/export/sql.php:35 -#, fuzzy -#| msgid "Add custom comment into header (\\n splits lines)" msgid "Additional custom header comment (\\n splits lines):" -msgstr "於標題加入個人註解 (\\n 開新行)" +msgstr "在檔案頭新增自訂註釋 (\\n 爲換行):" #: libraries/export/sql.php:37 msgid "" "Include a timestamp of when databases were created, last updated, and last " "checked" -msgstr "" +msgstr "包含資料庫建立、最後更新和最後檢查的時間" #: libraries/export/sql.php:65 msgid "" "Database system or older MySQL server to maximize output compatibility with:" -msgstr "" +msgstr "最大程度相容資料庫系統或舊版本的 MySQL 伺服器:" #: libraries/export/sql.php:72 libraries/export/sql.php:105 #: libraries/export/sql.php:107 -#, fuzzy, php-format -#| msgid "Statements" +#, php-format msgid "Add %s statement" -msgstr "敘述" +msgstr "新增 %s 指令" #: libraries/export/sql.php:91 -#, fuzzy -#| msgid "Statements" msgid "Add statements:" -msgstr "敘述" +msgstr "新增指令:" #: libraries/export/sql.php:111 msgid "CREATE TABLE options:" -msgstr "" +msgstr "CREATE TABLE 選項:" #: libraries/export/sql.php:123 msgid "" "Enclose table and field names with backquotes (Protects field and table " "names formed with special characters or keywords)" msgstr "" +"給資料表名稱和欄位名稱加上反引號 (保護名稱中含有特殊字元或保留字的欄位和" +"表)" #: libraries/export/sql.php:136 msgid "Instead of INSERT statements, use:" -msgstr "" +msgstr "代替 INSERT (插入) 指令,使用:" #: libraries/export/sql.php:138 msgid "INSERT DELAYED statements" -msgstr "" +msgstr "INSERT DELAYED (延遲插入) 指令" #: libraries/export/sql.php:140 msgid "INSERT IGNORE statements" -msgstr "" +msgstr "INSERT IGNORE (忽略插入) 指令" #: libraries/export/sql.php:147 msgid "Function to use when dumping data:" -msgstr "" +msgstr "匯出資料時所使用的函數:" #: libraries/export/sql.php:151 msgid "Syntax to use when inserting data:" -msgstr "" +msgstr "插入資料時所使用的語法:" #: libraries/export/sql.php:154 msgid "" @@ -5564,6 +5567,9 @@ 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)" #: libraries/export/sql.php:155 msgid "" @@ -5571,70 +5577,75 @@ 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)" #: libraries/export/sql.php:156 msgid "" "both of the above
      Example: INSERT INTO " "tbl_name (col_A,col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" msgstr "" +"以上兼有
      如:INSERT INTO tbl_name (col_A," +"col_B) VALUES (1,2,3), (4,5,6), (7,8,9)" #: libraries/export/sql.php:157 msgid "" "neither of the above
      Example: INSERT INTO " "tbl_name VALUES (1,2,3)" msgstr "" +"以上均不
      如:INSERT INTO tbl_name VALUES " +"(1,2,3)" #: libraries/export/sql.php:167 msgid "" "Dump binary columns in hexadecimal notation (for example, \"abc\" becomes " "0x616263)" -msgstr "" +msgstr "匯出二進制欄位時用十六進制標記 (例如,“abc”將用 0x616263 表示)" #: libraries/export/sql.php:171 msgid "" "Dump TIMESTAMP columns in UTC (enables TIMESTAMP columns to be dumped and " "reloaded between servers in different time zones)" msgstr "" +"匯出 TIMESTAMP 欄位時用 UTC 時區 (允許在不同時區的伺服器間匯出和重新載入 " +"TIMESTAMP 欄位)" #: libraries/export/sql.php:209 libraries/export/xml.php:34 -#, fuzzy msgid "Procedures" -msgstr "處理" +msgstr "Procedure" #: libraries/export/sql.php:223 libraries/export/xml.php:32 -#, fuzzy msgid "Functions" msgstr "函數" #: libraries/export/sql.php:695 msgid "Constraints for dumped tables" -msgstr "備份資料表限制" +msgstr "匯出資料表的 Constraints" #: libraries/export/sql.php:704 msgid "Constraints for table" -msgstr "資料表限制" +msgstr "資料表的 Constraints" #: libraries/export/sql.php:804 msgid "MIME TYPES FOR TABLE" -msgstr "MIME TYPES FOR TABLE" +msgstr "MIME 類型表" #: libraries/export/sql.php:816 msgid "RELATIONS FOR TABLE" -msgstr "RELATIONS FOR TABLE" +msgstr "表的關聯" #: libraries/export/sql.php:873 libraries/export/xml.php:38 #: libraries/tbl_triggers.lib.php:18 msgid "Triggers" -msgstr "" +msgstr "觸發器" #: libraries/export/sql.php:885 -#, fuzzy msgid "Structure for view" -msgstr "只有結構" +msgstr " view結構" #: libraries/export/sql.php:894 msgid "Stand-in structure for view" -msgstr "" +msgstr "替換 view以便查看" #: libraries/export/xml.php:17 libraries/import/xml.php:21 msgid "XML" @@ -5642,17 +5653,15 @@ msgstr "XML" #: libraries/export/xml.php:30 msgid "Object creation options (all are recommended)" -msgstr "" +msgstr "物件建立選項 (推薦全選)" #: libraries/export/xml.php:40 -#, fuzzy -#| msgid "View" msgid "Views" -msgstr "檢視" +msgstr " view" #: libraries/export/xml.php:47 msgid "Export contents" -msgstr "" +msgstr "匯出內容" #: libraries/footer.inc.php:188 libraries/footer.inc.php:191 #: libraries/footer.inc.php:194 @@ -5665,54 +5674,53 @@ msgstr "SQL 查詢結果" #: libraries/header_printview.inc.php:59 msgid "Generated by" -msgstr "建立" +msgstr "產生者" #: libraries/import.lib.php:153 sql.php:649 tbl_change.php:179 #: tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." -msgstr "MySQL 傳回的查詢結果為空 (原因可能為:沒有找到符合條件的記錄)" +msgstr "MySQL 返回的查詢結果爲空 (即零行)" #: libraries/import.lib.php:1141 msgid "" "The following structures have either been created or altered. Here you can:" -msgstr "" +msgstr "下列結構被建立或修改。您可以:" #: libraries/import.lib.php:1142 msgid "View a structure`s contents by clicking on its name" -msgstr "" +msgstr "點選它的名字查看內容" #: libraries/import.lib.php:1143 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" -msgstr "" +msgstr "點選相應的“選項”連結修改它的設定" #: libraries/import.lib.php:1144 msgid "Edit its structure by following the \"Structure\" link" -msgstr "" +msgstr "點選“結構”連結編輯它的結構" #: libraries/import.lib.php:1147 -#, fuzzy msgid "Go to database" -msgstr "沒有資料庫" +msgstr "轉到資料庫" #: libraries/import.lib.php:1150 libraries/import.lib.php:1174 msgid "settings" -msgstr "" +msgstr "設定" #: libraries/import.lib.php:1169 msgid "Go to table" -msgstr "" +msgstr "轉到資料表" #: libraries/import.lib.php:1178 msgid "Go to view" -msgstr "" +msgstr "轉到 view" #: libraries/import/csv.php:37 libraries/import/ods.php:26 #: libraries/import/xls.php:24 libraries/import/xlsx.php:24 msgid "" "The first line of the file contains the table column names (if this is " "unchecked, the first line will become part of the data)" -msgstr "" +msgstr "檔案首行包含資料表的欄位名稱 (若未選此項,首行將被認爲是資料)" #: libraries/import/csv.php:39 msgid "" @@ -5720,18 +5728,18 @@ msgid "" "database, list the corresponding column names here. Column names must be " "separated by commas and not enclosed in quotations." msgstr "" +"若檔案每行的資料和資料庫中的順序不一致,請在此列出對應的欄位名稱。欄位名稱間" +"用半角逗號分隔且不能用引號括起" #: libraries/import/csv.php:41 -#, fuzzy -#| msgid "Column names" msgid "Column names: " -msgstr "欄位名稱" +msgstr "欄位名稱:" #: libraries/import/csv.php:61 libraries/import/csv.php:74 #: libraries/import/csv.php:79 libraries/import/csv.php:84 #, php-format msgid "Invalid parameter for CSV import: %s" -msgstr "CSV 載入時參數錯誤: %s" +msgstr "匯入 CSV 檔案 %s 時有無效參數" #: libraries/import/csv.php:131 #, php-format @@ -5739,27 +5747,27 @@ msgid "" "Invalid column (%s) specified! Ensure that columns names are spelled " "correctly, separated by commas, and not enclosed in quotes." msgstr "" +"無效欄位 (%s)!請檢查欄位名稱是否拼寫正確,使用半角逗號分隔,並且不要用引號括" +"起" #: libraries/import/csv.php:189 libraries/import/csv.php:436 #, php-format msgid "Invalid format of CSV input on line %d." -msgstr "Invalid format of CSV 檔案第 %d 行中之格式錯誤." +msgstr "CSV 輸入的第 %d 行格式有錯" #: libraries/import/csv.php:324 -#, fuzzy, php-format -#| msgid "Invalid field count in CSV input on line %d." +#, php-format msgid "Invalid column count in CSV input on line %d." -msgstr "CSV 檔案第 %d 行中之欄位總數錯誤." +msgstr "CSV 輸入的第 %d 行欄位數有錯" #: libraries/import/docsql.php:27 msgid "DocSQL" -msgstr "" +msgstr "DocSQL" #: libraries/import/docsql.php:31 libraries/tbl_properties.inc.php:617 #: server_synchronize.php:427 server_synchronize.php:870 -#, fuzzy msgid "Table name" -msgstr "資料表名稱" +msgstr "資料資料表名稱" #: libraries/import/ldi.php:44 libraries/schema/User_Schema.class.php:316 #: view_create.php:147 @@ -5768,43 +5776,39 @@ msgstr "欄位名稱" #: libraries/import/ldi.php:56 msgid "This plugin does not support compressed imports!" -msgstr "這外掛程式不支援壓縮輸入!" +msgstr "該插件不支援匯入檔案!" #: libraries/import/ods.php:28 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" -msgstr "" +msgstr "匯入百分數爲小數 (如: 12.00% 將被匯入爲 .12)" #: libraries/import/ods.php:29 msgid "Import currencies (ex. $5.00 to 5.00)" -msgstr "" +msgstr "匯入貨幣 (如: $5.00 將被匯入爲 5.00)" #: libraries/import/sql.php:32 -#, fuzzy -#| msgid "SQL compatibility mode" msgid "SQL compatibility mode:" -msgstr "SQL 兼容模式" +msgstr "SQL 相容模式:" #: libraries/import/sql.php:42 msgid "Do not use AUTO_INCREMENT for zero values" -msgstr "" +msgstr "不要給零值使用自動新增 (AUTO_INCREMENT)" #: libraries/import/xml.php:74 libraries/import/xml.php:130 msgid "" "The XML file specified was either malformed or incomplete. Please correct " "the issue and try again." -msgstr "" +msgstr "該 XML 檔案有錯誤或者不完整。請修復錯誤後重試" #: libraries/kanji-encoding.lib.php:142 -#, fuzzy -#| msgid "None" msgctxt "None encoding conversion" msgid "None" -msgstr "不適用" +msgstr "無" #. l10n: This is currently used only in Japanese locales #: libraries/kanji-encoding.lib.php:148 msgid "Convert to Kana" -msgstr "" +msgstr "轉換爲假名" #: libraries/mult_submits.inc.php:249 #, fuzzy @@ -5831,16 +5835,16 @@ msgstr "" #: libraries/mult_submits.inc.php:477 tbl_replace.php:331 msgid "No change" -msgstr "沒有變更" +msgstr "無更改" #: libraries/mysql_charsets.lib.php:116 msgid "Charset" -msgstr "文字編碼 (Charset)" +msgstr "字集" #: libraries/mysql_charsets.lib.php:212 libraries/mysql_charsets.lib.php:413 #: tbl_change.php:552 msgid "Binary" -msgstr "二進制碼" +msgstr "二進制" #: libraries/mysql_charsets.lib.php:224 msgid "Bulgarian" @@ -5852,19 +5856,19 @@ msgstr "簡體中文" #: libraries/mysql_charsets.lib.php:230 libraries/mysql_charsets.lib.php:373 msgid "Traditional Chinese" -msgstr "繁體中文" +msgstr "正體中文" #: libraries/mysql_charsets.lib.php:234 libraries/mysql_charsets.lib.php:420 msgid "case-insensitive" -msgstr "大小寫不相符" +msgstr "不區分大小寫" #: libraries/mysql_charsets.lib.php:237 libraries/mysql_charsets.lib.php:422 msgid "case-sensitive" -msgstr "大小寫相符" +msgstr "區分大小寫" #: libraries/mysql_charsets.lib.php:240 msgid "Croatian" -msgstr "克羅西亞語" +msgstr "克羅地亞語" #: libraries/mysql_charsets.lib.php:243 msgid "Czech" @@ -5896,7 +5900,7 @@ msgstr "字典" #: libraries/mysql_charsets.lib.php:261 msgid "phone book" -msgstr "電話簿" +msgstr "電話本" #: libraries/mysql_charsets.lib.php:264 msgid "Hungarian" @@ -5920,7 +5924,7 @@ msgstr "立陶宛語" #: libraries/mysql_charsets.lib.php:279 libraries/mysql_charsets.lib.php:382 msgid "Korean" -msgstr "韓語" +msgstr "朝鮮語" #: libraries/mysql_charsets.lib.php:282 msgid "Persian" @@ -5932,7 +5936,7 @@ msgstr "波蘭語" #: libraries/mysql_charsets.lib.php:288 libraries/mysql_charsets.lib.php:336 msgid "West European" -msgstr "西歐語文" +msgstr "西歐" #: libraries/mysql_charsets.lib.php:291 msgid "Romanian" @@ -5972,7 +5976,7 @@ msgstr "烏克蘭語" #: libraries/mysql_charsets.lib.php:318 libraries/mysql_charsets.lib.php:327 msgid "Unicode" -msgstr "統一碼 (Unicode)" +msgstr "Unicode" #: libraries/mysql_charsets.lib.php:318 libraries/mysql_charsets.lib.php:327 #: libraries/mysql_charsets.lib.php:336 libraries/mysql_charsets.lib.php:343 @@ -5982,7 +5986,7 @@ msgstr "多語言" #: libraries/mysql_charsets.lib.php:343 msgid "Central European" -msgstr "中歐語" +msgstr "中歐" #: libraries/mysql_charsets.lib.php:348 msgid "Russian" @@ -5990,11 +5994,11 @@ msgstr "俄語" #: libraries/mysql_charsets.lib.php:365 msgid "Baltic" -msgstr "波羅的海語" +msgstr "巴拉克語" #: libraries/mysql_charsets.lib.php:370 msgid "Armenian" -msgstr "美式英語" +msgstr "亞美尼亞語" #: libraries/mysql_charsets.lib.php:376 msgid "Cyrillic" @@ -6010,7 +6014,7 @@ msgstr "希伯來語" #: libraries/mysql_charsets.lib.php:388 msgid "Georgian" -msgstr "格魯吉亞語" +msgstr "喬治亞語" #: libraries/mysql_charsets.lib.php:391 msgid "Greek" @@ -6018,43 +6022,41 @@ msgstr "希臘語" #: libraries/mysql_charsets.lib.php:394 msgid "Czech-Slovak" -msgstr "捷克語" +msgstr "捷克斯洛伐克語" #: libraries/mysql_charsets.lib.php:409 libraries/mysql_charsets.lib.php:416 msgid "unknown" -msgstr "不詳" +msgstr "未知" #: libraries/navigation_header.inc.php:57 #: libraries/navigation_header.inc.php:60 #: libraries/navigation_header.inc.php:61 msgid "Home" -msgstr "主目錄" +msgstr "首頁" #: libraries/navigation_header.inc.php:70 #: libraries/navigation_header.inc.php:73 #: libraries/navigation_header.inc.php:74 msgid "Log out" -msgstr "登出系統" +msgstr "登出" #: libraries/navigation_header.inc.php:111 #: libraries/navigation_header.inc.php:112 #: libraries/navigation_header.inc.php:114 msgid "Reload navigation frame" -msgstr "" +msgstr "重新整理導覽框架" #: libraries/plugin_interface.lib.php:336 -#, fuzzy -#| msgid "This format has no options" msgid "This format has no options" -msgstr "這種格式並無選項" +msgstr "該格式沒有選項" #: libraries/relation.lib.php:83 msgid "not OK" -msgstr "未能確定" +msgstr "錯誤" #: libraries/relation.lib.php:88 msgid "Enabled" -msgstr "啟動" +msgstr "已啓用" #: libraries/relation.lib.php:95 libraries/relation.lib.php:107 #: pmd_relation_new.php:68 @@ -6063,7 +6065,7 @@ msgstr "一般關聯功能" #: libraries/relation.lib.php:111 msgid "Display Features" -msgstr "功能顯示" +msgstr "顯示功能" #: libraries/relation.lib.php:117 msgid "Creation of PDFs" @@ -6071,20 +6073,20 @@ msgstr "建立 PDF" #: libraries/relation.lib.php:121 msgid "Displaying Column Comments" -msgstr "顯示欄位註解" +msgstr "顯示欄位註釋" #: libraries/relation.lib.php:126 msgid "" "Please see the documentation on how to update your column_comments table" -msgstr "請參看說明文件查詢如何更新 Column_comments 資料表" +msgstr "請參見檔案中關於如何更新您的 column_comments 表" #: libraries/relation.lib.php:131 libraries/sql_query_form.lib.php:410 msgid "Bookmarked SQL query" -msgstr "SQL 語法書籤" +msgstr "SQL 查詢書籤" #: libraries/relation.lib.php:135 querywindow.php:98 querywindow.php:205 msgid "SQL history" -msgstr "SQL 歷程" +msgstr "SQL 歷史" #: libraries/relation.lib.php:143 msgid "Persistent recently used tables" @@ -6096,48 +6098,52 @@ msgstr "" #: libraries/relation.lib.php:155 msgid "User preferences" -msgstr "" +msgstr "使用者偏好" #: libraries/relation.lib.php:159 msgid "Quick steps to setup advanced features:" -msgstr "" +msgstr "快速設定進階功能:" #: libraries/relation.lib.php:161 msgid "" "Create the needed tables with the script/create_tables.sql." -msgstr "" +msgstr "透過 script/create_tables.sql 建立必需的資料表" #: libraries/relation.lib.php:162 msgid "Create a pma user and give access to these tables." -msgstr "" +msgstr "建立一個使用者並授予其訪問上一步操作中建立的資料表的權限" #: libraries/relation.lib.php:163 msgid "" "Enable advanced features in configuration file (config.inc.php), for example by starting from config.sample.inc.php." msgstr "" +"在設定檔案 (config.inc.php) 中啓用進階功能,參見 config." +"sample.inc.php 中的範例" #: libraries/relation.lib.php:164 msgid "Re-login to phpMyAdmin to load the updated configuration file." -msgstr "" +msgstr "請重新登錄 phpMyAdmin 以載入新設定並使其生效" #: libraries/relation.lib.php:1200 msgid "no description" -msgstr "沒有說明" +msgstr "無說明" #: libraries/replication_gui.lib.php:53 msgid "Slave configuration" -msgstr "" +msgstr "從伺服器設定" #: libraries/replication_gui.lib.php:53 server_replication.php:353 msgid "Change or reconfigure master server" -msgstr "" +msgstr "修改或重新設定主伺服器" #: libraries/replication_gui.lib.php:54 msgid "" "Make sure, you have unique server-id in your configuration file (my.cnf). If " "not, please add the following line into [mysqld] section:" msgstr "" +"請確保在您的設定檔案 (my.cnf) 中具有唯一的伺服器標識 (server-id) 。若沒有,請" +"新增此行到 [mysqld] 一節中:" #: libraries/replication_gui.lib.php:57 libraries/replication_gui.lib.php:58 #: libraries/replication_gui.lib.php:251 libraries/replication_gui.lib.php:254 @@ -6145,21 +6151,20 @@ msgstr "" #: server_privileges.php:696 server_privileges.php:703 #: server_synchronize.php:1186 msgid "User name" -msgstr "使用者名稱" +msgstr "帳號" #: libraries/replication_gui.lib.php:105 msgid "Master status" -msgstr "" +msgstr "主伺服器狀態" #: libraries/replication_gui.lib.php:107 -#, fuzzy msgid "Slave status" -msgstr "顯示 slave 狀態" +msgstr "從伺服器狀態" #: libraries/replication_gui.lib.php:116 libraries/sql_query_form.lib.php:422 #: server_status.php:774 server_variables.php:57 msgid "Variable" -msgstr "資訊" +msgstr "變數" #: libraries/replication_gui.lib.php:117 pmd_general.php:476 #: pmd_general.php:535 pmd_general.php:658 pmd_general.php:775 @@ -6170,32 +6175,32 @@ msgstr "值" #: libraries/replication_gui.lib.php:175 server_binlog.php:202 msgid "Server ID" -msgstr "伺服器 ID" +msgstr "伺服器ID" #: libraries/replication_gui.lib.php:194 msgid "" "Only slaves started with the --report-host=host_name option are visible in " "this list." -msgstr "" +msgstr "僅透過 --report-host=主機名 參數啓動的從伺服器可見" #: libraries/replication_gui.lib.php:242 server_replication.php:192 msgid "Add slave replication user" -msgstr "" +msgstr "新增 slave replication 使用者" #: libraries/replication_gui.lib.php:256 server_privileges.php:698 msgid "Any user" -msgstr "任何使用者" +msgstr "任意使用者" #: libraries/replication_gui.lib.php:257 libraries/replication_gui.lib.php:325 #: libraries/replication_gui.lib.php:348 server_privileges.php:699 #: server_privileges.php:766 server_privileges.php:790 #: server_privileges.php:2008 server_privileges.php:2038 msgid "Use text field" -msgstr "文字輸入" +msgstr "使用文字域" #: libraries/replication_gui.lib.php:304 server_privileges.php:746 msgid "Any host" -msgstr "任何主機" +msgstr "任意主機" #: libraries/replication_gui.lib.php:308 server_privileges.php:750 msgid "Local" @@ -6203,17 +6208,17 @@ msgstr "本地" #: libraries/replication_gui.lib.php:314 server_privileges.php:755 msgid "This Host" -msgstr "指定主機" +msgstr "此主機" #: libraries/replication_gui.lib.php:320 server_privileges.php:761 msgid "Use Host Table" -msgstr "使用主機資料表" +msgstr "使用主機表" #: libraries/replication_gui.lib.php:333 server_privileges.php:774 msgid "" "When Host table is used, this field is ignored and values stored in Host " "table are used instead." -msgstr "" +msgstr "使用主機表時,此處的資料會被主機資料表中的資料所替換" #: libraries/replication_gui.lib.php:362 msgid "Generate Password" @@ -6224,10 +6229,9 @@ msgstr "產生密碼" #: libraries/schema/Pdf_Relation_Schema.class.php:489 #: libraries/schema/Svg_Relation_Schema.class.php:369 #: libraries/schema/Visio_Relation_Schema.class.php:213 -#, fuzzy, php-format -#| msgid "The \"%s\" table doesn't exist!" +#, php-format msgid "The %s table doesn't exist!" -msgstr "資料表 \"%s\" 不存在!" +msgstr "資料表 %s 不存在!" #: libraries/schema/Dia_Relation_Schema.class.php:253 #: libraries/schema/Eps_Relation_Schema.class.php:441 @@ -6236,29 +6240,28 @@ msgstr "資料表 \"%s\" 不存在!" #: libraries/schema/Visio_Relation_Schema.class.php:255 #, php-format msgid "Please configure the coordinates for table %s" -msgstr "請設定表格 %s 內的坐標" +msgstr "請設定表 %s 的座標" #: libraries/schema/Eps_Relation_Schema.class.php:751 #: libraries/schema/Pdf_Relation_Schema.class.php:851 #: libraries/schema/Svg_Relation_Schema.class.php:737 #: libraries/schema/Visio_Relation_Schema.class.php:502 -#, fuzzy, php-format -#| msgid "Schema of the \"%s\" database - Page %s" +#, php-format msgid "Schema of the %s database - Page %s" -msgstr "\"%s\" 資料庫概要 - 第 %s 頁" +msgstr "資料庫 %s 的大綱 - 第 %s 頁" #: libraries/schema/Export_Relation_Schema.class.php:174 msgid "This page does not contain any tables!" -msgstr "" +msgstr "此頁沒有包含任何資料表!" #: libraries/schema/Export_Relation_Schema.class.php:207 msgid "SCHEMA ERROR: " -msgstr "" +msgstr "大綱錯誤: " #: libraries/schema/Pdf_Relation_Schema.class.php:877 #: libraries/schema/Pdf_Relation_Schema.class.php:1116 msgid "Relational schema" -msgstr "關聯概要" +msgstr "關聯大綱" #: libraries/schema/Pdf_Relation_Schema.class.php:1091 msgid "Table of contents" @@ -6275,59 +6278,51 @@ msgstr "屬性" #: libraries/schema/Pdf_Relation_Schema.class.php:1265 tbl_printview.php:144 #: tbl_structure.php:204 tbl_tracking.php:271 msgid "Extra" -msgstr "附加" +msgstr "額外" #: libraries/schema/User_Schema.class.php:93 msgid "Create a page" -msgstr "建立新一頁" +msgstr "建立新頁" #: libraries/schema/User_Schema.class.php:99 -#, fuzzy -#| msgid "Page number:" msgid "Page name" -msgstr "頁碼:" +msgstr "頁面名稱" #: libraries/schema/User_Schema.class.php:103 -#, fuzzy -#| msgid "Automatic layout" msgid "Automatic layout based on" -msgstr "自動格式" +msgstr "自動排版,基於" #: libraries/schema/User_Schema.class.php:106 msgid "Internal relations" -msgstr "內部關聯" +msgstr "行內" #: libraries/schema/User_Schema.class.php:116 msgid "FOREIGN KEY" -msgstr "" +msgstr "外部鍵" #: libraries/schema/User_Schema.class.php:148 msgid "Please choose a page to edit" -msgstr "請選擇需要編輯的頁碼" +msgstr "請選擇需要編輯的頁" #: libraries/schema/User_Schema.class.php:153 -#, fuzzy -#| msgid "Select All" msgid "Select page" -msgstr "全選" +msgstr "選擇頁" #: libraries/schema/User_Schema.class.php:211 msgid "Select Tables" -msgstr "選擇資料表" +msgstr "選擇表" #: libraries/schema/User_Schema.class.php:346 -#, fuzzy -#| msgid "Relational schema" msgid "Display relational schema" -msgstr "關聯概要" +msgstr "顯示關聯大綱" #: libraries/schema/User_Schema.class.php:356 msgid "Select Export Relational Type" -msgstr "" +msgstr "選擇匯出關聯類型" #: libraries/schema/User_Schema.class.php:377 msgid "Show grid" -msgstr "顯示框格" +msgstr "顯示網格" #: libraries/schema/User_Schema.class.php:379 msgid "Show color" @@ -6335,15 +6330,15 @@ msgstr "顯示顏色" #: libraries/schema/User_Schema.class.php:381 msgid "Show dimension of tables" -msgstr "顯示表格大小" +msgstr "顯示資料表格大小" #: libraries/schema/User_Schema.class.php:384 msgid "Display all tables with the same width" -msgstr "以相同寬度顯示所有資料表?" +msgstr "以相同寬度顯示所有的表" #: libraries/schema/User_Schema.class.php:389 msgid "Only show keys" -msgstr "" +msgstr "僅顯示鍵" #: libraries/schema/User_Schema.class.php:391 msgid "Landscape" @@ -6351,13 +6346,11 @@ msgstr "橫向" #: libraries/schema/User_Schema.class.php:392 msgid "Portrait" -msgstr "直向" +msgstr "縱向" #: libraries/schema/User_Schema.class.php:394 -#, fuzzy -#| msgid "Creation" msgid "Orientation" -msgstr "建立" +msgstr "方向" #: libraries/schema/User_Schema.class.php:407 msgid "Paper size" @@ -6367,11 +6360,11 @@ msgstr "紙張大小" msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" -msgstr "本頁的參考到資料表已不存在. 您希望刪除這些參考嗎?" +msgstr "目前頁所引用的表不存在了。您是否想要刪除這些引用?" #: libraries/schema/User_Schema.class.php:469 msgid "Toggle scratchboard" -msgstr "轉換便條" +msgstr "切換草稿板" #. l10n: Text direction, use either ltr or rtl #: libraries/select_lang.lib.php:485 @@ -6382,13 +6375,11 @@ msgstr "ltr" #: libraries/select_lang.lib.php:502 #, php-format msgid "Unknown language: %1$s." -msgstr "不知名語言: %1$s." +msgstr "未知的語言:%1$s." #: libraries/select_server.lib.php:38 libraries/select_server.lib.php:44 -#, fuzzy -#| msgid "Server" msgid "Current Server" -msgstr "伺服器" +msgstr "目前伺服器" #: libraries/server_links.inc.php:55 server_processlist.php:21 msgid "Processes" @@ -6403,99 +6394,97 @@ msgstr "一般關聯功能" #: libraries/server_links.inc.php:79 server_synchronize.php:1091 #: server_synchronize.php:1099 msgid "Synchronize" -msgstr "" +msgstr "同步" #: libraries/server_links.inc.php:84 server_binlog.php:96 #: server_status.php:378 test/theme.php:120 msgid "Binary log" -msgstr "二進制記錄" +msgstr "二進制日誌" #: libraries/server_links.inc.php:95 server_engines.php:125 #: server_engines.php:129 server_status.php:430 test/theme.php:104 msgid "Variables" -msgstr "資訊" +msgstr "變數" #: libraries/server_links.inc.php:99 test/theme.php:108 msgid "Charsets" -msgstr "文字編碼" +msgstr "字集" #: libraries/server_links.inc.php:103 test/theme.php:112 msgid "Engines" msgstr "引擎" #: libraries/server_synchronize.lib.php:1337 server_synchronize.php:1115 -#, fuzzy msgid "Source database" -msgstr "搜索資料庫" +msgstr "來源資料庫" #: libraries/server_synchronize.lib.php:1339 #: libraries/server_synchronize.lib.php:1362 msgid "Current server" -msgstr "" +msgstr "目前伺服器" #: libraries/server_synchronize.lib.php:1341 #: libraries/server_synchronize.lib.php:1364 msgid "Remote server" -msgstr "" +msgstr "遠程伺服器" #: libraries/server_synchronize.lib.php:1344 msgid "Difference" -msgstr "" +msgstr "差異" #: libraries/server_synchronize.lib.php:1360 server_synchronize.php:1117 -#, fuzzy msgid "Target database" -msgstr "搜索資料庫" +msgstr "目標資料庫" #: libraries/sql_query_form.lib.php:223 #, php-format msgid "Run SQL query/queries on server %s" -msgstr "於伺服器 %s 執行 SQL 語法" +msgstr "在伺服器 %s 運行 SQL 查詢" #: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264 #, php-format msgid "Run SQL query/queries on database %s" -msgstr "在資料庫 %s 執行以下指令" +msgstr "在資料庫 %s 運行 SQL 查詢" #: libraries/sql_query_form.lib.php:296 navigation.php:296 #: setup/frames/index.inc.php:231 #, fuzzy msgid "Clear" -msgstr "日曆" +msgstr "清除" #: libraries/sql_query_form.lib.php:301 #, fuzzy #| msgid "Column names" msgid "Columns" -msgstr "欄位名稱" +msgstr "欄位" #: libraries/sql_query_form.lib.php:336 sql.php:948 sql.php:949 sql.php:966 msgid "Bookmark this SQL query" -msgstr "將此 SQL 語法加入書籤" +msgstr "將此 SQL 查詢加爲書籤" #: libraries/sql_query_form.lib.php:343 sql.php:960 msgid "Let every user access this bookmark" -msgstr "所有用者可讀取此書籤" +msgstr "讓所有使用者均可訪問此書籤" #: libraries/sql_query_form.lib.php:349 msgid "Replace existing bookmark of same name" -msgstr "取代相同名稱之書籤" +msgstr "替換現有的同名書籤" #: libraries/sql_query_form.lib.php:365 msgid "Do not overwrite this query from outside the window" -msgstr "不要將這語法覆蓋到本視窗外的SQL語法" +msgstr "不從視窗外覆蓋此查詢" #: libraries/sql_query_form.lib.php:372 msgid "Delimiter" -msgstr "" +msgstr "指令定界符" #: libraries/sql_query_form.lib.php:380 msgid " Show this query here again " -msgstr "重新顯示 SQL 語法 " +msgstr " 在此再次顯示此查詢 " #: libraries/sql_query_form.lib.php:443 msgid "View only" -msgstr "查看" +msgstr "僅查看" #: libraries/sql_query_form.lib.php:491 prefs_manage.php:241 msgid "Location of the text file" @@ -6503,15 +6492,15 @@ msgstr "文字檔案的位置" #: libraries/sql_query_form.lib.php:503 tbl_change.php:965 msgid "web server upload directory" -msgstr "Web 伺服器上載目錄" +msgstr "網站伺服器上傳資料夾" #: libraries/sqlparser.lib.php:134 msgid "" "There seems to be an error in your SQL query. The MySQL server error output " "below, if there is any, may also help you in diagnosing the problem" msgstr "" -"可能是您的 SQL 語法出現錯誤,如 MySQL 伺服器發出錯誤信息,這可能幫助您去找出" -"問題所在。" +"您的 SQL 查詢可能有錯。如果可能的話,以下會列出 MySQL 伺服器的錯誤輸出,這可" +"能對您解決問題有一定的幫助" #: libraries/sqlparser.lib.php:169 msgid "" @@ -6525,104 +6514,98 @@ msgid "" "please reduce your SQL query input to the single query that causes problems, " "and submit a bug report with the data chunk in the CUT section below:" msgstr "" -"這可能是您找到了 SQL 分析程式的一些程式錯誤,請細心查看您的語法,檢查一下引號" -"是正確及沒有遺漏,其他可能出錯的原因可能來自您上載檔案時在引號外的地方使用了" -"二進制碼。您可以嘗試在 MySQL 命令列介面執行該語法。如 MySQL 伺服器發出錯誤信" -"息,這可能幫助您去找出問題所在。如您仍然未能解決問題,或在分析程式出現錯誤," -"但在命令列模式能正常執行,請將該句出現錯誤的 SQL 語法抽出,並將以下的\"剪取" -"\"部份一同提交到臭虫區:" +"您可能發現了 SQL 解析器的缺陷 (bug)。請仔細檢查您的查詢,包括引號是否正確及是" +"否符合。其它可能的失敗原因可能由於您上傳了超過引用文字區域外的二進制資料。您" +"還可以在 MySQL 命令行界面試一下您的查詢。如果可能的話,以下會列出 MySQL 服務" +"器的錯誤輸出,這可能對您解決問題有一定的幫助。如果您仍然有問題,或者命令行界" +"面執行成功而解析器出錯,請將您的 SQL 查詢縮減到導致問題的某一條指令,然後和下" +"面剪切區中的資料一起送出一個缺陷 (bug) 報告:" #: libraries/sqlparser.lib.php:171 msgid "BEGIN CUT" -msgstr "開始 剪取" +msgstr "開始剪切" #: libraries/sqlparser.lib.php:173 msgid "END CUT" -msgstr "結束 剪取" +msgstr "結束剪切" #: libraries/sqlparser.lib.php:175 msgid "BEGIN RAW" -msgstr "開始 原始資料" +msgstr "開始原文" #: libraries/sqlparser.lib.php:179 msgid "END RAW" -msgstr "結束 原始資料" +msgstr "結束原文" #: libraries/sqlparser.lib.php:364 msgid "Automatically appended backtick to the end of query!" -msgstr "" +msgstr "自動在查詢結尾閉合了引號!" #: libraries/sqlparser.lib.php:367 msgid "Unclosed quote" -msgstr "未完結的引號 (Unclosed quote)" +msgstr "引號不配對" #: libraries/sqlparser.lib.php:519 msgid "Invalid Identifer" -msgstr "無效的識別碼 (Invalid Identifer)" +msgstr "無效的識別符號" #: libraries/sqlparser.lib.php:636 msgid "Unknown Punctuation String" -msgstr "不知明的標點符號 (Unknown Punctuation String)" +msgstr "未知的標點符號字元串" #: libraries/sqlvalidator.lib.php:67 #, php-format 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 分析程式未能啟動,請檢查是否已將 %s文件%s 內的 PHP 檔案安裝。" +msgstr "" +"SQL 檢驗程序無法原始化。請檢查是否已經安裝了%s檔案%s內說明的必需 PHP 外掛" #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" -msgstr "" +msgstr "資料表是空的!" #: libraries/tbl_links.inc.php:115 #, php-format msgid "Tracking of %s.%s is activated." -msgstr "" +msgstr "%s.%s 的追蹤已啓用" #: libraries/tbl_properties.inc.php:104 msgid "Length/Values" -msgstr "長度/集合*" +msgstr "長度/值" #: libraries/tbl_properties.inc.php:104 -#, fuzzy -#| msgid "" -#| "If field type is \"enum\" or \"set\", please enter the values using this " -#| "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") " -#| "or a single quote (\"'\") amongst those values, precede it with a " -#| "backslash (for example '\\\\xyz' or 'a\\'b')." msgid "" "If column type is \"enum\" or \"set\", please enter the values using this " "format: 'a','b','c'...
If you ever need to put a backslash (\"\\\") or " "a single quote (\"'\") amongst those values, precede it with a backslash " "(for example '\\\\xyz' or 'a\\'b')." msgstr "" -"如欄位格式是 \"enum\" 或 \"set\", 請使用以下的格式輸入: 'a','b','c'...
" -"如在數值上需要輸入反斜線 (\\) 或單引號 (') , 請再加上反斜線 (例如 '\\\\xyz' " -"or 'a\\'b')." +"如欄位類型是“enum”或“set”,請使用以下格式輸入:'a','b','c'...
如果需要輸" +"入反斜槓(“\\”)或單引號(“'”),請在前面加上反斜槓(如 '\\\\xyz' 或 'a\\'b')" #: libraries/tbl_properties.inc.php:105 msgid "" "For default values, please enter just a single value, without backslash " "escaping or quotes, using this format: a" -msgstr "預設值: 請只輸入該預設值, 無需加上任何反斜線或引號" +msgstr "對於預設值,請只輸入單個值,不要加反斜槓或引號,請用此格式:a" #: libraries/tbl_properties.inc.php:115 libraries/tbl_properties.inc.php:528 #: tbl_printview.php:323 tbl_structure.php:154 tbl_structure.php:158 #: tbl_structure.php:568 tbl_structure.php:767 msgid "Index" -msgstr "索引鍵 INDEX" +msgstr "索引" #: libraries/tbl_properties.inc.php:135 #, php-format msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" -msgstr "有關可使用之轉換方式選項及 MINE 類型轉換選項, 請查看 %s轉換方式說明%s" +msgstr "要取得可用轉換選項的列表及對應的 MIME 類型轉換,請點選%s轉換說明%s" #: libraries/tbl_properties.inc.php:143 msgid "Transformation options" -msgstr "轉換方式選項" +msgstr "轉換選項" #: libraries/tbl_properties.inc.php:144 msgid "" @@ -6631,44 +6614,42 @@ msgid "" "quote (\"'\") amongst those values, precede it with a backslash (for example " "'\\\\xyz' or 'a\\'b')." msgstr "" -"請用以下的格式輸入轉換選項值: 'a', 100, b,'c'...
如您需要輸入反斜線 " -"(\"\\\") 或單引號 (\"'\") 請再加上反斜線 (例如 '\\\\xyz' or 'a\\'b')." +"請使用此格式輸入轉換選項的值:'a',100,b,'c'...
如果您需要在值中輸入反斜" +"槓 (“\\”)或單引號(“'”),請在前面加上反斜槓 (如 '\\\\xyz' 或 'a\\'b')" #: libraries/tbl_properties.inc.php:371 msgid "ENUM or SET data too long?" -msgstr "" +msgstr "ENUM 或 SET 資料過長?" #: libraries/tbl_properties.inc.php:373 msgid "Get more editing space" -msgstr "" +msgstr "取得更多編輯空間" #: libraries/tbl_properties.inc.php:396 -#, fuzzy -#| msgid "None" msgctxt "for default" msgid "None" -msgstr "不適用" +msgstr "無" #: libraries/tbl_properties.inc.php:397 msgid "As defined:" -msgstr "" +msgstr "定義:" #: libraries/tbl_properties.inc.php:516 tbl_structure.php:153 #: tbl_structure.php:157 tbl_structure.php:566 msgid "Primary" -msgstr "主鍵 PRIMARY" +msgstr "主鍵" #: libraries/tbl_properties.inc.php:534 tbl_structure.php:156 #: tbl_structure.php:160 tbl_structure.php:572 msgid "Fulltext" -msgstr "全文檢索" +msgstr "全文搜尋" #: libraries/tbl_properties.inc.php:583 transformation_overview.php:57 #, php-format msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." -msgstr "這個轉換方式沒有說明.
請向作者查詢 %s 是甚麼用途." +msgstr "此轉換沒有說明。
詳細功能請詢問 %s 的作者" #: libraries/tbl_properties.inc.php:625 tbl_structure.php:636 #, fuzzy, php-format @@ -6680,7 +6661,7 @@ msgstr "新增 %s 個欄位" #, fuzzy #| msgid "You have to add at least one field." msgid "You have to add at least one column." -msgstr "你最少要加入一個欄位." +msgstr "至少要新增一個欄位" #: libraries/tbl_properties.inc.php:735 server_engines.php:56 #: tbl_operations.php:370 @@ -6689,50 +6670,45 @@ msgstr "儲存引擎" #: libraries/tbl_properties.inc.php:764 msgid "PARTITION definition" -msgstr "" +msgstr "分區定義" #: libraries/tbl_properties.inc.php:795 #, fuzzy msgid "+ Add a new value" -msgstr "新增使用者" +msgstr "+ 新增" #: libraries/tbl_triggers.lib.php:28 -#, fuzzy msgid "Event" -msgstr "送出" +msgstr "事件" #: libraries/transformations/application_octetstream__download.inc.php:9 -#, fuzzy -#| msgid "" -#| "Displays a link to download the binary data of the field. You can use the " -#| "first option to specify the filename, or use the second option as the " -#| "name of a field which contains the filename. If you use the second " -#| "option, you need to set the first option to the empty string." msgid "" "Displays a link to download the binary data of the column. You can use the " "first option to specify the filename, or use the second option as the name " "of a column which contains the filename. If you use the second option, you " "need to set the first option to the empty string." msgstr "" -"於欄位顯示連線來下載二進制資料. 第一個選項是二進制的檔案名稱. 第二個選項可設" -"定可用的欄位名稱用作檔案名稱. 如您設定了第二個選項, 第一個選項無需設定" +"欄位中顯示一個二進制資料的下載連線。第一個選項是檔案名稱,或使用第二個選項," +"用資料表中的一個欄位值作爲檔案名稱。如果想使用欄位值作爲檔案名稱,第一個選項" +"必須留空" #: libraries/transformations/application_octetstream__hex.inc.php:9 msgid "" "Displays hexadecimal representation of data. Optional first parameter " "specifies how often space will be added (defaults to 2 nibbles)." -msgstr "以十六進制方式顯示." +msgstr "" +"顯示十六進制的資料。第一個參數設定需要增加多少個空格 (預設值爲一個字元寬度)" #: libraries/transformations/image_jpeg__inline.inc.php:9 #: libraries/transformations/image_png__inline.inc.php:9 msgid "" "Displays a clickable thumbnail. The options are the maximum width and height " "in pixels. The original aspect ratio is preserved." -msgstr "顯示可按式圖像; 選項; 寬度,高度[以像素為單位] (保時原有比例)" +msgstr "顯示可點選的縮圖。在原比例不變的情況下,可按像素指定最大寬度或高度" #: libraries/transformations/image_jpeg__link.inc.php:9 msgid "Displays a link to download this image." -msgstr "顯示圖像的連線 (直接下載)." +msgstr "顯示下載此圖片的連結" #: libraries/transformations/text_plain__dateformat.inc.php:9 msgid "" @@ -6745,20 +6721,13 @@ msgid "" "documentation for PHP's strftime() function and for \"utc\" it is done using " "gmdate() function." msgstr "" +"將一個 TIME、TIMESTAMP、DATETIME 或數字 UNIX 時間戳欄位格式化顯示爲日期。第一" +"個選項是小時偏移量,該值將加到時間戳中 (預設:0)。第二個選項用於指定時間格式" +"字元串。第三個選項決定顯示本地時間還是 UTC 時間 (填入“local”或“utc”),所以" +"填“local”(參見 PHP 的 strftime() 函數檔案)和“utc”(參見 PHP 的 gmdate() 函數文" +"檔)所到的結果是不一樣的" #: libraries/transformations/text_plain__external.inc.php:9 -#, fuzzy -#| msgid "" -#| "LINUX ONLY: Launches an external application and feeds it the field data " -#| "via standard input. Returns the standard output of the application. The " -#| "default is Tidy, to pretty-print HTML code. For security reasons, you " -#| "have to manually edit the file libraries/transformations/" -#| "text_plain__external.inc.php and list the tools you want to make " -#| "available. The first option is then the number of the program you want to " -#| "use and the second option is the parameters for the program. The third " -#| "option, if set to 1, will convert the output using htmlspecialchars() " -#| "(Default 1). The fourth option, if set to 1, will prevent wrapping and " -#| "ensure that the output appears all on one line (Default 1)." msgid "" "LINUX ONLY: Launches an external application and feeds it the column data " "via standard input. Returns the standard output of the application. The " @@ -6771,60 +6740,48 @@ msgid "" "will prevent wrapping and ensure that the output appears all on one line " "(Default 1)." msgstr "" -"只限於 LINUX : 執行外部程式及將內容以標準輸入模式輸入. 輸出程式之標準輸出. 預" -"設是整齊的, 方便顯示 HTML 碼. 由於保安理由, 您需要自行編輯 libraries/" -"transformations/text_plain__external.inc.php 及加入需要使用工具作為執行. 第一" -"個選項為有多少個程式需要使用, 第二個選項為這式程式的參數, 第三個選項, 如設定" -"為 1 將會使用 htmlspecialchars() 轉換輸出 (預設: 1). 第四個選項, 如設定為 1 " -"將會加入 NOWRAP 於內容的表格內, 令輸出之所有內容都不會重新排位 (預設: 1)" +"僅 LINUX:調用外部程序並透過標準輸入傳入欄位資料。返回此套用程序的標準輸出預" +"設爲 Tidy,可以很好的列印 HTML 程式碼。爲了安全起見,您需要手動編輯 " +"libraries/transformations/text_plain__external.inc.php 檔案來加入可以運行的工" +"具。第一個選項是您想要使用的程序編號,第二個選項是程序的參數。第三個參數如果" +"設爲 1 的話將會用 htmlspecialchars() 處理輸出 (預設爲 1)。第四個參數如果設爲 " +"1 的話,將禁止換行,確保所有內容顯示在一行中 (預設爲 1)" #: libraries/transformations/text_plain__formatted.inc.php:9 -#, fuzzy -#| msgid "" -#| "Displays the contents of the field as-is, without running it through " -#| "htmlspecialchars(). That is, the field is assumed to contain valid HTML." msgid "" "Displays the contents of the column as-is, without running it through " "htmlspecialchars(). That is, the column is assumed to contain valid HTML." -msgstr "保存原本內容之格式. 不進行任何 Escaping 處理." +msgstr "" +"顯示欄位的原始內容,不使用 htmlspecialchars() 處理。即假定內容爲合法的 HTML " +"程式碼" #: libraries/transformations/text_plain__imagelink.inc.php:9 -#, fuzzy -#| msgid "" -#| "Displays an image and a link; the field contains the filename. The first " -#| "option is a URL prefix like \"http://www.example.com/\". The second and " -#| "third options are the width and the height in pixels." msgid "" "Displays an image and a link; the column contains the filename. The first " "option is a URL prefix like \"http://www.example.com/\". The second and " "third options are the width and the height in pixels." msgstr "" -"顯示圖像及連結, 數據內容是檔案名稱; 第一個選項是網址前段 (例 \"http://domain." -"com/\" ), 第二個選項是寬度的像素,第三個選項是高度的像素." +"顯示圖片和連結,欄位內包含檔案名稱。第一個選項是類似“http://www.example." +"com/”這樣的 URL 前綴。第二和第三個選項是以像素爲單位的寬度和高度" #: libraries/transformations/text_plain__link.inc.php:9 -#, fuzzy -#| msgid "" -#| "Displays a link; the field contains the filename. The first option is a " -#| "URL prefix like \"http://www.example.com/\". The second option is a title " -#| "for the link." msgid "" "Displays a link; the column contains the filename. The first option is a URL " "prefix like \"http://www.example.com/\". The second option is a title for " "the link." msgstr "" -"顯示連結, 數據內容是檔案名稱; 第一個選項是網址前段 (例 \"http://domain.com/" -"\" ), 第二選項是連結的標題." +"顯示連結,欄位內包含檔案名稱。第一個選項是類似“http://www.example.com/”這樣" +"的 URL 前綴。第二個選項是連結的標題" #: libraries/transformations/text_plain__longToIpv4.inc.php:9 msgid "" "Converts an (IPv4) Internet network address into a string in Internet " "standard dotted format." -msgstr "" +msgstr "將一個 IPv4 (互聯網協定第四版) 網址轉換成點分十進制標準格式" #: libraries/transformations/text_plain__sql.inc.php:9 msgid "Formats text as SQL query with syntax highlighting." -msgstr "格式化文字為 SQL 查詢及特出語法." +msgstr "將文字以 SQL 語法醒目提示顯示" #: libraries/transformations/text_plain__substr.inc.php:9 msgid "" @@ -6834,55 +6791,47 @@ msgid "" "option is the string to append and/or prepend when truncation occurs " "(Default: \"...\")." msgstr "" -"只顯示部份的字串. 第一個選項為字串開始輸出的位置 (offset) (預設: 0). 第二個" -"選項為多少個字串輸出. 留空為輸出餘下所有字串. 第三個選項為當部份字串取回後顯" -"示什麼字串於結尾 (預設: ...) ." +"顯示部分字元串。第一個選項定義了文字開始輸出的字數 (預設爲 0)。第二個選項是要" +"返回的字數 (預設直到結尾)。第三個選項是當發生截取的時候,將會加在字元串之前/" +"後的輸出 (預設爲:“...”)" #: libraries/user_preferences.inc.php:32 -#, fuzzy -#| msgid "General relation features" msgid "Manage your settings" -msgstr "一般關聯功能" +msgstr "管理我的設定" #: libraries/user_preferences.inc.php:47 prefs_manage.php:291 -#, fuzzy -#| msgid "Modifications have been saved" msgid "Configuration has been saved" -msgstr "修改已儲存" +msgstr "設定已儲存" #: libraries/user_preferences.inc.php:68 #, php-format msgid "" "Your preferences will be saved for current session only. Storing them " "permanently requires %sphpMyAdmin configuration storage%s." -msgstr "" +msgstr "您的偏好將僅作用於本次連線。要想永久儲存需要 %sphpMyAdmin 進階功能%s" #: libraries/user_preferences.lib.php:142 -#, fuzzy -#| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save configuration" -msgstr "無法讀取預設設定: \"%1$s\"" +msgstr "無法儲存設定" #: libraries/user_preferences.lib.php:309 msgid "" "Your browser has phpMyAdmin configuration for this domain. Would you like to " "import it for current session?" -msgstr "" +msgstr "您的瀏覽器中有目前域的 phpMyAdmin 設定。是否匯入到目前連線中?" #: libraries/zip_extension.lib.php:25 msgid "No files found inside ZIP archive!" -msgstr "於 ZIP 檔案內找不到任何檔案!" +msgstr "ZIP 包中未找到檔案!" #: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 #: libraries/zip_extension.lib.php:65 msgid "Error in ZIP archive:" -msgstr "ZIP 檔案錯誤:" +msgstr "ZIP 包中有錯誤:" #: main.php:65 -#, fuzzy -#| msgid "General relation features" msgid "General Settings" -msgstr "一般關聯功能" +msgstr "一般設定" #: main.php:103 msgid "MySQL connection collation" @@ -6890,17 +6839,15 @@ msgstr "MySQL 連線校對" #: main.php:119 msgid "Appearance Settings" -msgstr "" +msgstr "外觀設定" #: main.php:146 prefs_manage.php:274 -#, fuzzy -#| msgid "General relation features" msgid "More settings" -msgstr "一般關聯功能" +msgstr "更多設定" #: main.php:163 msgid "Protocol version" -msgstr "通訊協定版本" +msgstr "協定版本" #: main.php:165 server_privileges.php:1452 server_privileges.php:1606 #: server_privileges.php:1730 server_privileges.php:2149 @@ -6910,20 +6857,19 @@ msgstr "使用者" #: main.php:169 msgid "MySQL charset" -msgstr "MySQL 文字編碼" +msgstr "MySQL 字集" #: main.php:181 msgid "Web server" -msgstr "" +msgstr "網站伺服器" #: main.php:187 msgid "MySQL client version" msgstr "MySQL 客戶端版本" #: main.php:189 -#, fuzzy msgid "PHP extension" -msgstr "PHP 版本" +msgstr "PHP 外掛" #: main.php:195 msgid "Show PHP information" @@ -6931,28 +6877,28 @@ msgstr "顯示 PHP 資訊" #: main.php:213 msgid "Wiki" -msgstr "" +msgstr "維基 (Wiki) " #: main.php:216 msgid "Official Homepage" -msgstr "phpMyAdmin 官方網站" +msgstr "官方首頁" #: main.php:217 #, fuzzy #| msgid "Attributes" msgid "Contribute" -msgstr "屬性" +msgstr "貢獻" #: main.php:218 #, fuzzy msgid "Get support" -msgstr "輸出" +msgstr "取得支援" #: main.php:219 #, fuzzy #| msgid "No change" msgid "List of changes" -msgstr "沒有變更" +msgstr "更新列表" #: main.php:243 msgid "" @@ -6961,8 +6907,9 @@ msgid "" "running with this default, is open to intrusion, and you really should fix " "this security hole by setting a password for user 'root'." msgstr "" -"設定檔內有關設定 (root登入及沒有密碼) 與預設的 MySQL 權限戶口相同。 MySQL 伺" -"服器在這預設的設定運行的話會很容易被入侵,您應更改有關設定去防止安全漏洞。" +"您設定檔案中的設定 (空密碼的 root) 與 MySQL 預設管理員帳號對應。您的 MySQL 服" +"務器使用預設值運行當然沒有問題,不過這樣的話,被入侵的可能性會很大,我們強烈" +"建議您應該立即給 'root' 使用者設定一個密碼來補上這個安全漏洞" #: main.php:251 msgid "" @@ -6970,8 +6917,8 @@ msgid "" "option is incompatible with phpMyAdmin and might cause some data to be " "corrupted!" msgstr "" -"你在 PHP 設定內啟動了 mbstring.func_overload 選項, 這個選項暫時不兼容 " -"phpMyAdmin , 你可能會損失部份資料!" +"PHP 設定中已啓用了 mbstring.func_overload 。這個選項和 phpMyAdmin 不相容,可" +"能會導致一些資料損壞!" #: main.php:259 msgid "" @@ -6979,8 +6926,8 @@ msgid "" "multibyte charset. Without the mbstring extension phpMyAdmin is unable to " "split strings correctly and it may result in unexpected results." msgstr "" -"找不到 PHP 內的 mbstring 編碼模組, 沒有這個模組, phpMyAdmin 無法準確地分割雙" -"字元文字, 而可能產生問題." +"沒有找到 PHP 外掛 mbstring,而您現在好像在使用多字元字集。沒有 mbstring 擴展" +"的 phpMyAdmin 不能正確分割字元串,可能產生意想不到的結果" #: main.php:267 msgid "" @@ -6989,16 +6936,22 @@ msgid "" "validity configured in phpMyAdmin, because of this, your login will expire " "sooner than configured in phpMyAdmin." msgstr "" +"您的 PHP 設定參數 [a@http://php.net/manual/en/session.configuration.php#ini." +"session.gc-maxlifetime@]session.gc_maxlifetime [/a] 短於您在 phpMyAdmin 中設" +"定的 Cookies 有效期,因此您的登錄連線有效期將會比您在 phpMyAdmin 中設定的時間" +"要更短" #: main.php:274 msgid "" "Login cookie store is lower than cookie validity configured in phpMyAdmin, " "because of this, your login will expire sooner than configured in phpMyAdmin." msgstr "" +"phpMyAdmin 中所設定的登錄 cookie 儲存小於 cookie 有效期,因此您的登錄過期時間" +"將會比您在 phpMyAdmin 中設定的時間要更短" #: main.php:282 msgid "The configuration file now needs a secret passphrase (blowfish_secret)." -msgstr "設定檔案現在需要密碼 (passphrase) (blowfish_secret)." +msgstr "設定檔案現在需要一個短語密碼" #: main.php:290 msgid "" @@ -7006,6 +6959,8 @@ msgid "" "exists in your phpMyAdmin directory. You should remove it once phpMyAdmin " "has been configured." msgstr "" +"安裝時所用的 [code]config[/code] 資料夾尚未刪除,如果 phpMyAdmin 已經安裝設定" +"好,請立即刪除該資料夾" #: main.php:299 #, fuzzy, php-format @@ -7015,7 +6970,7 @@ msgstr "" 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 查出問題原因." +msgstr "phpMyAdmin 進階功能未全部設定,部分功能不可用。要查出原因請%s點這裏%s" #: main.php:314 msgid "" @@ -7023,6 +6978,8 @@ msgid "" "functionality will be missing. For example navigation frame will not refresh " "automatically." msgstr "" +"您的瀏覽器不支援或停用了 Javascript,部分 phpMyAdmin 功能將不可用。如導覽框架" +"將不能自動重新整理" #: main.php:329 #, php-format @@ -7030,33 +6987,35 @@ msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" +"您的 PHP MySQL 庫版本 %s 和您的 MySQL 伺服器版本 %s 不同。這可能造成一些未知" +"的問題" #: main.php:341 #, php-format msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." -msgstr "" +msgstr "伺服器上運行了 Suhosin。請先查看%s檔案%s中是否有類似的情況" #: navigation.php:207 server_databases.php:281 server_synchronize.php:1206 msgid "No databases" -msgstr "沒有資料庫" +msgstr "無資料庫" #: navigation.php:297 msgid "Filter" -msgstr "" +msgstr "過濾" #: navigation.php:297 #, fuzzy #| msgid "Alter table order by" msgid "filter tables by name" -msgstr "根據欄位內容排序記錄" +msgstr "請輸入部分或完整的資料表名稱" #: navigation.php:330 navigation.php:331 #, fuzzy msgctxt "short form" msgid "Create table" -msgstr "建立新一頁" +msgstr "建立資料表" #: navigation.php:336 navigation.php:508 msgid "Please select a database" @@ -7064,133 +7023,115 @@ msgstr "請選擇資料庫" #: pmd_general.php:74 msgid "Show/Hide left menu" -msgstr "" +msgstr "顯示/隱藏左側選單" #: pmd_general.php:78 msgid "Save position" -msgstr "" +msgstr "儲存位置" #: pmd_general.php:81 server_synchronize.php:428 server_synchronize.php:871 -#, fuzzy msgid "Create table" -msgstr "建立新一頁" +msgstr "建立資料表" #: pmd_general.php:84 pmd_general.php:352 msgid "Create relation" -msgstr "" +msgstr "建立關聯" #: pmd_general.php:90 msgid "Reload" -msgstr "" +msgstr "重新載入" #: pmd_general.php:93 msgid "Help" -msgstr "" +msgstr "幫助" #: pmd_general.php:97 msgid "Angular links" -msgstr "" +msgstr "規則連線" #: pmd_general.php:97 msgid "Direct links" -msgstr "" +msgstr "直接連線" #: pmd_general.php:101 msgid "Snap to grid" -msgstr "" +msgstr "對齊網格" #: pmd_general.php:105 msgid "Small/Big All" -msgstr "" +msgstr "全部收縮/展開" #: pmd_general.php:109 msgid "Toggle small/big" -msgstr "" +msgstr "反向收縮/展開" #: pmd_general.php:114 pmd_pdf.php:80 msgid "Import/Export coordinates for PDF schema" -msgstr "" +msgstr "爲 PDF 大綱匯入/匯出座標" #: pmd_general.php:120 -#, fuzzy -#| msgid "Submit Query" msgid "Build Query" -msgstr "執行語法" +msgstr "產生查詢" #: pmd_general.php:125 msgid "Move Menu" -msgstr "" +msgstr "移動選單" #: pmd_general.php:137 -#, fuzzy msgid "Hide/Show all" -msgstr "顯示全部" +msgstr "全部隱藏/顯示" #: pmd_general.php:141 msgid "Hide/Show Tables with no relation" -msgstr "" +msgstr "隱藏/顯示沒有關聯的表" #: pmd_general.php:181 -#, fuzzy msgid "Number of tables" -msgstr "欄位數目" +msgstr "資料表數量" #: pmd_general.php:418 msgid "Delete relation" -msgstr "" +msgstr "刪除關聯" #: pmd_general.php:460 pmd_general.php:519 -#, fuzzy msgid "Relation operator" -msgstr "關聯檢視" +msgstr "關聯運算符" #: pmd_general.php:470 pmd_general.php:529 pmd_general.php:652 #: pmd_general.php:769 -#, fuzzy -#| msgid "Export" msgid "Except" -msgstr "輸出" +msgstr "例外" #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 #: pmd_general.php:775 -#, fuzzy -#| msgid "in query" msgid "subquery" -msgstr "查詢中" +msgstr "子查詢" #: pmd_general.php:480 pmd_general.php:576 -#, fuzzy -#| msgid "Rename view to" msgid "Rename to" -msgstr "將檢視表改名為" +msgstr "改名爲" #: pmd_general.php:482 pmd_general.php:581 -#, fuzzy -#| msgid "User name" msgid "New name" -msgstr "使用者名稱" +msgstr "新名稱" #: pmd_general.php:485 pmd_general.php:700 -#, fuzzy -#| msgid "Create" msgid "Aggregate" -msgstr "建立" +msgstr "聚合" #: pmd_general.php:487 pmd_general.php:507 pmd_general.php:629 #: pmd_general.php:642 pmd_general.php:705 pmd_general.php:759 #: tbl_select.php:115 msgid "Operator" -msgstr "操作員" +msgstr "運算符" #: pmd_general.php:810 -#, fuzzy -#| msgid "Table options" msgid "Active options" -msgstr "資料表選項" +msgstr "目前選項" #: pmd_help.php:26 msgid "To select relation, click :" -msgstr "" +msgstr "要選擇關聯,點選:" #: pmd_help.php:28 msgid "" @@ -7198,158 +7139,143 @@ msgid "" "column, click the \"Choose column to display\" icon, then click on the " "appropriate column name." msgstr "" +"顯示的欄位爲粉紅色。要設定/取消顯示的欄位,點選“選擇顯示欄位”圖示,然後選擇需" +"要的欄位名稱" #: pmd_pdf.php:34 -#, fuzzy msgid "Page has been created" -msgstr "資料表 %s 已被刪除" +msgstr "已建立頁面" #: pmd_pdf.php:37 msgid "Page creation failed" -msgstr "" +msgstr "頁面建立失敗" #: pmd_pdf.php:89 -#, fuzzy -#| msgid "pages" msgid "Page" -msgstr "頁" +msgstr "頁面" #: pmd_pdf.php:99 -#, fuzzy -#| msgid "Import files" msgid "Import from selected page" -msgstr "輸入檔案" +msgstr "從所選頁匯入" #: pmd_pdf.php:100 -#, fuzzy -#| msgid "No rows selected" msgid "Export to selected page" -msgstr "並無資料列已選擇" +msgstr "匯出至所選頁" #: pmd_pdf.php:102 -#, fuzzy -#| msgid "Create a new index" msgid "Create a page and export to it" -msgstr "新增一組索引" +msgstr "匯出至新頁" #: pmd_pdf.php:111 -#, fuzzy -#| msgid "User name" msgid "New page name: " -msgstr "使用者名稱" +msgstr "新頁面名: " #: pmd_pdf.php:114 msgid "Export/Import to scale" -msgstr "" +msgstr "按比例匯出/匯入" #: pmd_pdf.php:119 msgid "recommended" -msgstr "" +msgstr "推薦" #: pmd_relation_new.php:29 msgid "Error: relation already exists." -msgstr "" +msgstr "錯誤:關聯已存在" #: pmd_relation_new.php:61 pmd_relation_new.php:86 msgid "Error: Relation not added." -msgstr "" +msgstr "錯誤:關聯未新增" #: pmd_relation_new.php:62 msgid "FOREIGN KEY relation added" -msgstr "" +msgstr "已新增外部鍵關聯" #: pmd_relation_new.php:84 -#, fuzzy msgid "Internal relation added" -msgstr "內部關聯" +msgstr "已新增行內部關聯" #: pmd_relation_upd.php:55 -#, fuzzy msgid "Relation deleted" -msgstr "關聯檢視" +msgstr "已刪除關聯" #: pmd_save_pos.php:44 msgid "Error saving coordinates for Designer." -msgstr "" +msgstr "儲存設計器座標時出錯" #: pmd_save_pos.php:52 msgid "Modifications have been saved" -msgstr "修改已儲存" +msgstr "已儲存修改" #: prefs_forms.php:78 msgid "Cannot save settings, submitted form contains errors" -msgstr "" +msgstr "無法儲存設定,送出的表單中有錯誤" #: prefs_manage.php:80 -#, fuzzy -#| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not import configuration" -msgstr "無法讀取預設設定: \"%1$s\"" +msgstr "無法匯入設定" #: prefs_manage.php:112 msgid "Configuration contains incorrect data for some fields." -msgstr "" +msgstr "部分設定含有錯誤的資料" #: prefs_manage.php:128 msgid "Do you want to import remaining settings?" -msgstr "" +msgstr "是否匯入其餘的設定?" #: prefs_manage.php:225 prefs_manage.php:251 msgid "Saved on: @DATE@" -msgstr "" +msgstr "儲存於:@DATE@" #: prefs_manage.php:239 -#, fuzzy -#| msgid "Import files" msgid "Import from file" -msgstr "輸入檔案" +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!" -msgstr "" +msgstr "您沒有已儲存的設定!" #: prefs_manage.php:258 prefs_manage.php:312 msgid "This feature is not supported by your web browser" -msgstr "" +msgstr "您所使用的瀏覽器不支援此功能" #: prefs_manage.php:263 msgid "Merge with current configuration" -msgstr "" +msgstr "與目前設定合併" #: prefs_manage.php:277 #, php-format msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." -msgstr "" +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." -msgstr "" +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 "" +msgstr "您可以重置並將所有設定恢復爲預設值" #: querywindow.php:93 msgid "Import files" -msgstr "輸入檔案" +msgstr "匯入檔案" #: querywindow.php:104 msgid "All" @@ -7358,27 +7284,24 @@ msgstr "全部" #: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 #, php-format msgid "%s table not found or not set in %s" -msgstr "%s 資料表找不到或還未在 %s 設定" +msgstr "找不到 %s 表或還未在 %s 設定" #: schema_export.php:45 -#, fuzzy -#| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" -msgstr "資料表 \"%s\" 不存在!" +msgstr "檔案不存在" #: server_binlog.php:106 msgid "Select binary log to view" -msgstr "選擇檢視二進制記錄" +msgstr "選擇要查看的二進制日誌" #: server_binlog.php:122 server_status.php:387 -#, fuzzy msgid "Files" -msgstr "欄位" +msgstr "檔案" #: server_binlog.php:169 server_binlog.php:171 server_processlist.php:58 #: server_processlist.php:60 msgid "Truncate Shown Queries" -msgstr "刪除已顯示查詢" +msgstr "截斷顯示的查詢" #: server_binlog.php:177 server_binlog.php:179 server_processlist.php:58 #: server_processlist.php:60 @@ -7387,7 +7310,7 @@ msgstr "顯示完整查詢" #: server_binlog.php:199 msgid "Log name" -msgstr "記錄檔案稱" +msgstr "日志檔案名稱" #: server_binlog.php:200 msgid "Position" @@ -7395,28 +7318,28 @@ msgstr "位置" #: server_binlog.php:201 msgid "Event type" -msgstr "事件方式" +msgstr "事件類型" #: server_binlog.php:203 msgid "Original position" -msgstr "原有位置" +msgstr "原始位置" #: server_binlog.php:204 msgid "Information" -msgstr "資料" +msgstr "資訊" #: server_collations.php:39 msgid "Character Sets and Collations" -msgstr "文字編碼及校對" +msgstr "字集和排序規則" #: server_databases.php:64 msgid "No databases selected." -msgstr "沒有資料庫選擇." +msgstr "未選中資料庫" #: server_databases.php:75 #, php-format msgid "%s databases have been dropped successfully." -msgstr "%s 個資料庫已成功刪除." +msgstr "已成功刪除 %s 個資料庫" #: server_databases.php:100 msgid "Databases statistics" @@ -7425,21 +7348,22 @@ msgstr "資料庫統計" #: server_databases.php:183 server_replication.php:179 #: server_replication.php:207 msgid "Master replication" -msgstr "" +msgstr "主複製" #: server_databases.php:185 server_replication.php:246 msgid "Slave replication" -msgstr "" +msgstr "從複製" #: server_databases.php:272 server_databases.php:273 msgid "Enable Statistics" -msgstr "啟動統計數據" +msgstr "啓用統計" #: server_databases.php:275 msgid "" "Note: Enabling the database statistics here might cause heavy traffic " "between the web server and the MySQL server." -msgstr "註: 啟動資料庫統計數據可能會產生大量由 Web 伺服器及 MySQL 之間的流量." +msgstr "" +"注意:在此啓用資料庫統計可能導致網站伺服器和 MySQL 伺服器之間的流量驟增" #: server_engines.php:47 msgid "Storage Engines" @@ -7447,167 +7371,167 @@ msgstr "儲存引擎" #: server_export.php:20 msgid "View dump (schema) of databases" -msgstr "顯示資料庫概要 (schema)" +msgstr "查看資料庫的轉存(大綱)" #: server_privileges.php:32 server_privileges.php:276 msgid "Includes all privileges except GRANT." -msgstr "包括所有權限除了授權 (GRNANT)." +msgstr "除了授權 (GRANT) 以外的所有權限" #: server_privileges.php:33 server_privileges.php:202 #: server_privileges.php:529 msgid "Allows altering the structure of existing tables." -msgstr "容許修改現有資料表的結構." +msgstr "允許修改現有資料表的結構" #: server_privileges.php:34 server_privileges.php:218 #: server_privileges.php:535 msgid "Allows altering and dropping stored routines." -msgstr "容許修改及刪除儲存程序." +msgstr "允許修改或刪除 Procedure" #: server_privileges.php:35 server_privileges.php:194 #: server_privileges.php:528 msgid "Allows creating new databases and tables." -msgstr "容許建立新資料庫及資料表." +msgstr "允許建立新資料庫和資料表" #: server_privileges.php:36 server_privileges.php:217 #: server_privileges.php:534 msgid "Allows creating stored routines." -msgstr "容許建立儲存程序" +msgstr "允許建立 stored routines " #: server_privileges.php:37 server_privileges.php:528 msgid "Allows creating new tables." -msgstr "容許建立新資料表." +msgstr "允許建立新資料表" #: server_privileges.php:38 server_privileges.php:205 #: server_privileges.php:532 msgid "Allows creating temporary tables." -msgstr "容許建立暫時性資料表." +msgstr "允許建立臨時表" #: server_privileges.php:39 server_privileges.php:219 #: server_privileges.php:568 msgid "Allows creating, dropping and renaming user accounts." -msgstr "容許建立、刪除及重新命名使用者戶口." +msgstr "允許建立、刪除和重命名使用者帳號" #: server_privileges.php:40 server_privileges.php:209 #: server_privileges.php:213 server_privileges.php:540 #: server_privileges.php:544 msgid "Allows creating new views." -msgstr "容許建立新的檢視." +msgstr "允許建立 views " #: server_privileges.php:41 server_privileges.php:193 #: server_privileges.php:520 msgid "Allows deleting data." -msgstr "容許刪除記錄." +msgstr "允許刪除資料" #: server_privileges.php:42 server_privileges.php:195 #: server_privileges.php:531 msgid "Allows dropping databases and tables." -msgstr "容許刪除資料庫及資料表." +msgstr "允許刪除資料庫和資料表" #: server_privileges.php:43 server_privileges.php:531 msgid "Allows dropping tables." -msgstr "容許刪除資料表." +msgstr "允許刪除資料表" #: server_privileges.php:44 server_privileges.php:210 #: server_privileges.php:548 msgid "Allows to set up events for the event scheduler" -msgstr "" +msgstr "允許爲事件觸發器設定事件" #: server_privileges.php:45 server_privileges.php:220 #: server_privileges.php:536 msgid "Allows executing stored routines." -msgstr "容許執行儲存程序." +msgstr "允許運行 Procedure" #: server_privileges.php:46 server_privileges.php:199 #: server_privileges.php:523 msgid "Allows importing data from and exporting data into files." -msgstr "容許輸入及輸出數據到檔案." +msgstr "允許從檔案中匯入資料以及將資料匯出至檔案" #: server_privileges.php:47 server_privileges.php:554 msgid "" "Allows adding users and privileges without reloading the privilege tables." -msgstr "容許新增使用者及權限而無需重新讀取權限資料表." +msgstr "允許新增使用者和權限,而不允許重新載入權限表" #: server_privileges.php:48 server_privileges.php:201 #: server_privileges.php:530 msgid "Allows creating and dropping indexes." -msgstr "容許建立及刪除索引." +msgstr "允許建立和刪除索引" #: server_privileges.php:49 server_privileges.php:191 #: server_privileges.php:454 server_privileges.php:518 msgid "Allows inserting and replacing data." -msgstr "容許新增及取代數據." +msgstr "允許插入和替換資料" #: server_privileges.php:50 server_privileges.php:206 #: server_privileges.php:563 msgid "Allows locking tables for the current thread." -msgstr "容許鎖上現時連線之資料表." +msgstr "允許鎖定目前程序的表" #: server_privileges.php:51 server_privileges.php:628 #: server_privileges.php:630 msgid "Limits the number of new connections the user may open per hour." -msgstr "限制每小時使用者開啟新連線的數目." +msgstr "限制使用者每小時開啟的新連線數" #: server_privileges.php:52 server_privileges.php:616 #: server_privileges.php:618 msgid "Limits the number of queries the user may send to the server per hour." -msgstr "限制每小時使用者查詢的數目." +msgstr "限制使用者每小時可發送到伺服器的查詢數" #: server_privileges.php:53 server_privileges.php:622 #: server_privileges.php:624 msgid "" "Limits the number of commands that change any table or database the user may " "execute per hour." -msgstr "限制每小時使用者更改資料表及數據表之指令的數目." +msgstr "限制使用者每小時可執行的修改任何資料表或資料庫的命令數" #: server_privileges.php:54 server_privileges.php:634 #: server_privileges.php:636 msgid "Limits the number of simultaneous connections the user may have." -msgstr "限制每個使用者之同步連線." +msgstr "限制該使用者的同時連線數" #: server_privileges.php:55 server_privileges.php:198 #: server_privileges.php:558 msgid "Allows viewing processes of all users" -msgstr "" +msgstr "允許查看所有使用者的程序" #: server_privileges.php:56 server_privileges.php:200 #: server_privileges.php:460 server_privileges.php:564 msgid "Has no effect in this MySQL version." -msgstr "於本 MySQL 版本無效." +msgstr "在此版本的 MySQL 中無效" #: server_privileges.php:57 server_privileges.php:196 #: server_privileges.php:559 msgid "Allows reloading server settings and flushing the server's caches." -msgstr "容許重新讀取伺服器設定及強行更新伺服器快取記憶." +msgstr "允許重新載入伺服器設定並重新整理伺服器的快取" #: server_privileges.php:58 server_privileges.php:208 #: server_privileges.php:566 msgid "Allows the user to ask where the slaves / masters are." -msgstr "容許用戶查詢 slaves / masters 在何處." +msgstr "使用者有權詢問附屬者/控制者在哪裏" #: server_privileges.php:59 server_privileges.php:207 #: server_privileges.php:567 msgid "Needed for the replication slaves." -msgstr "需要複製的 slaves." +msgstr "replication slaves所需" #: server_privileges.php:60 server_privileges.php:190 #: server_privileges.php:451 server_privileges.php:517 msgid "Allows reading data." -msgstr "容許讀取數據." +msgstr "允許讀取資料" #: server_privileges.php:61 server_privileges.php:203 #: server_privileges.php:561 msgid "Gives access to the complete list of databases." -msgstr "可讀取整個資料庫清單." +msgstr "允許訪問完整的資料庫列表" #: server_privileges.php:62 server_privileges.php:214 #: server_privileges.php:216 server_privileges.php:533 msgid "Allows performing SHOW CREATE VIEW queries." -msgstr "容許執行 SHOW CREATE VIEW 查詢." +msgstr "允許執行 SHOW CREATE VIEW 查詢" #: server_privileges.php:63 server_privileges.php:197 #: server_privileges.php:560 msgid "Allows shutting down the server." -msgstr "容許停止伺服器." +msgstr "允許關閉伺服器" #: server_privileges.php:64 server_privileges.php:204 #: server_privileges.php:557 @@ -7616,52 +7540,49 @@ msgid "" "required for most administrative operations like setting global variables or " "killing threads of other users." msgstr "" -"容許連線, 就算超過了最大連線限制; 用於最高系統管理如設定整體權限或中止其他使" -"用者指令." +"允許在達到最大連線數時連線,對於大多數像設定全域變數或中止其它使用者程序這樣" +"的管理操作是必需的" #: server_privileges.php:65 server_privileges.php:211 #: server_privileges.php:549 -#, fuzzy msgid "Allows creating and dropping triggers" -msgstr "容許建立及刪除索引." +msgstr "允許建立和刪除 triggers" #: server_privileges.php:66 server_privileges.php:192 #: server_privileges.php:457 server_privileges.php:519 msgid "Allows changing data." -msgstr "容許更新數據." +msgstr "允許修改資料" #: server_privileges.php:67 server_privileges.php:270 msgid "No privileges." -msgstr "沒有權限." +msgstr "無權限" #: server_privileges.php:312 server_privileges.php:313 -#, fuzzy -#| msgid "None" msgctxt "None privileges" msgid "None" -msgstr "不適用" +msgstr "無" #: server_privileges.php:443 server_privileges.php:580 #: server_privileges.php:1798 server_privileges.php:1804 msgid "Table-specific privileges" -msgstr "指定資料表權限" +msgstr "按表指定權限" #: server_privileges.php:444 server_privileges.php:588 #: server_privileges.php:1610 msgid " Note: MySQL privilege names are expressed in English " -msgstr "注意: MySQL 權限名稱會以英語顯示" +msgstr " 注意:MySQL 權限名稱會以英文顯示 " #: server_privileges.php:513 msgid "Administration" -msgstr "系統管理" +msgstr "管理" #: server_privileges.php:577 server_privileges.php:1609 msgid "Global privileges" -msgstr "整體權限" +msgstr "全域權限" #: server_privileges.php:579 server_privileges.php:1798 msgid "Database-specific privileges" -msgstr "指定資料庫權限" +msgstr "按資料庫指定權限" #: server_privileges.php:612 msgid "Resource limits" @@ -7669,66 +7590,64 @@ msgstr "資源限制" #: server_privileges.php:613 msgid "Note: Setting these options to 0 (zero) removes the limit." -msgstr "註: 設定這些選項為 0 (零) 可解除限制." +msgstr "注意:若將這些選項設爲 0(零) 即不限制" #: server_privileges.php:690 msgid "Login Information" -msgstr "登入資訊" +msgstr "登錄資訊" #: server_privileges.php:784 msgid "Do not change the password" -msgstr "請不要更改密碼" +msgstr "保持原密碼" #: server_privileges.php:817 server_privileges.php:2286 -#, fuzzy -#| msgid "No user(s) found." msgid "No user found." -msgstr "找不到使用者" +msgstr "未找到使用者" #: server_privileges.php:861 #, php-format msgid "The user %s already exists!" -msgstr "使用者 %s 己存在!" +msgstr "使用者 %s 己存在!" #: server_privileges.php:945 msgid "You have added a new user." -msgstr "您已新增了一個新使用者." +msgstr "您已新增了一個新使用者" #: server_privileges.php:1176 #, php-format msgid "You have updated the privileges for %s." -msgstr "您已經更新了 %s 的權限." +msgstr "您已更新了 %s 的權限" #: server_privileges.php:1200 #, php-format msgid "You have revoked the privileges for %s" -msgstr "您已移除這位使用者的權限: %s" +msgstr "您已移除 %s 的權限" #: server_privileges.php:1236 #, php-format msgid "The password for %s was changed successfully." -msgstr "%s 的密碼已成功更改." +msgstr "%s 的密碼已修改" #: server_privileges.php:1256 #, php-format msgid "Deleting %s" -msgstr "刪除 %s" +msgstr "正在刪除 %s" #: server_privileges.php:1270 msgid "No users selected for deleting!" -msgstr "並未選擇需要刪除之使用者!" +msgstr "沒有選擇要刪除的使用者!" #: server_privileges.php:1273 msgid "Reloading the privileges" -msgstr "重新讀取權限" +msgstr "重新載入權限" #: server_privileges.php:1291 msgid "The selected users have been deleted successfully." -msgstr "選擇的使用者已成功刪除." +msgstr "已成功刪除選中的使用者" #: server_privileges.php:1326 msgid "The privileges were reloaded successfully." -msgstr "權限已成功重新讀取." +msgstr "已成功重新載入權限" #: server_privileges.php:1337 server_privileges.php:1729 msgid "Edit Privileges" @@ -7741,11 +7660,11 @@ msgstr "移除" #: server_privileges.php:1373 server_privileges.php:1630 #: server_privileges.php:2243 msgid "Any" -msgstr "任何" +msgstr "任意" #: server_privileges.php:1470 msgid "User overview" -msgstr "使用者一覽" +msgstr "查看使用者" #: server_privileges.php:1611 server_privileges.php:1803 #: server_privileges.php:2153 @@ -7755,20 +7674,20 @@ msgstr "授權" #: server_privileges.php:1679 server_privileges.php:1703 #: server_privileges.php:2108 server_privileges.php:2297 msgid "Add a new User" -msgstr "新增使用者" +msgstr "新增新使用者" #: server_privileges.php:1684 msgid "Remove selected users" -msgstr "移除已選擇使用者" +msgstr "刪除選中的使用者" #: server_privileges.php:1687 msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "廢除使用者所有有效之權限並刪除." +msgstr "移除使用者所有權限,然後刪除使用者" #: server_privileges.php:1688 server_privileges.php:1689 #: server_privileges.php:1690 msgid "Drop the databases that have the same names as the users." -msgstr "刪除與使用者相同名稱之資料庫." +msgstr "刪除與使用者同名的資料庫" #: server_privileges.php:1711 #, php-format @@ -7778,93 +7697,91 @@ msgid "" "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 權限資料表." +"注意:phpMyAdmin 直接由 MySQL 權限表取得使用者權限。如果使用者手動更改表,表" +"內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入" +"權限%s" #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." -msgstr "選擇的使用者在權限資料表內找不到." +msgstr "在權限表內找不到選中的使用者" #: server_privileges.php:1804 msgid "Column-specific privileges" -msgstr "指定欄位權限" +msgstr "按欄位指定權限" #: server_privileges.php:2005 msgid "Add privileges on the following database" -msgstr "於以下資料庫加入權限" +msgstr "在下列資料庫新增權限" #: server_privileges.php:2023 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" -msgstr "萬用符號 _ 及 % 應正確地加入 \\ " +msgstr "要使用萬用字元 _ 和 % 本身,應使用用 \\ 轉義" #: server_privileges.php:2026 msgid "Add privileges on the following table" -msgstr "於以下資料表加入權限" +msgstr "在下列資料表新增權限" #: server_privileges.php:2083 msgid "Change Login Information / Copy User" -msgstr "更改登入資訊 / 複製使用者" +msgstr "修改登錄資訊/複製使用者" #: server_privileges.php:2086 msgid "Create a new user with the same privileges and ..." -msgstr "建立新使用者及使用相同之權限, 及 ..." +msgstr "建立具有相同權限的新使用者然後 ..." #: server_privileges.php:2088 msgid "... keep the old one." -msgstr "... 保留舊使用者." +msgstr "... 保留舊使用者" #: server_privileges.php:2089 msgid " ... delete the old one from the user tables." -msgstr " ... 刪除舊使用者." +msgstr " ... 從使用者資料表中刪除舊使用者" #: server_privileges.php:2090 msgid "" " ... revoke all active privileges from the old one and delete it afterwards." -msgstr " ... 廢除所有舊使用者有效之權限並刪除." +msgstr " ... 移除舊使用者的所有權限,然後刪除舊使用者" #: server_privileges.php:2091 msgid "" " ... delete the old one from the user tables and reload the privileges " "afterwards." -msgstr " ... 刪除舊使用者及重新讀取權限資料表." +msgstr " ... 從使用者資料表中刪除舊使用者,然後重新載入權限" #: server_privileges.php:2114 msgid "Database for user" -msgstr "" +msgstr "使用者資料庫" #: server_privileges.php:2118 -#, fuzzy -#| msgid "None" msgctxt "Create none database for user" msgid "None" -msgstr "不適用" +msgstr "無" #: server_privileges.php:2119 msgid "Create database with same name and grant all privileges" -msgstr "" +msgstr "建立與使用者同名的資料庫並授予所有權限" #: server_privileges.php:2120 msgid "Grant all privileges on wildcard name (username\\_%)" -msgstr "" +msgstr "給以 帳號_ 開頭的資料庫 (username\\_%) 授予所有權限" #: server_privileges.php:2123 -#, fuzzy, php-format +#, php-format msgid "Grant all privileges on database "%s"" -msgstr "查詢資料庫 "%s" 之權限." +msgstr "授予資料庫“%s”的所有權限" #: server_privileges.php:2146 #, php-format msgid "Users having access to "%s"" -msgstr "可讀取 "%s" 之使用者" +msgstr "使用者可以訪問“%s”" #: server_privileges.php:2254 msgid "global" -msgstr "整體" +msgstr "全域" #: server_privileges.php:2256 msgid "database-specific" -msgstr "指定資料庫" +msgstr "按資料庫指定" #: server_privileges.php:2258 msgid "wildcard" @@ -7873,13 +7790,13 @@ msgstr "萬用字元" #: server_processlist.php:29 #, php-format msgid "Thread %s was successfully killed." -msgstr "指令 %s 已成功中止." +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. 可能這指令已經結束." +msgstr "phpMyAdmin 無法中止程序 %s。該程序可能已經關閉" #: server_processlist.php:65 msgid "ID" @@ -7887,21 +7804,21 @@ msgstr "ID" #: server_replication.php:49 msgid "Unknown error" -msgstr "" +msgstr "未知錯誤" #: server_replication.php:56 #, php-format msgid "Unable to connect to master %s." -msgstr "" +msgstr "無法連線到主伺服器 %s " #: server_replication.php:63 msgid "" "Unable to read master log position. Possible privilege problem on master." -msgstr "" +msgstr "無法讀取主伺服器日誌。主伺服器的權限設定可能有問題" #: server_replication.php:69 msgid "Unable to change master" -msgstr "" +msgstr "無法修改主伺服器" #: server_replication.php:72 #, fuzzy, php-format @@ -7911,16 +7828,15 @@ msgstr "權限已成功重新讀取." #: server_replication.php:180 msgid "This server is configured as master in a replication process." -msgstr "" +msgstr "此伺服器已被設定爲一個複製程序中的主伺服器" #: server_replication.php:182 server_status.php:407 -#, fuzzy msgid "Show master status" -msgstr "顯示 slave 狀態" +msgstr "查看主伺服器狀態" #: server_replication.php:185 msgid "Show connected slaves" -msgstr "" +msgstr "查看已連線的從伺服器" #: server_replication.php:208 #, php-format @@ -7928,10 +7844,12 @@ msgid "" "This server is not configured as master in a replication process. Would you " "like to configure it?" msgstr "" +"此伺服器尚未設定爲一個複製程序中的主伺服器。您想現在設定" +"嗎?" #: server_replication.php:215 msgid "Master configuration" -msgstr "" +msgstr "主伺服器設定" #: server_replication.php:216 msgid "" @@ -7941,25 +7859,26 @@ msgid "" "ignore all databases by default and allow only certain databases to be " "replicated. Please select the mode:" msgstr "" +"此伺服器尚未設定爲一個複製程序中的主伺服器。您可以選擇複製所有但忽略某些資料" +"庫 (當您想複製大多數資料庫時很有用) 或者僅複製某些資料庫。請選擇模式:" #: server_replication.php:219 msgid "Replicate all databases; Ignore:" -msgstr "" +msgstr "複製所有資料庫,除了:" #: server_replication.php:220 msgid "Ignore all databases; Replicate:" -msgstr "" +msgstr "忽略所有資料庫;備援(Replicate):" #: server_replication.php:223 -#, fuzzy msgid "Please select databases:" -msgstr "請選擇資料庫" +msgstr "請選擇資料庫:" #: server_replication.php:226 msgid "" "Now, add the following lines at the end of [mysqld] section in your my.cnf " "and please restart the MySQL server afterwards." -msgstr "" +msgstr "現在,將下列行新增到您的 my.cnf 檔案最後,然後重新啓動 MySQL 伺服器" #: server_replication.php:228 msgid "" @@ -7967,84 +7886,81 @@ msgid "" "should see a message informing you, that this server is configured as " "master" msgstr "" +"當 MySQL 伺服器重新啓動後,請點選 執行 按鈕。您應該看見一條提示資訊說此伺服器" +"已經被設定爲主伺服器" #: server_replication.php:291 msgid "Slave SQL Thread not running!" -msgstr "" +msgstr "從 SQL 程序未啓動!" #: server_replication.php:294 msgid "Slave IO Thread not running!" -msgstr "" +msgstr "從 IO 程序未啓動!" #: server_replication.php:303 msgid "" "Server is configured as slave in a replication process. Would you like to:" -msgstr "" +msgstr "伺服器已被設定爲一個複製程序中的從伺服器。您是否要:" #: server_replication.php:306 msgid "See slave status table" -msgstr "" +msgstr "查看從伺服器狀態" #: server_replication.php:309 msgid "Synchronize databases with master" -msgstr "" +msgstr "根據主伺服器同步資料庫" #: server_replication.php:320 msgid "Control slave:" -msgstr "" +msgstr "控制 slave 伺服器:" #: server_replication.php:323 -#, fuzzy msgid "Full start" -msgstr "全文檢索" +msgstr "全部啓動" #: server_replication.php:323 msgid "Full stop" -msgstr "" +msgstr "全部停止" #: server_replication.php:324 msgid "Reset slave" -msgstr "" +msgstr "重置從伺服器" #: server_replication.php:326 -#, fuzzy -#| msgid "Structure only" msgid "Start SQL Thread only" -msgstr "只有結構" +msgstr "僅啓動 SQL 程序" #: server_replication.php:328 msgid "Stop SQL Thread only" -msgstr "" +msgstr "僅停止 SQL 程序" #: server_replication.php:331 -#, fuzzy -#| msgid "Structure only" msgid "Start IO Thread only" -msgstr "只有結構" +msgstr "僅啓動 IO 程序" #: server_replication.php:333 msgid "Stop IO Thread only" -msgstr "" +msgstr "僅停止 IO 程序" #: server_replication.php:338 msgid "Error management:" -msgstr "" +msgstr "錯誤管理:" #: server_replication.php:340 msgid "Skipping errors might lead into unsynchronized master and slave!" -msgstr "" +msgstr "忽略錯誤可能導致主從伺服器間不同步!" #: server_replication.php:342 msgid "Skip current error" -msgstr "" +msgstr "忽略目前錯誤" #: server_replication.php:343 msgid "Skip next" -msgstr "" +msgstr "忽略下" #: server_replication.php:346 msgid "errors." -msgstr "" +msgstr "個錯誤" #: server_replication.php:361 #, php-format @@ -8052,6 +7968,8 @@ msgid "" "This server is not configured as slave in a replication process. Would you " "like to configure it?" msgstr "" +"此伺服器尚未設定爲一個複製程序中的從伺服器。您想現在設定" +"嗎?" #: server_status.php:46 msgid "" @@ -8059,10 +7977,12 @@ msgid "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." msgstr "" +"因交易使用的臨時二進制日誌快取超出 binlog_cache_size 的設定而使用臨時檔案儲存" +"的數量" #: server_status.php:47 msgid "The number of transactions that used the temporary binary log cache." -msgstr "" +msgstr "交易所用的臨時二進制日誌快取的數量" #: server_status.php:48 msgid "" @@ -8071,44 +7991,47 @@ msgid "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." msgstr "" +"伺服器執行指令時自動在硬碟上建立的臨時表的數量。如果 Created_tmp_disk_tables " +"很大,您可以增加 tmp_table_size 的值,讓伺服器使用記憶體來儲存臨時表而非硬碟" #: server_status.php:49 msgid "How many temporary files mysqld has created." -msgstr "" +msgstr "mysqld 已建立的臨時檔案的數量" #: server_status.php:50 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." -msgstr "" +msgstr "伺服器執行指令時自動在記憶體中建立的臨時表的數量" #: 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 "" +msgstr "正在使用的延遲插入處理程序的數量。每張使用延遲插入的表都有自己的程序" #: server_status.php:53 msgid "The number of INSERT DELAYED rows written." -msgstr "" +msgstr "延遲插入已寫入的行數" #: server_status.php:54 msgid "The number of executed FLUSH statements." -msgstr "" +msgstr "已執行的強制更新 (FLUSH) 指令數" #: server_status.php:55 msgid "The number of internal COMMIT statements." -msgstr "" +msgstr "已執行的內部送出 (COMMIT) 指令數" #: server_status.php:56 msgid "The number of times a row was deleted from a table." -msgstr "" +msgstr "從資料表中刪除行的次數" #: server_status.php:57 msgid "" @@ -8116,6 +8039,8 @@ msgid "" "table with a given name. This is called discovery. Handler_discover " "indicates the number of time tables have been discovered." msgstr "" +"如果知道一個資料表的名字,MySQL 伺服器可以詢問 NDB 集羣儲存引擎,這被稱爲“發" +"現”Handler_discovery 表明瞭一個資料表被發現的次數" #: server_status.php:58 msgid "" @@ -8123,12 +8048,15 @@ msgid "" "it suggests that the server is doing a lot of full index scans; for example, " "SELECT col1 FROM foo, assuming that col1 is indexed." msgstr "" +"讀取一個索引入口點的次數。如果該值很大,說明您的伺服器執行了很多完整索引掃" +"描。例如,假設欄位 col1 已經建立了索引,然後執行 SELECT col1 FROM foo " #: server_status.php: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 "" @@ -8136,12 +8064,16 @@ msgid "" "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 "" @@ -8150,6 +8082,8 @@ msgid "" "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 "" @@ -8158,34 +8092,36 @@ msgid "" "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 "" +msgstr "內部回滾 (ROLLBACK) 指令數" #: server_status.php:65 msgid "The number of requests to update a row in a table." -msgstr "" +msgstr "資料表中更新行的請求數" #: server_status.php:66 msgid "The number of requests to insert a row in a table." -msgstr "" +msgstr "資料表中插入行的請求數" #: server_status.php:67 msgid "The number of pages containing data (dirty or clean)." -msgstr "" +msgstr "非空頁數 (含髒頁) " #: server_status.php:68 msgid "The number of pages currently dirty." -msgstr "" +msgstr "目前髒頁數" #: server_status.php:69 msgid "The number of buffer pool pages that have been requested to be flushed." -msgstr "" +msgstr "請求更新的快取池頁數" #: server_status.php:70 msgid "The number of free pages." -msgstr "" +msgstr "空閒頁數" #: server_status.php:71 msgid "" @@ -8193,6 +8129,8 @@ msgid "" "being read or written or that can't be flushed or removed for some other " "reason." msgstr "" +"InnoDB 快取池中鎖定頁的數量。這些頁是正在被讀取或寫入的,或者是因其他原因不能" +"被重新整理或刪除的" #: server_status.php:72 msgid "" @@ -8201,32 +8139,37 @@ msgid "" "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 "" +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 "" +msgstr "InnoDB 原始化的順序預讀數。這會在 InnoDB 執行一個順序完整表掃描時發生" #: server_status.php:76 msgid "The number of logical read requests InnoDB has done." -msgstr "" +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 "" +msgstr "InnoDB 進行邏輯讀取時無法從快取池中取得而執行單頁讀取的次數" #: server_status.php:78 msgid "" @@ -8236,157 +8179,163 @@ msgid "" "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 "" +msgstr "寫入 InnoDB 快取池的次數" #: server_status.php:80 msgid "The number of fsync() operations so far." -msgstr "" +msgstr "fsync() 總操作的次數" #: server_status.php:81 msgid "The current number of pending fsync() operations." -msgstr "" +msgstr "目前掛起 fsync() 操作的數量" #: server_status.php:82 msgid "The current number of pending reads." -msgstr "" +msgstr "目前掛起的讀操作數" #: server_status.php:83 msgid "The current number of pending writes." -msgstr "" +msgstr "目前掛起的寫操作數" #: server_status.php:84 msgid "The amount of data read so far, in bytes." -msgstr "" +msgstr "讀取的總資料量 (單位:字元)" #: server_status.php:85 msgid "The total number of data reads." -msgstr "" +msgstr "資料讀取總數" #: server_status.php:86 msgid "The total number of data writes." -msgstr "" +msgstr "資料寫入總數" #: server_status.php:87 msgid "The amount of data written so far, in bytes." -msgstr "" +msgstr "寫入的總資料量 (單位:字元)" #: server_status.php:88 msgid "The number of pages that have been written for doublewrite operations." -msgstr "" +msgstr "以雙寫入操作寫入的頁數" #: server_status.php:89 msgid "The number of doublewrite operations that have been performed." -msgstr "" +msgstr "已經執行的雙寫入次數" #: 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 "" +msgstr "因日誌快取太小而必須等待其被寫入所造成的等待數" #: server_status.php:91 msgid "The number of log write requests." -msgstr "" +msgstr "日誌寫入請求數" #: server_status.php:92 msgid "The number of physical writes to the log file." -msgstr "" +msgstr "日誌物理寫入次數" #: server_status.php:93 msgid "The number of fsync() writes done to the log file." -msgstr "" +msgstr "使用 fsync() 寫入日志檔案的次數" #: server_status.php:94 msgid "The number of pending log file fsyncs." -msgstr "" +msgstr "目前掛起的 fsync 日志檔案數" #: server_status.php:95 msgid "Pending log file writes." -msgstr "" +msgstr "目前掛起的日誌寫入數" #: server_status.php:96 msgid "The number of bytes written to the log file." -msgstr "" +msgstr "寫入日志檔案的字元數" #: server_status.php:97 msgid "The number of pages created." -msgstr "" +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 頁大小 (預設 16KB)。許多值都以頁爲單位進行統計,頁大小可以很方" +"便地將這些值轉化爲字元數" #: server_status.php:99 msgid "The number of pages read." -msgstr "" +msgstr "讀取的頁數" #: server_status.php:100 msgid "The number of pages written." -msgstr "" +msgstr "寫入的頁數" #: server_status.php:101 msgid "The number of row locks currently being waited for." -msgstr "" +msgstr "正在等待行鎖的數量" #: server_status.php:102 msgid "The average time to acquire a row lock, in milliseconds." -msgstr "" +msgstr "等待取得行鎖的平均時間 (單位:毫秒)" #: server_status.php:103 msgid "The total time spent in acquiring row locks, in milliseconds." -msgstr "" +msgstr "等待取得行鎖的總時間 (單位:毫秒)" #: server_status.php:104 msgid "The maximum time to acquire a row lock, in milliseconds." -msgstr "" +msgstr "等待取得行鎖的最大時間 (單位:毫秒)" #: server_status.php:105 msgid "The number of times a row lock had to be waited for." -msgstr "" +msgstr "等待行鎖的次數" #: server_status.php:106 msgid "The number of rows deleted from InnoDB tables." -msgstr "" +msgstr "從 InnoDB 資料表中刪除的行數" #: server_status.php:107 msgid "The number of rows inserted in InnoDB tables." -msgstr "" +msgstr "插入到 InnoDB 資料表中的行數" #: server_status.php:108 msgid "The number of rows read from InnoDB tables." -msgstr "" +msgstr "從 InnoDB 資料表中讀取的行數" #: server_status.php:109 msgid "The number of rows updated in InnoDB tables." -msgstr "" +msgstr "InnoDB 中更新的行數" #: server_status.php:110 msgid "" "The number of key blocks in 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 msgid "" "The number of unused blocks in the key cache. You can use this value to " "determine how much of the key cache is in use." -msgstr "" +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 "" +msgstr "鍵快取中已經使用的塊數。該值指示在某個時刻使用了最多塊數的數量" #: server_status.php:113 msgid "The number of requests to read a key block from the cache." -msgstr "" +msgstr "從快取中讀取鍵塊的請求次數" #: server_status.php:114 msgid "" @@ -8394,14 +8343,16 @@ msgid "" "then your key_buffer_size value is probably too small. The cache miss rate " "can be calculated as Key_reads/Key_read_requests." msgstr "" +"從硬碟中物理讀取鍵塊的次數。如果 Key_reads 很大,則說明您的 key_buffer_size " +"可能設定得太小了。快取缺失率可以由 Key_reads/Key_read_requests 計算得出" #: server_status.php:115 msgid "The number of requests to write a key block to the cache." -msgstr "" +msgstr "將一個鍵塊寫入快取的請求數" #: server_status.php:116 msgid "The number of physical writes of a key block to disk." -msgstr "" +msgstr "將鍵塊物理寫入到硬碟的次數" #: server_status.php:117 msgid "" @@ -8409,44 +8360,46 @@ msgid "" "optimizer. Useful for comparing the cost of different query plans for the " "same query. The default value of 0 means that no query has been compiled yet." msgstr "" +"最後編譯的查詢的總開銷由查詢最佳化器計算得出,可用於比較使用不同的查詢指令進" +"行相同的查詢時的效率差異。預設值0表示還沒有查詢被編譯" #: server_status.php:118 msgid "The number of rows waiting to be written in INSERT DELAYED queues." -msgstr "" +msgstr "等待寫入延遲插入隊列的行數" #: 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 "" +msgstr "已經開啟的表個數。如果該值很大,則說明表快取大小可能設定過小" #: server_status.php:120 msgid "The number of files that are open." -msgstr "" +msgstr "開啟的檔案個數" #: server_status.php:121 msgid "The number of streams that are open (used mainly for logging)." -msgstr "" +msgstr "開啟的流個數 (主要用於日誌記錄)" #: server_status.php:122 msgid "The number of tables that are open." -msgstr "" +msgstr "開啟的資料表個數" #: server_status.php:123 msgid "The number of free memory blocks in query cache." -msgstr "" +msgstr "查詢快取中空閒的記憶體塊數" #: server_status.php:124 msgid "The amount of free memory for query cache." -msgstr "" +msgstr "查詢快取中空閒的記憶體總數" #: server_status.php:125 msgid "The number of cache hits." -msgstr "" +msgstr "快取命中數" #: server_status.php:126 msgid "The number of queries added to the cache." -msgstr "" +msgstr "加入到快取的查詢數" #: server_status.php:127 msgid "" @@ -8455,20 +8408,24 @@ msgid "" "cache size. The query cache uses a least recently used (LRU) strategy to " "decide which queries to remove from the cache." msgstr "" +"爲快取新的查詢而被刪除的已快取查詢的個數,由最近最少使用算法 (LRU) 確定應刪除" +"哪個已快取的查詢。該資訊可幫助您調整查詢快取大小" #: server_status.php:128 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" +"未快取的查詢數 (包括不能被快取,或因爲 query_cache_type 的設定而沒有被快取的" +"查詢)" #: server_status.php:129 msgid "The number of queries registered in the cache." -msgstr "" +msgstr "在快取中註冊的查詢數" #: server_status.php:130 msgid "The total number of blocks in the query cache." -msgstr "" +msgstr "查詢快取中的總塊數" #: server_status.php:131 msgctxt "$strShowStatusReset" @@ -8477,58 +8434,64 @@ msgstr "重設" #: server_status.php:132 msgid "The status of failsafe replication (not yet implemented)." -msgstr "" +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 "" +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 "" +msgstr "在第一個資料表上進行了完整表掃描的多表查詢數" #: server_status.php:138 msgid "The number of temporary tables currently open by the slave SQL thread." -msgstr "" +msgstr "目前由從 SQL 程序開啟的臨時表的數量" #: server_status.php:139 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -msgstr "" +msgstr "從 SQL 程序總共重試交易複製數" #: server_status.php:140 msgid "This is ON if this server is a slave that is connected to a master." -msgstr "" +msgstr "如果該值爲 ON,則這臺伺服器是一臺已經連線到主伺服器的從伺服器" #: server_status.php:141 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." -msgstr "" +msgstr "使用了比 slow_launch_time 更多的時間來啓動的程序數量" #: server_status.php:142 msgid "" "The number of queries that have taken more than long_query_time seconds." -msgstr "" +msgstr "使用了比 long_query_time 更多時間的查詢數" #: server_status.php:143 msgid "" @@ -8536,22 +8499,24 @@ msgid "" "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 "" +msgstr "局部範圍完成的排序次數" #: server_status.php:145 msgid "The number of sorted rows." -msgstr "" +msgstr "排序的行數" #: server_status.php:146 msgid "The number of sorts that were done by scanning the table." -msgstr "" +msgstr "掃描表完成的排序次數" #: server_status.php:147 msgid "The number of times that a table lock was acquired immediately." -msgstr "" +msgstr "立即需要鎖定表的次數" #: server_status.php:148 msgid "" @@ -8560,6 +8525,8 @@ msgid "" "should first optimize your queries, and then either split your table or " "tables or use replication." msgstr "" +"無法立即取得鎖定表而必須等待的次數。如果該值很高,且您遇到了性能方面的問題," +"則應該首先檢查您的查詢指令,然後使用複製操作來分開表" #: server_status.php:149 msgid "" @@ -8567,10 +8534,12 @@ msgid "" "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 "" +msgstr "目前開啟的連線數" #: server_status.php:151 msgid "" @@ -8579,10 +8548,12 @@ msgid "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" msgstr "" +"目前用於控制連線的程序數。如果 Threads_created 很大,您可能需要增加 " +"thread_cache_size 的值 (如果程序狀況良好,這麼做通常並不會帶來顯著的性能提升)" #: server_status.php:152 msgid "The number of threads that are not sleeping." -msgstr "" +msgstr "非睡眠狀態的程序數量" #: server_status.php:163 msgid "Runtime Information" @@ -8590,7 +8561,7 @@ msgstr "運行資訊" #: server_status.php:375 msgid "Handler" -msgstr "操作者" +msgstr "處理器" #: server_status.php:376 msgid "Query cache" @@ -8598,11 +8569,11 @@ msgstr "查詢快取" #: server_status.php:377 msgid "Threads" -msgstr "線程" +msgstr "程序" #: server_status.php:379 msgid "Temporary data" -msgstr "暫存資料" +msgstr "臨時資料" #: server_status.php:380 msgid "Delayed inserts" @@ -8614,7 +8585,7 @@ msgstr "鍵快取" #: server_status.php:382 msgid "Joins" -msgstr "結合" +msgstr "多表查詢" #: server_status.php:384 msgid "Sorting" @@ -8622,70 +8593,68 @@ msgstr "排序" #: server_status.php:386 msgid "Transaction coordinator" -msgstr "交易協調器" +msgstr "交易協調" #: server_status.php:397 msgid "Flush (close) all tables" -msgstr "強迫更新 (關閉) 所有資料表" +msgstr "強制更新 (關閉) 所有表" #: server_status.php:399 msgid "Show open tables" -msgstr "顯示開啟資料表" +msgstr "顯示開啟的表" #: server_status.php:404 msgid "Show slave hosts" -msgstr "顯示 slave 主機" +msgstr "顯示從伺服器" #: server_status.php:410 msgid "Show slave status" -msgstr "顯示 slave 狀態" +msgstr "顯示從伺服器狀態" #: server_status.php:415 msgid "Flush query cache" -msgstr "強迫更新語法快取" +msgstr "強制更新查詢快取" #: server_status.php:420 msgid "Show processes" -msgstr "顯示程序 (Process)" +msgstr "顯示程序" #: server_status.php:470 -#, fuzzy -#| msgid "Reset" msgctxt "for Show status" msgid "Reset" -msgstr "重設" +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 啟動." +msgstr "此 MySQL 伺服器已經運行了 %s,啓動時間爲 %s" #: server_status.php:486 msgid "" "This MySQL server works as master and slave in replication process." -msgstr "" +msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" #: server_status.php:488 msgid "This MySQL server works as master in replication process." -msgstr "" +msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" #: server_status.php:490 msgid "This MySQL server works as slave in replication process." -msgstr "" +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 伺服器自啟動以來的網絡流量統計。" +msgstr "伺服器流量:這些表顯示了此 MySQL 伺服器自啓動以來的網絡流量統計" #: server_status.php:514 msgid "Traffic" @@ -8695,7 +8664,9 @@ msgstr "流量" msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." -msgstr "於較繁忙的伺服器, 計算器可能會溢出, 令 MySQL 伺服器提供之統計有誤差." +msgstr "" +"在高負載的伺服器上,字元計數器可能會溢出,因此由 MySQL 返回的統計值可能會不正" +"確" #: server_status.php:515 server_status.php:560 server_status.php:625 #: server_status.php:686 @@ -8704,11 +8675,11 @@ msgstr "每小時" #: server_status.php:520 msgid "Received" -msgstr "接收" +msgstr "已接收" #: server_status.php:530 msgid "Sent" -msgstr "送出" +msgstr "已發送" #: server_status.php:559 msgid "Connections" @@ -8716,22 +8687,22 @@ msgstr "連線" #: server_status.php:566 msgid "max. concurrent connections" -msgstr "最大連線數目" +msgstr "最大同時連線數" #: server_status.php:573 msgid "Failed attempts" -msgstr "嘗試失敗" +msgstr "已失敗" #: server_status.php:587 msgid "Aborted" -msgstr "取消" +msgstr "已取消" #: server_status.php:616 #, php-format msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." -msgstr "查詣統計: 當統計啟動後, 共有 %s 個查詢傳送到此伺服器." +msgstr "查詢統計:自啓動後,伺服器共收到了 %s 次查詢" #: server_status.php:626 msgid "per minute" @@ -8746,149 +8717,145 @@ msgid "Query type" msgstr "查詢方式" #: server_status.php:725 server_status.php:726 -#, fuzzy msgid "Show query chart" -msgstr "SQL 語法" +msgstr "顯示查詢圖表" #: server_status.php:727 msgid "Note: Generating the query chart can take a long time." -msgstr "" +msgstr "注意:產生查詢圖表可能需要一定的時間" #: server_status.php:872 -#, fuzzy msgid "Replication status" -msgstr "複製" +msgstr "複製狀態" #: server_synchronize.php:92 msgid "Could not connect to the source" -msgstr "" +msgstr "無法連線到來源資料庫" #: server_synchronize.php:95 msgid "Could not connect to the target" -msgstr "" +msgstr "無法連線到目標資料庫" #: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:76 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." -msgstr "" +msgstr "資料庫 '%s' 不存在" #: server_synchronize.php:263 msgid "Structure Synchronization" -msgstr "" +msgstr "結構同步" #: server_synchronize.php:270 msgid "Data Synchronization" -msgstr "" +msgstr "資料同步" #: server_synchronize.php:399 server_synchronize.php:838 msgid "not present" -msgstr "" +msgstr "未找到" #: server_synchronize.php:423 server_synchronize.php:866 msgid "Structure Difference" -msgstr "" +msgstr "結構差異" #: server_synchronize.php:424 server_synchronize.php:867 msgid "Data Difference" -msgstr "" +msgstr "資料差異" #: server_synchronize.php:429 server_synchronize.php:872 msgid "Add column(s)" -msgstr "" +msgstr "新增欄位" #: server_synchronize.php:430 server_synchronize.php:873 msgid "Remove column(s)" -msgstr "" +msgstr "刪除欄位" #: server_synchronize.php:431 server_synchronize.php:874 msgid "Alter column(s)" -msgstr "" +msgstr "修改欄位" #: server_synchronize.php:432 server_synchronize.php:875 msgid "Remove index(s)" -msgstr "" +msgstr "刪除索引" #: server_synchronize.php:433 server_synchronize.php:876 msgid "Apply index(s)" -msgstr "" +msgstr "增加索引" #: server_synchronize.php:434 server_synchronize.php:877 msgid "Update row(s)" -msgstr "" +msgstr "更新行" #: server_synchronize.php:435 server_synchronize.php:878 msgid "Insert row(s)" -msgstr "" +msgstr "增加行" #: server_synchronize.php:445 server_synchronize.php:889 msgid "Would you like to delete all the previous rows from target tables?" -msgstr "" +msgstr "您希望刪除目前目標資料表中的所有資料嗎?" #: server_synchronize.php:448 server_synchronize.php:893 msgid "Apply Selected Changes" -msgstr "" +msgstr "套用選中的修改" #: server_synchronize.php:450 server_synchronize.php:895 msgid "Synchronize Databases" -msgstr "" +msgstr "同步資料庫" #: server_synchronize.php:463 msgid "Selected target tables have been synchronized with source tables." -msgstr "" +msgstr "選中的資料表已根據來源資料表同步" #: server_synchronize.php:941 msgid "Target database has been synchronized with source database" -msgstr "" +msgstr "已根據來源資料庫同步目標資料庫" #: server_synchronize.php:1002 msgid "The following queries have been executed:" -msgstr "" +msgstr "下列查詢被執行:" #: server_synchronize.php:1130 msgid "Enter manually" -msgstr "" +msgstr "手動輸入" #: server_synchronize.php:1138 -#, fuzzy -#| msgid "max. concurrent connections" msgid "Current connection" -msgstr "最大連線數目" +msgstr "目前連線" #: server_synchronize.php:1167 #, php-format msgid "Configuration: %s" -msgstr "" +msgstr "設定: %s" #: server_synchronize.php:1182 msgid "Socket" -msgstr "" +msgstr "連線埠" #: server_synchronize.php:1228 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." -msgstr "" +msgstr "目標資料庫將完全根據來源資料庫同步。來源資料庫將保持不變" #: server_variables.php:39 msgid "Server variables and settings" -msgstr "伺服器資訊及設定" +msgstr "伺服器變數和設定" #: server_variables.php:60 msgid "Session value" -msgstr "程序數值" +msgstr "連線值" #: server_variables.php:60 server_variables.php:99 msgid "Global value" -msgstr "整體值" +msgstr "全域值" #: setup/frames/config.inc.php:38 setup/frames/index.inc.php:225 msgid "Download" -msgstr "" +msgstr "下載" #: setup/frames/index.inc.php:49 msgid "Cannot load or save configuration" -msgstr "" +msgstr "無法載入或儲存設定" #: setup/frames/index.inc.php:50 msgid "" @@ -8896,23 +8863,25 @@ msgid "" "level directory as described in [a@Documentation.html#setup_script]" "documentation[/a]. Otherwise you will be only able to download or display it." msgstr "" +"請在 phpMyAdmin 的根資料夾下建立 [a@Documentation.html#setup_script]檔案[/a]" +"中所述的網站伺服器可以寫入的 [em]config[/em] 資料夾。否則您只能下載或顯示配置" #: setup/frames/index.inc.php:57 msgid "" "You are not using a secure connection; all data (including potentially " "sensitive information, like passwords) is transferred unencrypted!" -msgstr "" +msgstr "您現在沒有使用安全連線,所有資料(包括敏感資訊,如密碼)均爲純文字傳輸!" #: setup/frames/index.inc.php:60 #, php-format msgid "" "If your server is also configured to accept HTTPS requests follow [a@%s]this " "link[/a] to use a secure connection." -msgstr "" +msgstr "如果您的伺服器已經設定好支援 HTTPS,請[a@%s]點選這裏[/a]使用安全連線" #: setup/frames/index.inc.php:64 msgid "Insecure connection" -msgstr "" +msgstr "非安全連線" #: setup/frames/index.inc.php:92 #, fuzzy @@ -8928,106 +8897,104 @@ msgstr "" #: setup/frames/index.inc.php:100 setup/frames/menu.inc.php:15 msgid "Overview" -msgstr "" +msgstr "概要" #: setup/frames/index.inc.php:108 msgid "Show hidden messages (#MSG_COUNT)" -msgstr "" +msgstr "顯示隱藏資訊 (#MSG_COUNT)" #: setup/frames/index.inc.php:148 msgid "There are no configured servers" -msgstr "" +msgstr "沒有設定好的伺服器" #: setup/frames/index.inc.php:156 msgid "New server" -msgstr "" +msgstr "建立伺服器" #: setup/frames/index.inc.php:185 msgid "Default language" -msgstr "" +msgstr "預設語言" #: setup/frames/index.inc.php:195 msgid "let the user choose" -msgstr "" +msgstr "讓使用者選擇" #: setup/frames/index.inc.php:206 msgid "- none -" -msgstr "" +msgstr "- 無 -" #: setup/frames/index.inc.php:209 msgid "Default server" -msgstr "" +msgstr "預設伺服器" #: setup/frames/index.inc.php:219 msgid "End of line" -msgstr "" +msgstr "換行符號" #: setup/frames/index.inc.php:224 msgid "Display" -msgstr "" +msgstr "顯示" #: setup/frames/index.inc.php:228 #, fuzzy msgid "Load" -msgstr "本地" +msgstr "載入" #: setup/frames/index.inc.php:239 #, fuzzy msgid "phpMyAdmin homepage" -msgstr "phpMyAdmin 說明文件" +msgstr "phpMyAdmin 首頁 " #: setup/frames/index.inc.php:240 msgid "Donate" -msgstr "" +msgstr "贊助" #: setup/frames/servers.inc.php:28 msgid "Edit server" -msgstr "" +msgstr "編輯伺服器" #: setup/frames/servers.inc.php:37 -#, fuzzy msgid "Add a new server" -msgstr "新增使用者" +msgstr "新增伺服器" #: setup/lib/form_processing.lib.php:42 msgid "Warning" -msgstr "" +msgstr "警告" #: setup/lib/form_processing.lib.php:43 msgid "Submitted form contains errors" -msgstr "" +msgstr "送出的表單中有錯誤" #: setup/lib/form_processing.lib.php:44 msgid "Try to revert erroneous fields to their default values" -msgstr "" +msgstr "嘗試恢復錯誤參數爲預設值" #: setup/lib/form_processing.lib.php:47 msgid "Ignore errors" -msgstr "" +msgstr "忽略錯誤" #: setup/lib/form_processing.lib.php:49 -#, fuzzy msgid "Show form" -msgstr "顯示顏色" +msgstr "顯示資料表單" #: setup/lib/index.lib.php:119 msgid "" "Neither URL wrapper nor CURL is available. Version check is not possible." -msgstr "" +msgstr "URL 協定和 CURL 都不可用,無法檢查新版本" #: setup/lib/index.lib.php:126 msgid "" "Reading of version failed. Maybe you're offline or the upgrade server does " "not respond." -msgstr "" +msgstr "讀取版本資訊失敗。您可能尚未接入網絡或更新伺服器未響應" #: setup/lib/index.lib.php:143 msgid "Got invalid version string from server" -msgstr "" +msgstr "從伺服器取得版本錯誤" #: setup/lib/index.lib.php:150 msgid "Unparsable version string" -msgstr "" +msgstr "無法解析版本" #: setup/lib/index.lib.php:162 #, php-format @@ -9035,10 +9002,12 @@ msgid "" "You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable " "version is %s, released on %s." msgstr "" +"您現在使用的是開發版,請透過 [kbd]git pull[/kbd] 檢查更新 :-)[br]最新正式版" +"爲 %s,於 %s 發佈" #: setup/lib/index.lib.php:165 msgid "No newer stable version is available" -msgstr "" +msgstr "沒有更新的可用版本" #: setup/lib/index.lib.php:250 #, php-format @@ -9048,6 +9017,8 @@ msgid "" "proxies list%s. However, IP-based protection may not be reliable if your IP " "belongs to an ISP where thousands of users, including you, are connected to." msgstr "" +"該%s選項%s應該被關閉以防止有人嘗試暴力破解 MySQL 伺服器。如果有必要,您可以使" +"用%s可信代理表%s。但如果您和許多人共用一個 IP 網址,該措施的安全性將下降" #: setup/lib/index.lib.php:252 msgid "" @@ -9055,31 +9026,35 @@ msgid "" "so a key was automatically generated for you. It is used to encrypt cookies; " "you don't need to remember it." msgstr "" +"您開啟了 Cookies 認證方式,但沒有設定短語密碼,因此系統自動產生了一個短語密" +"碼,該密語用於加密 Cookies。您不需要記住這個短語密碼" #: setup/lib/index.lib.php:253 #, php-format msgid "" "%sBzip2 compression and decompression%s requires functions (%s) which are " "unavailable on this system." -msgstr "" +msgstr "此系統目前不支援 %sBzip2 壓縮和解壓縮%s所必須的 (%s) 函數" #: setup/lib/index.lib.php:255 msgid "" "This value should be double checked to ensure that this directory is neither " "world accessible nor readable or writable by other users on your server." msgstr "" +"對該值應該進行小心謹慎的檢查,確保伺服器上的其他使用者對該資料夾都沒有讀取和" +"寫入的權限" #: setup/lib/index.lib.php:256 #, php-format msgid "This %soption%s should be enabled if your web server supports it." -msgstr "" +msgstr "如果瀏覽器支援,建議啓用該%s選項%s" #: setup/lib/index.lib.php:258 #, php-format msgid "" "%sGZip compression and decompression%s requires functions (%s) which are " "unavailable on this system." -msgstr "" +msgstr "此系統目前不支援 %sGZip 壓縮和解壓縮%s所必須的 (%s) 函數" #: setup/lib/index.lib.php:260 #, php-format @@ -9088,6 +9063,8 @@ msgid "" "invalidation if %ssession.gc_maxlifetime%s is lower than its value " "(currently %d)." msgstr "" +"如果%s登錄 cookie 有效期%s超過 1440 秒且超過 %ssession.gc_maxlifetime%s 的值 " +"(目前 %d) 則可能導致連線隨機失效" #: setup/lib/index.lib.php:262 #, php-format @@ -9095,6 +9072,8 @@ msgid "" "%sLogin cookie validity%s should be set to 1800 seconds (30 minutes) at " "most. Values larger than 1800 may pose a security risk such as impersonation." msgstr "" +"%s登錄 cookie 有效期%s不應超過 1800 秒 (30 分鐘)。如果有效期大於 1800 秒,將" +"會增加安全風險" #: setup/lib/index.lib.php:264 #, php-format @@ -9102,6 +9081,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 "" +"如果使用 cookie 認證且%s登錄 cookie 儲存時間%s不爲 0,%s登錄 cookie 有效期%s" +"的值不能超過前者" #: setup/lib/index.lib.php:266 #, php-format @@ -9111,6 +9092,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。但如果您" +"和許多人共用一個 IP 網址,該措施的安全性將下降" #: setup/lib/index.lib.php:268 #, php-format @@ -9121,117 +9104,119 @@ msgid "" "phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]" "http[/kbd]." msgstr "" +"您設定了 [kbd]config[/kbd] 認證方式,且爲了能夠自動登錄而儲存了帳號和密碼,但" +"在常用主機上不建議這樣設定。如果有人知道 phpMyAdmin 的網址,他們就能夠進入 " +"phpMyAdmin 的管理界面。建議將%s認證方式%s設定爲 [kbd]cookie 認證[/kbd]或 " +"[kbd]HTTP 認證[/kbd]" #: setup/lib/index.lib.php:270 #, php-format msgid "" "%sZip compression%s requires functions (%s) which are unavailable on this " "system." -msgstr "" +msgstr "此系統目前不支援 %sZip 壓縮%s所必須的 (%s) 函數" #: setup/lib/index.lib.php:272 #, php-format msgid "" "%sZip decompression%s requires functions (%s) which are unavailable on this " "system." -msgstr "" +msgstr "此系統目前不支援 %sZip 解壓縮%s所必須的 (%s) 函數" #: setup/lib/index.lib.php:296 msgid "You should use SSL connections if your web server supports it." -msgstr "" +msgstr "如果伺服器支援,您應該使用 SSL 連線" #: setup/lib/index.lib.php:306 msgid "You should use mysqli for performance reasons." -msgstr "" +msgstr "您可以使用 mysqli 以取得更高的性能" #: setup/lib/index.lib.php:331 msgid "You allow for connecting to the server without a password." -msgstr "" +msgstr "該伺服器現在允許空密碼登錄" #: setup/lib/index.lib.php:351 msgid "Key is too short, it should have at least 8 characters." -msgstr "" +msgstr "短語密碼太短,至少應有 8 個字元" #: setup/lib/index.lib.php:358 msgid "Key should contain letters, numbers [em]and[/em] special characters." -msgstr "" +msgstr "短語密碼應包含字母、數字[em]和[/em]特殊字元" #: sql.php:87 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 "瀏覽外來值" +msgstr "瀏覽不相關的值" #: sql.php:163 #, php-format msgid "Using bookmark \"%s\" as default browse query." -msgstr "" +msgstr "使用書籤 \"%s\" 作爲預設的查詢" #: sql.php:625 tbl_replace.php:387 #, php-format msgid "Inserted row id: %1$d" -msgstr "" +msgstr "插入的行 id: %1$d" #: sql.php:642 msgid "Showing as PHP code" -msgstr "" +msgstr "顯示爲 PHP 程式碼" #: sql.php:645 tbl_replace.php:361 msgid "Showing SQL query" -msgstr "" +msgstr "顯示 SQL 查詢" #: sql.php:647 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" -msgstr "檢查 SQL" +msgstr "已檢驗的 SQL" #: sql.php:922 #, php-format msgid "Problems with indexes of table `%s`" -msgstr "於資料表 `%s` 中有索引問題" +msgstr "資料表 `%s` 的索引存在問題" #: sql.php:954 msgid "Label" -msgstr "書籤名稱" +msgstr "標籤" #: tbl_addfield.php:185 tbl_alter.php:99 tbl_indexes.php:97 -#, fuzzy, php-format +#, php-format msgid "Table %1$s has been altered successfully" -msgstr "選擇的使用者已成功刪除." +msgstr "已成功修改表 %1$s " #: tbl_change.php:283 tbl_change.php:321 msgid "Function" msgstr "函數" #: tbl_change.php:758 -#, fuzzy -#| msgid " Because of its length,
this field might not be editable " msgid " Because of its length,
this column might not be editable " -msgstr " 由於長度限制
此欄位不能編輯 " +msgstr " 因長度問題,
該欄位可能無法編輯 " #: tbl_change.php:875 msgid "Remove BLOB Repository Reference" -msgstr "" +msgstr "刪除 BLOB 容器功能" #: tbl_change.php:881 msgid "Binary - do not edit" -msgstr "二進制碼 - 不能編輯" +msgstr "二進制 - 無法編輯" #: tbl_change.php:929 msgid "Upload to BLOB repository" -msgstr "" +msgstr "上傳到 BLOB 容器" #: tbl_change.php:1058 msgid "Insert as new row" -msgstr "儲存為新記錄" +msgstr "以新行插入" #: tbl_change.php:1059 msgid "Insert as new row and ignore errors" -msgstr "" +msgstr "以新行插入 (忽略錯誤)" #: tbl_change.php:1060 msgid "Show insert query" -msgstr "" +msgstr "顯示插入指令" #: tbl_change.php:1071 msgid "and then" @@ -9239,162 +9224,154 @@ msgstr "然後" #: tbl_change.php:1075 msgid "Go back to previous page" -msgstr "返回" +msgstr "返回上一頁" #: tbl_change.php:1076 msgid "Insert another new row" -msgstr "新增一筆記錄" +msgstr "插入新資料" #: tbl_change.php:1080 msgid "Go back to this page" -msgstr "返回這頁" +msgstr "返回到本頁" #: tbl_change.php:1088 msgid "Edit next row" -msgstr "編輯新一列" +msgstr "編輯下一行" #: tbl_change.php:1099 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -msgstr "按 TAB 鍵跳到下一個數值, 或 CTRL+方向鍵 作隨意移動" +msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動" #: tbl_change.php:1137 #, php-format msgid "Continue insertion with %s rows" -msgstr "" +msgstr "繼續插入 %s 行" #: tbl_chart.php:56 -#, fuzzy -#| msgid "The privileges were reloaded successfully." msgid "Chart generated successfully." -msgstr "權限已成功重新讀取." +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" +msgstr "" +"該查詢的結果不能用於圖表。參見[a@./Documentation.html#faq6_29@Documentation]" +"常見問題 (FAQ) 6.29[/a]" #: tbl_chart.php:90 msgid "Width" -msgstr "" +msgstr "寬" #: tbl_chart.php:94 msgid "Height" -msgstr "" +msgstr "高" #: tbl_chart.php:98 msgid "Title" -msgstr "" +msgstr "標題" #: tbl_chart.php:103 msgid "X Axis label" -msgstr "" +msgstr "水平軸標籤" #: tbl_chart.php:107 msgid "Y Axis label" -msgstr "" +msgstr "豎直軸標籤" #: tbl_chart.php:112 msgid "Area margins" -msgstr "" +msgstr "區域邊距" #: tbl_chart.php:122 msgid "Legend margins" -msgstr "" +msgstr "圖例邊距" #: tbl_chart.php:134 -#, fuzzy -#| msgid "Mar" msgid "Bar" -msgstr "Mar" +msgstr "柱狀圖" #: tbl_chart.php:135 msgid "Line" -msgstr "" +msgstr "折線圖" #: tbl_chart.php:136 msgid "Radar" -msgstr "" +msgstr "雷達圖 (戴布拉圖、螂蛛網圖)" #: tbl_chart.php:138 -#, fuzzy -#| msgid "PiB" msgid "Pie" -msgstr "PB" +msgstr "餅圖" #: tbl_chart.php:144 -#, fuzzy -#| msgid "Query type" msgid "Bar type" -msgstr "查詢方式" +msgstr "柱狀圖類型" #: tbl_chart.php:146 msgid "Stacked" -msgstr "" +msgstr "堆疊" #: tbl_chart.php:147 msgid "Multi" -msgstr "" +msgstr "並列" #: tbl_chart.php:152 msgid "Continuous image" -msgstr "" +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 "" +msgstr "因爲相容性原因,圖表圖片預設分塊產生,選中此項即可產生完整圖片" #: tbl_chart.php:166 msgid "" "When drawing a radar chart all values are normalized to a range [0..10]." -msgstr "" +msgstr "繪製雷達圖時所有資料將被規格化到 [0..10] 的範圍中" #: 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:181 msgid "Redraw" -msgstr "" +msgstr "重繪" #: tbl_create.php:56 #, php-format msgid "Table %s already exists!" -msgstr "資料表 %s 已存在!" +msgstr "資料表 %s 已存在!" #: tbl_create.php:242 -#, fuzzy, php-format +#, php-format msgid "Table %1$s has been created." -msgstr "資料表 %s 已被刪除" +msgstr "建立資料表 %1$s 成功" #: tbl_export.php:24 msgid "View dump (schema) of table" -msgstr "檢視資料表的備份概要 (dump schema)" +msgstr "查看資料表的轉存(大綱)" #: tbl_indexes.php:66 msgid "The name of the primary key must be \"PRIMARY\"!" -msgstr "主鍵的名稱必須稱為 PRIMARY!" +msgstr "主鍵的名稱必須稱爲 “PRIMARY”!" #: tbl_indexes.php:74 msgid "Can't rename index to PRIMARY!" -msgstr "無法將索引更名為 PRIMARY!" +msgstr "無法將索引改爲主鍵 (PRIMARY) !" #: tbl_indexes.php:90 msgid "No index parts defined!" -msgstr "部份索引資料還未定義!" +msgstr "沒有定義的索引部分!" #: tbl_indexes.php:158 msgid "Create a new index" -msgstr "新增一組索引" +msgstr "建立索引" #: tbl_indexes.php:160 msgid "Modify an index" @@ -9402,149 +9379,149 @@ msgstr "修改索引" #: tbl_indexes.php:166 msgid "Index name:" -msgstr "索引名稱 :" +msgstr "索引名稱:" #: tbl_indexes.php:172 msgid "Index type:" -msgstr "索引類型 :" +msgstr "索引類型:" #: tbl_indexes.php:182 msgid "" "(\"PRIMARY\" must be the name of and only of a primary key!)" -msgstr "(\"PRIMARY\" 必須是主鍵的名稱以及是唯一一組主鍵!)" +msgstr "(“PRIMARY”必須而且只能作爲主鍵的名稱!)" #: tbl_indexes.php:249 #, php-format msgid "Add to index  %s column(s)" -msgstr "新增  %s  組索引欄" +msgstr "新增 %s 個索引欄位" #: tbl_indexes.php:254 tbl_structure.php:684 tbl_structure.php:695 msgid "Column count has to be larger than zero." -msgstr "欄位數目需要大於零." +msgstr "至少要有一個欄位" #: tbl_move_copy.php:44 msgid "Can't move table to same one!" -msgstr "無法移動到相同資料表!" +msgstr "目標資料表不能爲來源資料表!" #: tbl_move_copy.php:46 msgid "Can't copy table to same one!" -msgstr "無法複製到相同資料表!" +msgstr "目標資料表不能爲來源資料表!" #: tbl_move_copy.php:54 #, php-format msgid "Table %s has been moved to %s." -msgstr "資料表 %s 已經移動到 %s." +msgstr "已將資料表 %s 移動到 %s" #: tbl_move_copy.php:56 #, php-format msgid "Table %s has been copied to %s." -msgstr "已經將資料表 %s 複製為 %s." +msgstr "已將資料表 %s 複製爲 %s" #: tbl_move_copy.php:74 msgid "The table name is empty!" -msgstr "請輸入資料表名稱!" +msgstr "資料表名稱不能爲空!" #: tbl_operations.php:264 msgid "Alter table order by" -msgstr "根據欄位內容排序記錄" +msgstr "更改表的排序,根據" #: tbl_operations.php:273 msgid "(singly)" -msgstr "(只會排序現時的記錄)" +msgstr "(逐一)" #: tbl_operations.php:293 msgid "Move table to (database.table):" -msgstr "移動資料表到:(格式為 資料庫名稱.資料表名稱)" +msgstr "將資料表移動到(資料庫名.資料資料表名稱):" #: tbl_operations.php:351 msgid "Table options" -msgstr "資料表選項" +msgstr "表選項" #: tbl_operations.php:355 msgid "Rename table to" -msgstr "將資料表改名為" +msgstr "將表改名爲" #: tbl_operations.php:531 msgid "Copy table to (database.table):" -msgstr "複製資料表到: (格式為 資料庫名稱.資料表名稱):" +msgstr "將資料表複製到(資料庫名.資料資料表名稱):" #: tbl_operations.php:578 msgid "Switch to copied table" -msgstr "跳到已複製之資料表" +msgstr "切換到複製的資料表" #: tbl_operations.php:590 msgid "Table maintenance" -msgstr "資料表維護" +msgstr "表維護" #: tbl_operations.php:614 msgid "Defragment table" -msgstr "整理資料表" +msgstr "排序規則表碎片" #: tbl_operations.php:662 #, php-format msgid "Table %s has been flushed" -msgstr "資料表 %s 已被強迫更新" +msgstr "已強制更新表 %s " #: tbl_operations.php:668 #, fuzzy #| msgid "Flush the table (\"FLUSH\")" msgid "Flush the table (FLUSH)" -msgstr "強迫更新資料表 (\"FLUSH\")" +msgstr "重新整理表 (FLUSH)" #: tbl_operations.php:677 #, fuzzy #| msgid "Dumping data for table" msgid "Delete data or table" -msgstr "列出以下資料庫的數據:" +msgstr "刪除資料或資料表" #: tbl_operations.php:692 msgid "Empty the table (TRUNCATE)" -msgstr "" +msgstr "清空資料表 (TRUNCATE)" #: tbl_operations.php:712 #, fuzzy msgid "Delete the table (DROP)" -msgstr "沒有資料庫" +msgstr "刪除資料表 (DROP)" #: tbl_operations.php:733 #, fuzzy msgid "Partition maintenance" -msgstr "資料表維護" +msgstr "分區維護" #: tbl_operations.php:741 #, php-format msgid "Partition %s" -msgstr "" +msgstr "分區 %s" #: tbl_operations.php:744 msgid "Analyze" -msgstr "" +msgstr "分析" #: tbl_operations.php:745 #, fuzzy msgid "Check" -msgstr "捷克語" +msgstr "檢查" #: tbl_operations.php:746 msgid "Optimize" -msgstr "" +msgstr "最佳化" #: tbl_operations.php:747 msgid "Rebuild" -msgstr "" +msgstr "重建" #: tbl_operations.php:748 #, fuzzy msgid "Repair" -msgstr "修復資料表" +msgstr "修復" #: tbl_operations.php:760 msgid "Remove partitioning" -msgstr "" +msgstr "刪除分區" #: tbl_operations.php:786 msgid "Check referential integrity:" -msgstr "檢查指示完整性:" +msgstr "檢查引用完整性:" #: tbl_printview.php:72 msgid "Show tables" @@ -9552,27 +9529,27 @@ msgstr "顯示資料表" #: tbl_printview.php:307 tbl_structure.php:750 msgid "Space usage" -msgstr "已使用空間" +msgstr "已用空間" #: tbl_printview.php:311 tbl_structure.php:754 msgid "Usage" -msgstr "使用" +msgstr "已用" #: tbl_printview.php:338 tbl_structure.php:781 msgid "Effective" -msgstr "實際" +msgstr "有效" #: tbl_printview.php:363 tbl_structure.php:819 msgid "Row Statistics" -msgstr "資料列統計數值" +msgstr "行統計" #: tbl_printview.php:366 tbl_structure.php:822 msgid "Statements" -msgstr "敘述" +msgstr "說明" #: tbl_printview.php:377 tbl_structure.php:834 msgid "static" -msgstr "" +msgstr "靜態" #: tbl_printview.php:379 tbl_structure.php:836 msgid "dynamic" @@ -9580,188 +9557,176 @@ msgstr "動態" #: tbl_printview.php:401 tbl_structure.php:879 msgid "Row length" -msgstr "資料列長度" +msgstr "行長度" #: tbl_printview.php:411 tbl_structure.php:887 msgid " Row size " -msgstr "資料列大小" +msgstr " 行大小 " #: tbl_relation.php:276 #, php-format msgid "Error creating foreign key on %1$s (check data types)" -msgstr "" +msgstr "在 %1$s 建立外部鍵時發生錯誤 (檢查資料類型)" #: tbl_relation.php:402 -#, fuzzy -#| msgid "Internal relations" msgid "Internal relation" -msgstr "內部關聯" +msgstr "行內" #: tbl_relation.php:404 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." -msgstr "" +msgstr "不需要一個和外部鍵關聯一致的行內部關聯" #: tbl_relation.php:410 msgid "Foreign key constraint" -msgstr "" +msgstr "外部鍵約束" #: tbl_row_action.php:28 msgid "No rows selected" -msgstr "並無資料列已選擇" +msgstr "沒有選中任何行" #: tbl_select.php:109 msgid "Do a \"query by example\" (wildcard: \"%\")" -msgstr "以範例查詢 (萬用字元 : \"%\")" +msgstr "執行“依例查詢”(萬用字元:“%”)" #: tbl_select.php:233 -#, fuzzy -#| msgid "Select fields (at least one):" msgid "Select columns (at least one):" -msgstr "選擇欄位 (至少一個)" +msgstr "選擇欄位 (至少一個):" #: tbl_select.php:251 msgid "Add search conditions (body of the \"where\" clause):" -msgstr "增加檢索條件 (\"where\" 子句的主體)" +msgstr "新增搜尋條件 (“where”指令的主體):" #: tbl_select.php:258 msgid "Number of rows per page" -msgstr "筆記錄/每頁" +msgstr "每頁行數" #: tbl_select.php:264 msgid "Display order:" -msgstr "顯示次序" +msgstr "顯示順序:" #: tbl_structure.php:161 tbl_structure.php:165 msgid "Browse distinct values" -msgstr "瀏覽不同數值" +msgstr "瀏覽非重複值 (DISTINCT)" #: tbl_structure.php:166 tbl_structure.php:167 msgid "Add primary key" -msgstr "" +msgstr "新增主鍵" #: tbl_structure.php:168 tbl_structure.php:169 msgid "Add index" -msgstr "" +msgstr "新增索引" #: tbl_structure.php:170 tbl_structure.php:171 msgid "Add unique index" -msgstr "" +msgstr "新增唯一鍵" #: tbl_structure.php:172 tbl_structure.php:173 msgid "Add FULLTEXT index" -msgstr "" +msgstr "新增全文索引" #: tbl_structure.php:385 -#, fuzzy -#| msgid "None" msgctxt "None for default" msgid "None" -msgstr "不適用" +msgstr "無" #: tbl_structure.php:398 -#, fuzzy, php-format -#| msgid "Table %s has been dropped" +#, php-format msgid "Column %s has been dropped" -msgstr "資料表 %s 已被刪除" +msgstr "已刪除欄位 %s " #: tbl_structure.php:409 tbl_structure.php:483 #, php-format msgid "A primary key has been added on %s" -msgstr "主鍵已經新增到 %s" +msgstr "已將 %s 設爲主鍵" #: tbl_structure.php:424 tbl_structure.php:439 tbl_structure.php:454 #: tbl_structure.php:496 tbl_structure.php:509 tbl_structure.php:522 #, php-format msgid "An index has been added on %s" -msgstr "索引已經新增到 %s" +msgstr "已將 %s 設爲索引" #: tbl_structure.php:471 -#, fuzzy -#| msgid "Show PHP information" msgid "Show more actions" -msgstr "顯示 PHP 資訊" +msgstr "顯示更多操作" #: tbl_structure.php:600 tbl_structure.php:602 msgid "Relation view" -msgstr "關聯檢視" +msgstr "關聯查看" #: tbl_structure.php:609 tbl_structure.php:611 msgid "Propose table structure" -msgstr "分析資料表結構" +msgstr "規劃表結構" #: tbl_structure.php:634 -#, fuzzy -#| msgid "Add %s field(s)" msgid "Add column" -msgstr "新增 %s 個欄位" +msgstr "新增欄位" #: tbl_structure.php:648 msgid "At End of Table" -msgstr "於資料表尾端" +msgstr "於表結尾" #: tbl_structure.php:649 msgid "At Beginning of Table" -msgstr "於資料表開頭" +msgstr "於表開頭" #: tbl_structure.php:650 #, php-format msgid "After %s" -msgstr "在 %s 之後" +msgstr "於 %s 之後" #: tbl_structure.php:689 -#, fuzzy, php-format -#| msgid "Create an index on %s columns" +#, php-format msgid "Create an index on  %s columns" -msgstr "新增  %s  組索引欄" +msgstr "在第 %s 個欄位建立索引" #: tbl_structure.php:850 msgid "partitioned" -msgstr "" +msgstr "已分區" #: tbl_tracking.php:109 #, php-format msgid "Tracking report for table `%s`" -msgstr "" +msgstr "`%s` 的追蹤報告" #: tbl_tracking.php:182 #, php-format msgid "Version %s is created, tracking for %s.%s is activated." -msgstr "" +msgstr "已建立版本 %s,%s.%s 的追蹤已啓用" #: tbl_tracking.php:190 #, php-format msgid "Tracking for %s.%s , version %s is deactivated." -msgstr "" +msgstr "%s.%s 的追蹤,版本 %s 已停用" #: tbl_tracking.php:198 #, php-format msgid "Tracking for %s.%s , version %s is activated." -msgstr "" +msgstr "%s.%s 的追蹤,版本 %s 已啓用" #: tbl_tracking.php:208 msgid "SQL statements executed." -msgstr "" +msgstr "SQL 指令已執行" #: tbl_tracking.php:214 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." -msgstr "" +msgstr "您可以透過建立一個臨時資料庫來執行這個匯出。請確保您有足夠的權限" #: tbl_tracking.php:215 msgid "Comment out these two lines if you do not need them." -msgstr "如果您不需要,請將這兩行註解掉" +msgstr "如果您不需要,請註釋以下兩行" #: tbl_tracking.php:224 msgid "SQL statements exported. Please copy the dump or execute it." -msgstr "SQL語句已匯出,請複製或執行此dump" +msgstr "SQL 指令已匯出。請複製儲存或運行它" #: tbl_tracking.php:255 #, php-format msgid "Version %s snapshot (SQL code)" -msgstr "版本 %s 快照 (SQL碼)" +msgstr "版本 %s 的快照 (SQL 程式碼)" #: tbl_tracking.php:382 #, fuzzy @@ -9783,12 +9748,12 @@ msgstr "追蹤這些資料模擬的語句:" #: tbl_tracking.php:411 msgid "Tracking statements" -msgstr "追蹤語句" +msgstr "追蹤指令" #: tbl_tracking.php:427 tbl_tracking.php:555 #, php-format msgid "Show %s with dates from %s to %s by user %s %s" -msgstr "顯示 %s 從日期 %s 至 %s 來自使用者 %s %s" +msgstr "顯示自 %2$s 起至 %3$s 使用者 %4$s 執行的 %1$s %5$s" #: tbl_tracking.php:432 #, fuzzy @@ -9808,36 +9773,36 @@ msgstr "日期" #: tbl_tracking.php:455 msgid "Data definition statement" -msgstr "資料定義語句" +msgstr "資料定義指令" #: tbl_tracking.php:512 msgid "Data manipulation statement" -msgstr "資料模擬語句" +msgstr "資料操作指令" #: tbl_tracking.php:558 msgid "SQL dump (file download)" -msgstr "SQL 轉儲 (檔案下載)" +msgstr "SQL 匯出 (檔案下載)" #: tbl_tracking.php:559 msgid "SQL dump" -msgstr "SQL 轉儲" +msgstr "SQL 匯出" #: tbl_tracking.php:560 msgid "This option will replace your table and contained data." -msgstr "這個選項將覆蓋您的資料表與其資料" +msgstr "該選項將導致目前表的結構和資料被替換" #: tbl_tracking.php:560 msgid "SQL execution" -msgstr "執行SQL" +msgstr "執行 SQL 指令" #: tbl_tracking.php:572 #, php-format msgid "Export as %s" -msgstr "匯出為 %s" +msgstr "匯出爲 %s" #: tbl_tracking.php:612 msgid "Show versions" -msgstr "顯示版本" +msgstr "查看版本" #: tbl_tracking.php:644 msgid "Version" @@ -9846,33 +9811,33 @@ msgstr "版本" #: tbl_tracking.php:692 #, php-format msgid "Deactivate tracking for %s.%s" -msgstr "停用對 %s.%s 的追蹤" +msgstr "停用 %s.%s 的追蹤" #: tbl_tracking.php:694 msgid "Deactivate now" -msgstr "現在停用" +msgstr "立即停用" #: tbl_tracking.php:705 #, php-format msgid "Activate tracking for %s.%s" -msgstr "啟用對 %s.%s 的追蹤" +msgstr "啓用 %s.%s 的追蹤" #: tbl_tracking.php:707 msgid "Activate now" -msgstr "現在啟用" +msgstr "立即啓用" #: tbl_tracking.php:720 #, php-format msgid "Create version %s of %s.%s" -msgstr "建立 %s.%s 的版本 %s" +msgstr "爲 %2$s.%3$s 建立版本 %1$s" #: tbl_tracking.php:724 msgid "Track these data definition statements:" -msgstr "追蹤這些資料定義的語句:" +msgstr "追蹤下列資料定義指令:" #: tbl_tracking.php:732 msgid "Track these data manipulation statements:" -msgstr "追蹤這些資料模擬的語句:" +msgstr "追蹤下列資料操作指令:" #: tbl_tracking.php:740 msgid "Create version" @@ -9883,24 +9848,24 @@ msgstr "建立版本" msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." -msgstr "不支援款式功能, 請查看設定案及儲存款式檔案的資料夾 %s." +msgstr "不支援主題,請檢查您的設定和主題資料夾 %s " #: themes.php:41 msgid "Get more themes!" -msgstr "取得更多佈景主題!" +msgstr "取得更多主題!" #: transformation_overview.php:24 msgid "Available MIME types" -msgstr "可使用 MIME 類型" +msgstr "可用的 MIME 類型" #: transformation_overview.php:37 msgid "" "MIME types printed in italics do not have a separate transformation function" -msgstr "MIME 類型以斜體顯示是沒有分隔轉換功能" +msgstr "以斜體顯示的 MIME 類型沒有單獨的轉換函數" #: transformation_overview.php:42 msgid "Available transformations" -msgstr "可使用轉換方式" +msgstr "可用的轉換" #: transformation_overview.php:47 msgctxt "for MIME transformation" @@ -9909,45 +9874,22 @@ msgstr "說明" #: user_password.php:48 msgid "You don't have sufficient privileges to be here right now!" -msgstr "您現在沒有足夠的權限!" +msgstr "權限不足!" #: user_password.php:110 msgid "The profile has been updated." -msgstr "資料己經更新." +msgstr "設定檔案己更新" #: view_create.php:141 msgid "VIEW name" -msgstr "" +msgstr " view名" #: view_operations.php:91 msgid "Rename view to" -msgstr "將檢視表改名為" +msgstr "將 view改名爲" -#~ msgid "Delete the matches for the " -#~ msgstr "刪除此資料表的追蹤資料" +#~ msgid "Show table row links on left side" +#~ msgstr "在資料左側顯示操作連結" -#~ msgid "yes" -#~ msgstr " 是 " - -#~ msgid "Disable Statistics" -#~ msgstr "停止統計數據" - -#~ msgid "Start" -#~ msgstr "Sat" - -#~ msgid "Display table filter" -#~ msgstr "顯示欄位註解" - -#~ msgid "" -#~ "The additional features for working with linked tables have been " -#~ "deactivated. To find out why click %shere%s." -#~ msgstr "關聯資料表的附加功能未能啟動, %s請按此%s 查出問題原因." - -#~ msgid "Ignore duplicate rows" -#~ msgstr "略過重覆列" - -#~ msgid "Execute bookmarked query" -#~ msgstr "執行書籤查詢" - -#~ msgid "No tables" -#~ msgstr "沒有資料表" +#~ msgid "Show table row links on right side" +#~ msgstr "在資料右側顯示操作連結" diff --git a/scripts/create_tables.sql b/scripts/create_tables.sql index b98a4e8200..5db0de4e70 100644 --- a/scripts/create_tables.sql +++ b/scripts/create_tables.sql @@ -44,7 +44,8 @@ CREATE TABLE IF NOT EXISTS `pma_bookmark` ( `query` text NOT NULL, PRIMARY KEY (`id`) ) - ENGINE=MyISAM COMMENT='Bookmarks'; + ENGINE=MyISAM COMMENT='Bookmarks' + DEFAULT CHARACTER SET utf8 COLLATE utf8_bin; -- -------------------------------------------------------- @@ -64,7 +65,8 @@ CREATE TABLE IF NOT EXISTS `pma_column_info` ( PRIMARY KEY (`id`), UNIQUE KEY `db_name` (`db_name`,`table_name`,`column_name`) ) - ENGINE=MyISAM COMMENT='Column information for phpMyAdmin'; + ENGINE=MyISAM COMMENT='Column information for phpMyAdmin' + DEFAULT CHARACTER SET utf8 COLLATE utf8_bin; -- -------------------------------------------------------- @@ -82,7 +84,8 @@ CREATE TABLE IF NOT EXISTS `pma_history` ( PRIMARY KEY (`id`), KEY `username` (`username`,`db`,`table`,`timevalue`) ) - ENGINE=MyISAM COMMENT='SQL history for phpMyAdmin'; + ENGINE=MyISAM COMMENT='SQL history for phpMyAdmin' + DEFAULT CHARACTER SET utf8 COLLATE utf8_bin; -- -------------------------------------------------------- @@ -97,7 +100,8 @@ CREATE TABLE IF NOT EXISTS `pma_pdf_pages` ( PRIMARY KEY (`page_nr`), KEY `db_name` (`db_name`) ) - ENGINE=MyISAM COMMENT='PDF relation pages for phpMyAdmin'; + ENGINE=MyISAM COMMENT='PDF relation pages for phpMyAdmin' + DEFAULT CHARACTER SET utf8 COLLATE utf8_bin; -- -------------------------------------------------------- @@ -110,7 +114,8 @@ CREATE TABLE IF NOT EXISTS `pma_recent` ( `tables` text NOT NULL, PRIMARY KEY (`username`) ) - ENGINE=MyISAM COMMENT='Recently accessed tables'; + ENGINE=MyISAM COMMENT='Recently accessed tables' + DEFAULT CHARACTER SET utf8 COLLATE utf8_bin; -- -------------------------------------------------------- @@ -125,7 +130,8 @@ CREATE TABLE IF NOT EXISTS `pma_table_uiprefs` ( `prefs` text NOT NULL, PRIMARY KEY (`username`,`db_name`,`table_name`) ) - ENGINE=MyISAM COMMENT='Tables'' UI preferences'; + ENGINE=MyISAM COMMENT='Tables'' UI preferences' + DEFAULT CHARACTER SET utf8 COLLATE utf8_bin; -- -------------------------------------------------------- @@ -143,7 +149,8 @@ CREATE TABLE IF NOT EXISTS `pma_relation` ( PRIMARY KEY (`master_db`,`master_table`,`master_field`), KEY `foreign_field` (`foreign_db`,`foreign_table`) ) - ENGINE=MyISAM COMMENT='Relation table'; + ENGINE=MyISAM COMMENT='Relation table' + DEFAULT CHARACTER SET utf8 COLLATE utf8_bin; -- -------------------------------------------------------- @@ -159,7 +166,8 @@ CREATE TABLE IF NOT EXISTS `pma_table_coords` ( `y` float unsigned NOT NULL default '0', PRIMARY KEY (`db_name`,`table_name`,`pdf_page_number`) ) - ENGINE=MyISAM COMMENT='Table coordinates for phpMyAdmin PDF output'; + ENGINE=MyISAM COMMENT='Table coordinates for phpMyAdmin PDF output' + DEFAULT CHARACTER SET utf8 COLLATE utf8_bin; -- -------------------------------------------------------- @@ -173,7 +181,8 @@ CREATE TABLE IF NOT EXISTS `pma_table_info` ( `display_field` varchar(64) NOT NULL default '', PRIMARY KEY (`db_name`,`table_name`) ) - ENGINE=MyISAM COMMENT='Table information for phpMyAdmin'; + ENGINE=MyISAM COMMENT='Table information for phpMyAdmin' + DEFAULT CHARACTER SET utf8 COLLATE utf8_bin; -- -------------------------------------------------------- @@ -190,7 +199,8 @@ CREATE TABLE IF NOT EXISTS `pma_designer_coords` ( `h` TINYINT, PRIMARY KEY (`db_name`,`table_name`) ) - ENGINE=MyISAM COMMENT='Table coordinates for Designer'; + ENGINE=MyISAM COMMENT='Table coordinates for Designer' + DEFAULT CHARACTER SET utf8 COLLATE utf8_bin; -- -------------------------------------------------------- @@ -211,7 +221,8 @@ CREATE TABLE IF NOT EXISTS `pma_tracking` ( `tracking_active` int(1) unsigned NOT NULL default '1', PRIMARY KEY (`db_name`,`table_name`,`version`) ) - ENGINE=MyISAM ROW_FORMAT=COMPACT COMMENT='Database changes tracking for phpMyAdmin'; + ENGINE=MyISAM ROW_FORMAT=COMPACT COMMENT='Database changes tracking for phpMyAdmin' + DEFAULT CHARACTER SET utf8 COLLATE utf8_bin; -- -------------------------------------------------------- @@ -225,4 +236,5 @@ CREATE TABLE IF NOT EXISTS `pma_userconfig` ( `config_data` text NOT NULL, PRIMARY KEY (`username`) ) - ENGINE=MyISAM COMMENT='User preferences storage for phpMyAdmin'; + ENGINE=MyISAM COMMENT='User preferences storage for phpMyAdmin' + DEFAULT CHARACTER SET utf8 COLLATE utf8_bin; diff --git a/tbl_structure.php b/tbl_structure.php index e27b0b9935..1ebc334e99 100644 --- a/tbl_structure.php +++ b/tbl_structure.php @@ -705,7 +705,6 @@ if (! $tbl_is_view && ! $db_is_information_schema && 'ARCHIVE' != $tbl_type) { // BEGIN - Calc Table Space // Get valid statistics whatever is the table type if ($cfg['ShowStats']) { - echo '
'; if (empty($showtable)) { $showtable = PMA_Table::sGetStatusInfo($GLOBALS['db'], $GLOBALS['table'], null, true); } @@ -924,9 +923,6 @@ if ($cfg['ShowStats']) { - -
- em; +} + +.CodeMirror-gutter { + position: absolute; left: 0; top: 0; + background-color: #f7f7f7; + border-right: 1px solid #eee; + min-width: 2em; + height: 100%; +} +.CodeMirror-gutter-text { + color: #aaa; + text-align: right; + padding: .4em .2em .4em .4em; +} +.CodeMirror-lines { + padding: .4em; +} + +.CodeMirror pre { + -moz-border-radius: 0; + -webkit-border-radius: 0; + -o-border-radius: 0; + border-radius: 0; + border-width: 0; margin: 0; padding: 0; background: transparent; + font-family: inherit; + font-size: inherit; + padding: 0; margin: 0; +} + +.CodeMirror textarea { + font-family: inherit !important; + font-size: inherit !important; +} + +.CodeMirror-cursor { + z-index: 10; + position: absolute; + visibility: hidden; + border-left: 1px solid black !important; +} +.CodeMirror-focused .CodeMirror-cursor { + visibility: visible; +} + +span.CodeMirror-selected { + background: #ccc !important; + color: HighlightText !important; +} +.CodeMirror-focused span.CodeMirror-selected { + background: Highlight !important; +} + +.CodeMirror-matchingbracket {color: #0f0 !important;} +.CodeMirror-nonmatchingbracket {color: #f22 !important;} + + +span.mysql-keyword { + color: ; +} +span.mysql-var { + color: ; +} +span.mysql-comment { + color: ; +} +span.mysql-string { + color: ; +} +span.mysql-operator { + color: ; +} +span.mysql-word { + color: ; +} +span.mysql-function { + color: ; +} +span.mysql-type { + color: ; +} +span.mysql-attribute { + color: ; +} +span.mysql-separator { + color: ; +} +span.mysql-number { + color: ; +} diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index 1cfebe553d..2728158bc9 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -2115,3 +2115,101 @@ fieldset .disabled-field td { margin: 0 6px; } +.CodeMirror { + line-height: 1em; + font-family: monospace; + background: white; + border: 1px solid black; +} + +.CodeMirror-scroll { + height: em; +} + +.CodeMirror-gutter { + position: absolute; left: 0; top: 0; + background-color: #f7f7f7; + border-right: 1px solid #eee; + min-width: 2em; + height: 100%; +} +.CodeMirror-gutter-text { + color: #aaa; + text-align: right; + padding: .4em .2em .4em .4em; +} +.CodeMirror-lines { + padding: .4em; +} + +.CodeMirror pre { + -moz-border-radius: 0; + -webkit-border-radius: 0; + -o-border-radius: 0; + border-radius: 0; + border-width: 0; margin: 0; padding: 0; background: transparent; + font-family: inherit; + font-size: inherit; + padding: 0; margin: 0; +} + +.CodeMirror textarea { + font-family: inherit !important; + font-size: inherit !important; +} + +.CodeMirror-cursor { + z-index: 10; + position: absolute; + visibility: hidden; + border-left: 1px solid black !important; +} +.CodeMirror-focused .CodeMirror-cursor { + visibility: visible; +} + +span.CodeMirror-selected { + background: #ccc !important; + color: HighlightText !important; +} +.CodeMirror-focused span.CodeMirror-selected { + background: Highlight !important; +} + +.CodeMirror-matchingbracket {color: #0f0 !important;} +.CodeMirror-nonmatchingbracket {color: #f22 !important;} + + +span.mysql-keyword { + color: ; +} +span.mysql-var { + color: ; +} +span.mysql-comment { + color: ; +} +span.mysql-string { + color: ; +} +span.mysql-operator { + color: ; +} +span.mysql-word { + color: ; +} +span.mysql-function { + color: ; +} +span.mysql-type { + color: ; +} +span.mysql-attribute { + color: ; +} +span.mysql-separator { + color: ; +} +span.mysql-number { + color: ; +}