diff --git a/ChangeLog b/ChangeLog index 66bc93bc81..30b414c7ba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,9 @@ + rfe #2098927 Remember recent tables + rfe #3078542 Remember the last sort order for each table + AJAX for Create table in navigation panel ++ rfe #3310562 Wording about Column + +3.4.3.0 (not yet released) 3.4.2.0 (not yet released) - bug #3301249 [interface] Iconic table operations does not remove inline edit label @@ -24,6 +27,7 @@ - bug #3306958 [interface] Unnecessary Details slider - bug #3308476 [interface] "Show all" not persistent after a sort - bug #3308072 [auth] Version disclosure to anonymous visitors +- bug #3306981 [interface] pmahomme and table statistics 3.4.1.0 (2011-05-20) - bug #3301108 [interface] Synchronize and already configured host 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 61758fbcf4..dd7e60e420 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) @@ -719,15 +724,31 @@ function setSelectOptions(the_form, the_select, do_check) return true; } // end of the 'setSelectOptions()' function +/** + * Sets current value for query box. + */ +function setQuery(query) { + if (codemirror_editor) { + codemirror_editor.setValue(query); + } else { + document.sqlform.sql_query.value = query; + } +} + /** * Create quick sql statements. * */ function insertQuery(queryType) { + if (queryType == "clear") { + setQuery(''); + return; + } + var myQuery = document.sqlform.sql_query; - var myListBox = document.sqlform.dummy; var query = ""; + var myListBox = document.sqlform.dummy; var table = document.sqlform.table.value; if (myListBox.options.length > 0) { @@ -758,7 +779,7 @@ function insertQuery(queryType) { } else if(queryType == "delete") { query = "DELETE FROM `" + table + "` WHERE 1"; } - document.sqlform.sql_query.value = query; + setQuery(query); sql_box_locked = false; } } @@ -785,8 +806,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 +1171,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; }); @@ -2410,3 +2430,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.length > 0) { + 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 b334b5f42b..e4f8323be2 100644 --- a/js/sql.js +++ b/js/sql.js @@ -365,7 +365,7 @@ $(document).ready(function() { $("#sqlqueryresults").html(data); $("#sqlqueryresults").trigger('appendAnchor'); PMA_init_slider(); - + PMA_ajaxRemoveMessage($msgbox); }) // end $.post() })// end Paginate results table @@ -388,7 +388,7 @@ $(document).ready(function() { $("#sqlqueryresults").html(data); $("#sqlqueryresults").trigger('appendAnchor'); PMA_init_slider(); - PMA_ajaxRemoveMessage($msgbox); + PMA_ajaxRemoveMessage($msgbox); }) // end $.post() } else { $the_form.submit(); @@ -456,7 +456,7 @@ $(document).ready(function() { $edit_td.removeClass('inline_edit_anchor').addClass('inline_edit_active').parent('tr').addClass('noclick'); // Adding submit and hide buttons to inline edit . - // For "hide" button the original data to be restored is + // For "hide" button the original data to be restored is // kept in the jQuery data element 'original_data' inside the . // Looping through all columns or rows, to find the required data and then storing it in an array. @@ -840,7 +840,7 @@ $(document).ready(function() { */ var relation_fields = {}; /** - * @var relational_display string 'K' if relational key, 'D' if relational display column + * @var relational_display string 'K' if relational key, 'D' if relational display column */ var relational_display = $("#relational_display_K").attr('checked') ? 'K' : 'D'; /** @@ -858,7 +858,7 @@ $(document).ready(function() { var sql_query = 'UPDATE `' + window.parent.table + '` SET '; var need_to_post = false; - + var new_clause = ''; var prev_index = -1; @@ -930,7 +930,7 @@ $(document).ready(function() { } }) - /* + /* * update the where_clause, remove the last appended ' AND ' * */ @@ -1004,10 +1004,10 @@ $(document).ready(function() { /** - * Visually put back the row in the state it was before entering Inline edit + * Visually put back the row in the state it was before entering Inline edit * * (when called in the situation where no posting was done, the data - * parameter is empty) + * parameter is empty) */ function PMA_unInlineEditRow($del_hide, $chg_submit, $this_td, $input_siblings, data, disp_mode) { diff --git a/libraries/header_scripts.inc.php b/libraries/header_scripts.inc.php index c25aa990ea..2e0a9ca1e4 100644 --- a/libraries/header_scripts.inc.php +++ b/libraries/header_scripts.inc.php @@ -39,6 +39,8 @@ 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'; +$GLOBALS['js_include'][] = 'codemirror/mode/mysql/mysql.js'; /** * Here we add a timestamp when loading the file, so that users who diff --git a/libraries/tbl_properties.inc.php b/libraries/tbl_properties.inc.php index 501e243bb6..4f1b647fe0 100644 --- a/libraries/tbl_properties.inc.php +++ b/libraries/tbl_properties.inc.php @@ -95,7 +95,7 @@ $is_backup = ($action != 'tbl_create.php' && $action != 'tbl_addfield.php'); $header_cells = array(); $content_cells = array(); -$header_cells[] = __('Column'); +$header_cells[] = __('Name'); $header_cells[] = __('Type') . ($GLOBALS['cfg']['ReplaceHelpImg'] ? PMA_showMySQLDocu('SQL-Syntax', 'data-types') diff --git a/po/af.po b/po/af.po index e27e2f725f..7f7130eab8 100644 --- a/po/af.po +++ b/po/af.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal \n" "Language-Team: afrikaans \n" -"Language: af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: af\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -132,9 +132,8 @@ msgstr "Tabel kommentaar" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -637,8 +636,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -881,8 +880,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1794,8 +1793,8 @@ msgstr "Welkom by %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4532,8 +4531,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Naam" @@ -4749,8 +4749,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5429,8 +5429,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7803,8 +7803,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/ar.po b/po/ar.po index 78129e915c..77004720c2 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-04-21 13:56+0200\n" "Last-Translator: \n" "Language-Team: arabic \n" -"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "تعليقات على الجدول" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -351,8 +350,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" -"%s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" +"s." #: db_operations.php:600 #, fuzzy @@ -641,8 +640,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -884,8 +883,8 @@ msgstr "تم حفظ الـDump إلى الملف %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1811,8 +1810,8 @@ msgstr "أهلا بك في %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4560,8 +4559,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "الاسم" @@ -4781,8 +4781,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5466,8 +5466,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7142,8 +7142,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا" -"%s." +"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%" +"s." #: main.php:314 msgid "" @@ -7897,8 +7897,8 @@ msgstr "احذف قواعد البيانات التي لها نفس أسماء msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL " "مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا " @@ -10063,8 +10063,8 @@ msgstr "أعد تسمية العرض الـ" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط " -#~ "%sهنا%s." +#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %" +#~ "sهنا%s." #~ msgid "Execute bookmarked query" #~ msgstr "نفذ استعلام محفوظ بعلامة مرجعية" diff --git a/po/az.po b/po/az.po index 6867008740..98db77b76c 100644 --- a/po/az.po +++ b/po/az.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -129,9 +129,8 @@ msgstr "Cedvel haqqında qısa izahat" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -634,8 +633,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -881,8 +880,8 @@ msgstr "Sxem %s faylına qeyd edildi." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1812,8 +1811,8 @@ msgstr "%s - e Xoş Gelmişsiniz!" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4582,8 +4581,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Adı" @@ -4803,8 +4803,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5492,8 +5492,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7962,8 +7962,8 @@ msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Qeyd: phpMyAdmin istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler " "cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin " diff --git a/po/be.po b/po/be.po index bca7ba6610..da93db1700 100644 --- a/po/be.po +++ b/po/be.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -134,9 +134,8 @@ msgstr "Камэнтар да табліцы" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -635,11 +634,11 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да " -"%sдакумэнтацыі%s." +"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %" +"sдакумэнтацыі%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 @@ -889,8 +888,8 @@ msgstr "Дамп захаваны ў файл %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, " "зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае " @@ -909,8 +908,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца " -"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " +"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%" +"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай " "канфігурацыі." #: import.php:336 @@ -1852,8 +1851,8 @@ msgstr "Запрашаем у %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго " "стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s." @@ -4670,8 +4669,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Назва" @@ -4902,8 +4902,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна " "выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя " @@ -5662,8 +5662,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8200,8 +8200,8 @@ msgstr "Выдаліць базы дадзеных, якія маюць такі msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц " "прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, " diff --git a/po/be@latin.po b/po/be@latin.po index 239609f4de..7d85242a89 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" -"Language: be@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"Language: be@latin\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -136,9 +136,8 @@ msgstr "Kamentar da tablicy" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -641,11 +640,11 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da " -"%sdakumentacyi%s." +"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %" +"sdakumentacyi%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 @@ -886,8 +885,8 @@ msgstr "Damp zachavany ŭ fajł %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, " "źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje " @@ -906,8 +905,8 @@ msgid "" "You attempted to load file with unsupported compression (%s). Either support " "for it is not implemented or disabled by your configuration." msgstr "" -"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca " -"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " +"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%" +"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj " "kanfihuracyi." #: import.php:336 @@ -1857,8 +1856,8 @@ msgstr "Zaprašajem u %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab " "jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s." @@ -4644,8 +4643,9 @@ msgid "Events" msgstr "Padziei" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nazva" @@ -4875,8 +4875,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu " "možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć " @@ -5640,8 +5640,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6894,8 +6894,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci " -"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ " -"%sdakumentacyi%s." +"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %" +"sdakumentacyi%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -7103,8 +7103,8 @@ msgstr "" "dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar " "vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar " "vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo " -"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). " -"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia " +"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U " +"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia " "parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), " "a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()." @@ -8175,8 +8175,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic " "pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, " diff --git a/po/bg.po b/po/bg.po index e27f2373dd..d202621f6f 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-05-28 14:02+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" -"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "Коментари към таблицата" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Kолона" @@ -614,8 +613,8 @@ msgstr "Проследяването е неактивно." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -852,8 +851,8 @@ msgstr "Схемата беше записана във файл %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се " "към %sdдокументацията%s за да намерите начин да избегнете това ограничение." @@ -1708,8 +1707,8 @@ msgstr "Добре дошли в %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4370,8 +4369,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Име" @@ -4572,8 +4572,8 @@ msgstr ", @TABLE@ ще стане името на таблицата" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5223,8 +5223,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6407,8 +6407,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL валидаторът не може да бъде инициализиран. Моля проверете дали са " -"инсталирани необходимите PHP разширения, както е описано в %sдокументацията" -"%s." +"инсталирани необходимите PHP разширения, както е описано в %sдокументацията%" +"s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -7542,8 +7542,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Забележка: phpMyAdmin взема потребителските права директно от таблицата с " "правата на MySQL. Съдържанието на тази таблица може да се различава от " @@ -9593,8 +9593,8 @@ msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка " -"%s." +"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка %" +"s." #: themes.php:41 msgid "Get more themes!" diff --git a/po/bn.po b/po/bn.po index 04419ae9c2..a754e980ae 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-10-21 01:36+0200\n" "Last-Translator: Nobin নবীন \n" "Language-Team: bangla \n" -"Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -133,9 +133,8 @@ msgstr "টেবিলের মন্তব্য সমূহ" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "কলামের" @@ -632,8 +631,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -881,11 +880,11 @@ msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1832,8 +1831,8 @@ msgstr "Welcome to %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার " "করে একটি তৈরী করতে পারেন " @@ -4639,8 +4638,9 @@ msgid "Events" msgstr "Sent" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "নাম" @@ -4867,12 +4867,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5589,8 +5589,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8107,13 +8107,13 @@ msgstr "ব্যাবহারকারীর নামে নাম এমন msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." diff --git a/po/bs.po b/po/bs.po index 6de78005c4..8e8f498177 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -132,9 +132,8 @@ msgstr "Komentari tabele" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -636,8 +635,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -883,8 +882,8 @@ msgstr "Sadržaj baze je sačuvan u fajl %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1806,8 +1805,8 @@ msgstr "Dobrodošli na %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4571,8 +4570,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Ime" @@ -4792,8 +4792,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5480,8 +5480,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7944,8 +7944,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " "privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " diff --git a/po/ca.po b/po/ca.po index 26e7210272..0b24bc0c00 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-02-23 09:57+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: catalan \n" -"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "Comentaris de la taula" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Columna" @@ -614,8 +613,8 @@ msgstr "El seguiment no està actiu." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s." @@ -858,11 +857,11 @@ msgstr "El bolcat s'ha desat amb el nom d'arxiu %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Probablement has triat d'enviar un arxiu massa gran. Consulta la " -"%sdocumentació%s per trobar formes de modificar aquest límit." +"Probablement has triat d'enviar un arxiu massa gran. Consulta la %" +"sdocumentació%s per trobar formes de modificar aquest límit." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1736,8 +1735,8 @@ msgstr "Benvingut a %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "La raó més probable d'aixó és que no heu creat l'arxiu de configuració. " "Podreu voler utilitzar %1$ssetup script%2$s per crear-ne un." @@ -4613,8 +4612,9 @@ msgid "Events" msgstr "Esdeveniments" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nom" @@ -4818,12 +4818,12 @@ msgstr ", @TABLE@ serà el nom de la taula" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les " -"cadenes de formateig de temps. A més, es faran aquestes transformacions: " -"%3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s " +"cadenes de formateig de temps. A més, es faran aquestes transformacions: %3" +"$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s " "per a més detalls." #: libraries/display_export.lib.php:275 @@ -5556,8 +5556,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Pots trobar la documentació i més informació sobre PBXT a la pàgina " "principal de %sPrimeBase XT%s." @@ -6793,8 +6793,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu " -"instal·lats els mòduls de PHP necessaris tal i com s'indica a la " -"%sdocumentació%s." +"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %" +"sdocumentació%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -7975,8 +7975,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de " "permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels " @@ -9478,8 +9478,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store" -"%s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o " +"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store%" +"s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o " "igual a ell." #: setup/lib/index.lib.php:266 @@ -9507,8 +9507,8 @@ msgstr "" "Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom " "d'usuari i la contrasenya per connexions automàtiques, que es una opció no " "recomanable per a servidors actius. Qualsevol que conegui la teva URL de " -"phpMyAdmin pot accedir al teu panel directament. Estableix el " -"%sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." +"phpMyAdmin pot accedir al teu panel directament. Estableix el %" +"sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." #: setup/lib/index.lib.php:270 #, php-format diff --git a/po/cs.po b/po/cs.po index 9b8ceb9595..7941f2375f 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-06-02 10:34+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" -"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" @@ -137,9 +137,8 @@ msgstr "Komentář k tabulce" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Pole" @@ -619,8 +618,8 @@ msgstr "Sledování není zapnuté." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s." @@ -857,8 +856,8 @@ msgstr "Výpis byl uložen do souboru %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." @@ -1715,8 +1714,8 @@ msgstr "Vítejte v %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho " "vytvoření by se vám mohl hodit %1$snastavovací skript%2$s." @@ -4538,8 +4537,9 @@ msgid "Events" msgstr "Události" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Název" @@ -4740,8 +4740,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít " "libovolné řetězce pro formátování data a času. Dále budou provedena " @@ -5467,8 +5467,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase " "XT%s." @@ -6738,8 +6738,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na " -"%spopisy transformací%s" +"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %" +"spopisy transformací%s" #: libraries/tbl_properties.inc.php:143 msgid "Transformation options" @@ -6790,8 +6790,8 @@ msgid "" "No description is available for this transformation.
Please ask the " "author what %s does." msgstr "" -"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co " -"%s dělá." +"Pro tuto transformaci není dostupný žádný popis.
Zeptejte se autora co %" +"s dělá." #: libraries/tbl_properties.inc.php:625 tbl_structure.php:636 #, php-format @@ -7410,8 +7410,8 @@ msgid "" "You can set more settings by modifying config.inc.php, eg. by using %sSetup " "script%s." msgstr "" -"Více věcí můžete nastavit úpravou config.inc.php, např. použitím " -"%sNastavovacího skriptu%s." +"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %" +"sNastavovacího skriptu%s." #: prefs_manage.php:302 msgid "Save to browser's storage" @@ -7859,8 +7859,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto " "tabulek se může lišit od oprávnění, která server právě používá, pokud byly " @@ -9328,8 +9328,8 @@ msgid "" "If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin " "cookie validity%s must be set to a value less or equal to it." msgstr "" -"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie" -"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " +"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%" +"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší " "hodnotu než je tato." #: setup/lib/index.lib.php:266 @@ -9340,8 +9340,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Pokud to považujete za nutné, použijte další možnosti zabezpečení - " -"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení " +"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %" +"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení " "založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa " "dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli." diff --git a/po/cy.po b/po/cy.po index 4d9af48352..9e58a287c2 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-05-19 21:21+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" -"Language: cy\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.0.5\n" @@ -138,9 +138,8 @@ msgstr "Sylwadau tabl" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Colofn" @@ -618,8 +617,8 @@ msgstr "Nid yw tracio'n weithredol" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s." @@ -858,8 +857,8 @@ msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth" "%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn." @@ -1766,11 +1765,11 @@ msgstr "Croeso i %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r " -"%1$sgript gosod%2$s er mwyn ei chreu." +"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r %1" +"$sgript gosod%2$s er mwyn ei chreu." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4526,8 +4525,9 @@ msgid "Events" msgstr "Digwyddiadau" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Enw" @@ -4747,8 +4747,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5436,8 +5436,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7759,8 +7759,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/da.po b/po/da.po index 7a01764e0c..6301e16ee8 100644 --- a/po/da.po +++ b/po/da.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-03-07 01:17+0200\n" "Last-Translator: \n" "Language-Team: danish \n" -"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -133,9 +133,8 @@ msgstr "Tabel kommentarer" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Kolonnenavn" @@ -621,8 +620,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -862,11 +861,11 @@ msgstr "Dump er blevet gemt i filen %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst " -"%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne " +"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst %" +"sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne " "begrænsning." #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1826,8 +1825,8 @@ msgstr "Velkommen til %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. " "Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en." @@ -4594,8 +4593,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Navn" @@ -4822,8 +4822,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Denne værdi fortolkes via %1$sstrftime%2$s, så du kan bruge tidsformatterede " "strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst " @@ -5542,8 +5542,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8053,14 +8053,14 @@ msgstr "Drop databaser der har samme navne som brugernes." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs " "privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra " "privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle " -"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" -"%s før du fortsætter." +"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%" +"s før du fortsætter." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." diff --git a/po/de.po b/po/de.po index 56b299a5f7..efd64a68f2 100644 --- a/po/de.po +++ b/po/de.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-04-23 04:28+0200\n" "Last-Translator: Dominik Geyer \n" "Language-Team: german \n" -"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "Tabellen-Kommentar" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Spalte" @@ -346,8 +345,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier" -"%s um herauszufinden warum." +"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier%" +"s um herauszufinden warum." #: db_operations.php:600 msgid "Edit or export relational schema" @@ -614,11 +613,11 @@ msgstr "Tracking ist nicht aktiviert." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die " -"%sDokumentation%s." +"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die %" +"sDokumentation%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 @@ -859,11 +858,11 @@ msgstr "Dump (Schema) wurde in Datei %s gespeichert." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die " -"%sDokumentation%s zur Lösung diese Problems." +"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %" +"sDokumentation%s zur Lösung diese Problems." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1739,8 +1738,8 @@ msgstr "Willkommen bei %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Eine mögliche Ursache wäre, dass Sie noch keine Konfigurationsdatei angelegt " "haben. Verwenden Sie in diesem Fall doch das %1$sSetup-Skript%2$s, um eine " @@ -4612,8 +4611,9 @@ msgid "Events" msgstr "Ereignisse" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Name" @@ -4818,8 +4818,8 @@ msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Dieser Wert wird mit %1$sstrftime%2$s geparst. Sie können also Platzhalter " "für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen " @@ -5551,8 +5551,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase " "XT-Website%s verfügbar." @@ -6900,8 +6900,8 @@ msgid "" "author what %s does." msgstr "" "Für diese Umwandlung ist keine Beschreibung verfügbar.
Für weitere " -"Informationen wenden Sie sich bitte an den Autoren der Funktion "" -"%s"." +"Informationen wenden Sie sich bitte an den Autoren der Funktion "%" +"s"." #: libraries/tbl_properties.inc.php:625 tbl_structure.php:636 #, php-format @@ -7998,8 +7998,8 @@ msgstr "Die gleichnamigen Datenbanken löschen." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden MySQL-" "Tabellen aus. Der Inhalt dieser Tabellen kann sich von den Benutzerprofilen, " @@ -9552,8 +9552,8 @@ msgstr "" "Sie haben die [kbd]config[/kbd] Authentifizierung gewählt und einen " "Benutzernamen und Passwort für Auto-Login eingegeben, was für Server im " "Internet nicht wünschenswert ist. Jeder, der Ihre phpMyAdmin-URL kennt oder " -"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den " -"%sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]." +"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den %" +"sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]." #: setup/lib/index.lib.php:270 #, php-format diff --git a/po/el.po b/po/el.po index 3716debc2d..1f7d01e1bf 100644 --- a/po/el.po +++ b/po/el.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-05-19 13:51+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" -"Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "Σχόλια Πίνακα" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Στήλη" @@ -614,11 +613,11 @@ msgstr "Η παρακολούθηση δεν είναι ενεργοποιημέ #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην " -"%sτεκμηρίωση%s." +"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %" +"sτεκμηρίωση%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 @@ -854,11 +853,11 @@ msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην " -"%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." +"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %" +"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1722,8 +1721,8 @@ msgstr "Καλωσήρθατε στο %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Πιθανή αιτία για αυτό είναι η μη δημιουργία αρχείου προσαρμογής. Ίσως θέλετε " "να χρησιμοποιήσετε τον %1$sκώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα." @@ -4624,8 +4623,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Όνομα" @@ -4824,8 +4824,8 @@ msgstr ", το @TABLE@ θα γίνει το όνομα του πίνακα" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι " "μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν " @@ -5398,8 +5398,8 @@ msgid "" "Documentation and further information about PBMS can be found on %sThe " "PrimeBase Media Streaming home page%s." msgstr "" -"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην " -"%sΙστοσελίδα του PrimeBase Media Streaming%s." +"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην %" +"sΙστοσελίδα του PrimeBase Media Streaming%s." #: libraries/engines/pbms.lib.php:96 libraries/engines/pbxt.lib.php:127 msgid "Related Links" @@ -5568,11 +5568,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" -"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην " -"%sΙστοσελίδα του PrimeBase XT%s." +"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην %" +"sΙστοσελίδα του PrimeBase XT%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -7250,8 +7250,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά " -"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε " -"%sεδώ%s." +"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε %" +"sεδώ%s." #: main.php:314 msgid "" @@ -7999,8 +7999,8 @@ msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδ msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από " "τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί " @@ -9528,8 +9528,8 @@ msgid "" "(currently %d)." msgstr "" "Αν η %sεγκυρότητα Σύνδεσης cookie%s είναι μεγαλύτερη από 1440 δευτερόλεπτα " -"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime" -"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." +"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime%" +"s είναι μικρότερο από την τιμή της (τρέχουσα: %d)." #: setup/lib/index.lib.php:262 #, php-format diff --git a/po/en_GB.po b/po/en_GB.po index 51e1c2fc6d..34afba2da4 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-05-31 19:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" -"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "Table comments" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Column" @@ -614,11 +613,11 @@ msgstr "Tracking is not active." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 @@ -852,11 +851,11 @@ msgstr "Dump has been saved to file %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1707,11 +1706,11 @@ msgstr "Welcome to %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4529,8 +4528,9 @@ msgid "Events" msgstr "Events" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Name" @@ -4729,12 +4729,12 @@ msgstr ", @TABLE@ will become the table name" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5456,11 +5456,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -7851,13 +7851,13 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." diff --git a/po/es.po b/po/es.po index 6346e5e0c9..bda89603c6 100644 --- a/po/es.po +++ b/po/es.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-05-19 19:01+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" -"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "Comentarios de la tabla" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Columna" @@ -618,11 +617,11 @@ msgstr "El seguimiento no está activo." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Esta vista tiene al menos este número de filas. Por favor refiérase a la " -"%sdocumentation%s." +"Esta vista tiene al menos este número de filas. Por favor refiérase a la %" +"sdocumentation%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 @@ -858,8 +857,8 @@ msgstr "El volcado ha sido guardado al archivo %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Usted probablemente intentó cargar un archivo demasiado grande. Por favor, " "refiérase a %sla documentation%s para hallar modos de superar esta " @@ -1729,8 +1728,8 @@ msgstr "Bienvenido a %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "La razón más probable es que usted no haya creado un archivo de " "configuración. Utilice el %1$sscript de configuración%2$s para crear uno." @@ -4645,8 +4644,9 @@ msgid "Events" msgstr "Eventos" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nombre" @@ -4849,8 +4849,8 @@ msgstr ", @TABLE@ se convertirá en el nombre de la tabla" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Este valor es interpretado usando %1$sstrftime%2$s por lo que se pueden usar " "cadenas para formatear el tiempo. Además sucederán las siguientes " @@ -5601,8 +5601,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Se puede encontrar documentación y más información sobre PBXT en la %spágina " "inicial de PrimeBase XT%s." @@ -7297,8 +7297,8 @@ msgid "" "extended features have been deactivated. To find out why click %shere%s." msgstr "" "El almacenamiento de configuración phpMyAdmin no está completamente " -"configurado, algunas funcionalidades extendidas fueron deshabilitadas. " -"%sPulsa aquí para averiguar por qué%s." +"configurado, algunas funcionalidades extendidas fueron deshabilitadas. %" +"sPulsa aquí para averiguar por qué%s." #: main.php:314 msgid "" @@ -8053,8 +8053,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de " "las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir " diff --git a/po/et.po b/po/et.po index 3418814d9c..92be794ece 100644 --- a/po/et.po +++ b/po/et.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -132,9 +132,8 @@ msgstr "Tabeli kommentaarid" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -633,8 +632,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -883,8 +882,8 @@ msgstr "Väljavõte salvestati faili %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Te kindlasti proovisite laadida liiga suurt faili. Palun uuri " "dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks." @@ -1835,8 +1834,8 @@ msgstr "Tere tulemast %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Arvatav põhjus on te pole veel loonud seadete faili. Soovitavalt võid " "kasutada %1$ssetup script%2$s et seadistada." @@ -4641,8 +4640,9 @@ msgid "Events" msgstr "Saadetud" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nimi" @@ -4869,8 +4869,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Seda väärtust on tõlgendatud kasutades %1$sstrftime%2$s, sa võid kasutada " "sama aja(time) formaati. Lisaks tulevad ka järgnevad muudatused: %3$s. " @@ -5590,8 +5590,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8101,8 +8101,8 @@ msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Märkus: phpMyAdmin võtab kasutajate privileegid otse MySQL privileges " "tabelist. Tabeli sisu võib erineda sellest, mida server hetkel kasutab, seda " diff --git a/po/eu.po b/po/eu.po index 916e4ea6f1..07702d36aa 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: basque \n" -"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -133,9 +133,8 @@ msgstr "Taularen iruzkinak" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -637,8 +636,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -884,8 +883,8 @@ msgstr "Iraulketa %s fitxategian gorde da." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1810,8 +1809,8 @@ msgstr "Ongietorriak %s(e)ra" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4578,8 +4577,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Izena" @@ -4799,8 +4799,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5487,8 +5487,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7970,8 +7970,8 @@ msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Oharra: phpMyAdmin-ek erabiltzaileen pribilegioak' zuzenean MySQL-ren " "pribilegioen taulatik' eskuratzen ditu. Taula hauen edukiak, tartean eskuz " diff --git a/po/fa.po b/po/fa.po index c9f90b65a9..1ff10d725c 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" "Last-Translator: \n" "Language-Team: persian \n" -"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -132,9 +132,8 @@ msgstr "توضيحات جدول" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "ستون" @@ -613,8 +612,8 @@ msgstr "پیگردی فعال نمی باشد." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "در این نما حداقل این تعداد از سطرها موجود می باشد. لطفاً به %sنوشتار%s مراجعه " "نمایید." @@ -858,8 +857,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1774,8 +1773,8 @@ msgstr "به %s خوش‌آمديد" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4513,8 +4512,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "اسم" @@ -4732,8 +4732,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5408,8 +5408,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6658,9 +6658,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " -"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " -"يا 'a\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " +"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" +"\\'b')" #: libraries/tbl_properties.inc.php:105 msgid "" @@ -6695,9 +6695,9 @@ msgid "" msgstr "" "اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب " "استفاده نماييد : 'a','b','c'...
اگر احتياج داشتيد كه از علامت مميز " -"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده " -"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' " -"يا 'a\\'b')" +"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد " +"، قبل از آنها علامت (\" \\ \") را بگذاريد
(براي مثال'\\\\xyz' يا 'a" +"\\'b')" #: libraries/tbl_properties.inc.php:371 msgid "ENUM or SET data too long?" @@ -6967,8 +6967,8 @@ msgid "" "this security hole by setting a password for user 'root'." msgstr "" "پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با " -"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز " -"مي‌شود ، و شما بايد اين حفره امنيتي را ذرست كنيد." +"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز مي‌شود " +"، و شما بايد اين حفره امنيتي را ذرست كنيد." #: main.php:251 msgid "" @@ -7768,8 +7768,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/fi.po b/po/fi.po index ede39773d4..25c6204ff8 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-11-26 21:29+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" -"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "Taulun kommentit" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Sarake" @@ -614,11 +613,11 @@ msgstr "Seuranta ei ole käytössä." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja " -"%sohjeista%s." +"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %" +"sohjeista%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 @@ -859,8 +858,8 @@ msgstr "Vedos tallennettiin tiedostoon %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso " "tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s." @@ -1738,11 +1737,11 @@ msgstr "Tervetuloa, toivottaa %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston " -"%1$sasetusskriptillä%2$s." +"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston %1" +"$sasetusskriptillä%2$s." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4701,8 +4700,9 @@ msgid "Events" msgstr "Tapahtumat" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nimi" @@ -4937,8 +4937,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Tämä arvo on %1$sstrftime%2$s-funktion mukainen, joten " "ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat " @@ -5699,8 +5699,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8263,8 +8263,8 @@ msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Huom: PhpMyAdmin hakee käyttäjien käyttöoikeudet suoraan MySQL-palvelimen " "käyttöoikeustauluista. Näiden taulujen sisältö saattaa poiketa palvelimen " @@ -9852,9 +9852,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/fr.po b/po/fr.po index 176ffb7258..a9e7d85849 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-05-31 17:18+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" -"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -136,9 +136,8 @@ msgstr "Commentaires sur la table" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Colonne" @@ -615,11 +614,11 @@ msgstr "Le suivi n'est pas activé." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Cette vue contient au moins ce nombre de lignes. Veuillez référer à " -"%sdocumentation%s." +"Cette vue contient au moins ce nombre de lignes. Veuillez référer à %" +"sdocumentation%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 @@ -856,8 +855,8 @@ msgstr "Le fichier d'exportation a été sauvegardé sous %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Vous avez probablement tenté de télécharger un fichier trop volumineux. " "Veuillez vous référer à la %sdocumentation%s pour des façons de contourner " @@ -1727,8 +1726,8 @@ msgstr "Bienvenue sur %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "La raison probable est que vous n'avez pas créé de fichier de configuration. " "Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but." @@ -4604,8 +4603,9 @@ msgid "Events" msgstr "Événements" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nom" @@ -4807,8 +4807,8 @@ msgstr ", @TABLE@ sera remplacé par le nom de la table" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Cette valeur est interprétée avec %1$sstrftime%2$s, vous pouvez donc " "utiliser des chaînes de format d'heure. Ces transformations additionnelles " @@ -5550,8 +5550,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "La documentation de PBXT et des informations additionnelles sont disponibles " "sur %sle site de PrimeBase XT%s." @@ -5702,8 +5702,7 @@ msgstr "" #: libraries/export/sql.php:35 msgid "Additional custom header comment (\\n splits lines):" -msgstr "" -"Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :" +msgstr "Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :" #: libraries/export/sql.php:37 msgid "" @@ -6787,8 +6786,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions " -"PHP nécessaires ont bien été installées tel que décrit dans la " -"%sdocumentation%s." +"PHP nécessaires ont bien été installées tel que décrit dans la %" +"sdocumentation%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -7989,8 +7988,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin obtient la liste des privilèges directement à partir des " "tables MySQL. Le contenu de ces tables peut être différent des privilèges " @@ -9421,8 +9420,8 @@ msgid "" msgstr "" "Cette %soption%s ne devrait pas être activée car elle permet à un attaquant " "de tenter de forcer l'entrée sur tout serveur MySQL. Si vous en avez " -"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance" -"%s." +"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance%" +"s." #: setup/lib/index.lib.php:252 msgid "" @@ -9474,8 +9473,8 @@ msgid "" msgstr "" "Le paramètre %sLogin cookie validity%s avec une valeur de plus de 1440 " "secondes peut causer des interruptions de la session de travail si le " -"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement " -"%d)." +"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement %" +"d)." #: setup/lib/index.lib.php:262 #, php-format @@ -9494,8 +9493,8 @@ msgid "" "cookie validity%s must be set to a value less or equal to it." msgstr "" "Si vous utilisez l'authentification cookie et que le paramètre %sLogin " -"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity" -"%s doit avoir une valeur plus petite ou égale à celui-ci." +"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity%" +"s doit avoir une valeur plus petite ou égale à celui-ci." #: setup/lib/index.lib.php:266 #, php-format @@ -9505,8 +9504,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Si vous l'estimez nécessaire, utilisez des paramètres de protection - " -"%sauthentification du serveur%s et %sserveurs mandataires de confiance%s. " +"Si vous l'estimez nécessaire, utilisez des paramètres de protection - %" +"sauthentification du serveur%s et %sserveurs mandataires de confiance%s. " "Cependant, la protection par adresse IP peut ne pas être fiable si votre IP " "appartient à un fournisseur via lequel des milliers d'utilisateurs, vous y " "compris, sont connectés." diff --git a/po/gl.po b/po/gl.po index aa8af1b79c..b7b6ea70c8 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-07-21 14:50+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: galician \n" -"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -136,9 +136,8 @@ msgstr "Comentarios da táboa" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -638,11 +637,11 @@ msgstr "O seguemento non está activado." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation" -"%s." +"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%" +"s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 @@ -883,11 +882,11 @@ msgstr "Gardouse o volcado no ficheiro %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a " -"%sdocumentación%s para averiguar como evitar este límite." +"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %" +"sdocumentación%s para averiguar como evitar este límite." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1861,8 +1860,8 @@ msgstr "Reciba a benvida a %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Isto débese, posibelmente, a que non se creou un ficheiro de configuración. " "Tal vez queira utilizar %1$ssetup script%2$s para crear un." @@ -4892,8 +4891,9 @@ msgid "Events" msgstr "Acontecementos" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nome" @@ -5126,8 +5126,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode " "utilizar cadeas de formato de hora. Produciranse transformacións en " @@ -5896,8 +5896,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7703,8 +7703,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na " -"%sdocumentation%s." +"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na %" +"sdocumentation%s." #: navigation.php:207 server_databases.php:281 server_synchronize.php:1206 msgid "No databases" @@ -8459,8 +8459,8 @@ msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Nota: phpMyAdmin recolle os privilexios dos usuarios directamente das táboas " "de privilexios do MySQL. O contido destas táboas pode diferir dos " @@ -10056,9 +10056,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/he.po b/po/he.po index 9207779b88..d266d89365 100644 --- a/po/he.po +++ b/po/he.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-03-02 20:17+0200\n" "Last-Translator: \n" "Language-Team: hebrew \n" -"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -130,9 +130,8 @@ msgstr "הערות טבלה" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -629,8 +628,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -874,8 +873,8 @@ msgstr "הוצאה נשמרה אל קובץ %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1806,8 +1805,8 @@ msgstr "ברוך הבא אל %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4574,8 +4573,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "שם" @@ -4797,8 +4797,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5482,8 +5482,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7884,8 +7884,8 @@ msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמ msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "הערה: phpMyAdmin מקבל הרשאות משתמש ישירות מטבלאות הרשאות של MySQL. התוכן של " "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " diff --git a/po/hi.po b/po/hi.po index 4ab10e7be9..e202391712 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-05-06 09:13+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" -"Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -134,9 +134,8 @@ msgstr " टेबल टिप्पणि:" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "कोलम" @@ -345,8 +344,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए " -"%shere%s पर क्लिक करें." +"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए %" +"shere%s पर क्लिक करें." #: db_operations.php:600 msgid "Edit or export relational schema" @@ -613,8 +612,8 @@ msgstr "ट्रैकिंग सक्रिय नहीं है." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दोक्युमेंताशन%s पढ़ें." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -855,8 +854,8 @@ msgstr "डंप को %s फाइल में सेव किया गय #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s " "दोकुमेंताशन%s पढ़ें." @@ -1719,11 +1718,11 @@ msgstr " %s मे स्वागत है" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script" -"%2$s का उपयोग करें." +"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script%2" +"$s का उपयोग करें." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4442,8 +4441,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "नाम" @@ -4643,8 +4643,8 @@ msgstr ", @टेबल@ टेबल का नाम बन जायेगा #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5300,8 +5300,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7641,8 +7641,8 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/hr.po b/po/hr.po index 5d5cf2de24..7c965cf596 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: croatian \n" -"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.1\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -136,9 +136,8 @@ msgstr "Komentari tablice" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -637,8 +636,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s." @@ -888,11 +887,11 @@ msgstr "Izbacivanje je spremljeno u datoteku %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte " -"%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." +"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %" +"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1849,8 +1848,8 @@ msgstr "Dobro došli u %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Vjerojatan razlog je nepostojeća konfiguracijska datoteka. Za izradu možete " "upotrijebiti naredbu %1$ssetup script%2$s" @@ -4656,8 +4655,9 @@ msgid "Events" msgstr "Događaji" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Naziv" @@ -4887,8 +4887,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti " "naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća " @@ -5646,8 +5646,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8169,8 +8169,8 @@ msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin preuzima korisničke privilegije izravno iz MySQL " "tablica privilegija. U slučaju da su ručno mijenjane, sadržaj ovih tablica " @@ -10593,8 +10593,8 @@ msgstr "Preimenuj prikaz u" #~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] " #~ "extension. Please check your PHP configuration." #~ msgstr "" -#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation]" -#~ "[em]%1$s[/em][/a] . Provjerite svoju PHP konfiguraciju." +#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation][em]%1" +#~ "$s[/em][/a] . Provjerite svoju PHP konfiguraciju." #~ msgid "" #~ "Couldn't load the iconv or recode extension needed for charset " diff --git a/po/hu.po b/po/hu.po index c01df6dc66..64b70f89b2 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-05-27 18:52+0200\n" "Last-Translator: \n" "Language-Team: hungarian \n" -"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "Tábla megjegyzése" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Oszlop" @@ -614,11 +613,11 @@ msgstr "Nyomkövetés inaktív." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a " -"%sdokumentációban%s." +"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a %" +"sdokumentációban%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 @@ -854,11 +853,11 @@ msgstr "A kiíratás mentése a(z) %s fájlba megtörtént." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a " -"%sdokumentációban%s a korlátozás feloldása végett." +"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a %" +"sdokumentációban%s a korlátozás feloldása végett." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1728,11 +1727,11 @@ msgstr "Üdvözli a %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A " -"%1$stelepítőszkripttel%2$s el tudja készíteni." +"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A %1" +"$stelepítőszkripttel%2$s el tudja készíteni." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4601,8 +4600,9 @@ msgid "Events" msgstr "Események" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Név" @@ -4809,8 +4809,8 @@ msgstr ", @TABLE@ lesz a tábla neve" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ennek az értéknek az értelmezése az %1$sstrftime%2$s használatával történik, " "vagyis időformázó karakterláncokat használhat. A következő átalakításokra " @@ -5554,8 +5554,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6814,8 +6814,8 @@ msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a " -"%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" +"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a %" +"sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-" "kiterjesztést." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 @@ -8120,13 +8120,13 @@ msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Megjegyzés: a phpMyAdmin a felhasználók jogait közvetlenül a MySQL " "privilégium táblákból veszi. Ezen táblák tartalma eltérhet a szerver által " -"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben " -"%stöltse be újra a jogokat%s a folytatás előtt." +"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben %" +"stöltse be újra a jogokat%s a folytatás előtt." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -9675,9 +9675,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/id.po b/po/id.po index 1f560fddee..4c0b43c6e0 100644 --- a/po/id.po +++ b/po/id.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-04-16 22:04+0200\n" "Last-Translator: \n" "Language-Team: indonesian \n" -"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "Komentar tabel" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Kolom" @@ -611,11 +610,11 @@ msgstr "Pelacakan tidak aktif." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat " -"%sdokumentasi%s" +"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat %" +"sdokumentasi%s" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 @@ -854,11 +853,11 @@ msgstr "Dump (Skema) disimpan pada file %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat " -"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." +"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat %" +"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1731,8 +1730,8 @@ msgstr "Selamat Datang di %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Anda mungkin belum membuat file konfigurasi. Anda bisa menggunakan %1$ssetup " "script%2$s untuk membuatnya." @@ -4499,8 +4498,9 @@ msgid "Events" msgstr "Kejadian" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nama" @@ -4727,8 +4727,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5433,8 +5433,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7950,8 +7950,8 @@ msgstr "Hapus database yang memiliki nama yang sama dengan pengguna." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari " "tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil " diff --git a/po/it.po b/po/it.po index fb11df086f..172871cefc 100644 --- a/po/it.po +++ b/po/it.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-05-25 22:43+0200\n" "Last-Translator: Rouslan Placella \n" "Language-Team: italian \n" -"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -136,9 +136,8 @@ msgstr "Commenti alla tabella" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Campo" @@ -615,8 +614,8 @@ msgstr "Il tracking non è attivo." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Questa vista ha, come minimo, questo numero di righe. Per informazioni " "controlla la %sdocumentazione%s." @@ -855,8 +854,8 @@ msgstr "Il dump è stato salvato nel file %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Stai probabilmente cercando di caricare sul server un file troppo grande. " "Fai riferimento alla documentazione %sdocumentation%s se desideri aggirare " @@ -1724,8 +1723,8 @@ msgstr "Benvenuto in %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "La ragione di questo è che probabilmente non hai creato alcun file di " "configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno." @@ -4627,8 +4626,9 @@ msgid "Events" msgstr "Eventi" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nome" @@ -4830,8 +4830,8 @@ msgstr ", il nome della tabella diventerá @TABLE@" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi " "usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte " @@ -5571,8 +5571,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "La documentazione ed ulteriori informazioni a riguardo di PBXT é disponibile " "su %sPrimeBase XT Home Page%s." @@ -7282,8 +7282,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Sul server è in esecuzione Suhosin. Controlla la documentazione: " -"%sdocumentation%s per possibili problemi." +"Sul server è in esecuzione Suhosin. Controlla la documentazione: %" +"sdocumentation%s per possibili problemi." #: navigation.php:207 server_databases.php:281 server_synchronize.php:1206 msgid "No databases" @@ -7996,8 +7996,8 @@ msgstr "Elimina i databases gli stessi nomi degli utenti." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "N.B.: phpMyAdmin legge i privilegi degli utenti direttamente nella tabella " "dei privilegi di MySQL. Il contenuto di questa tabella può differire dai " @@ -9530,10 +9530,10 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - " -"%saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia" -"%s. Comunque, la protezione a base di IP potrebbe non essere affidabile se " -"il tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono " +"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - %" +"saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia%s. " +"Comunque, la protezione a base di IP potrebbe non essere affidabile se il " +"tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono " "connessi." #: setup/lib/index.lib.php:268 @@ -9548,8 +9548,8 @@ msgstr "" "Hai impostato il tipo di autenticazione [kbd]config[/kbd] e hai inclusi il " "nome utente e la parola chiave per l'auto-login, questo non è desiderato per " "gli host in uso live. Chiunque che conosce o indovina il tuo URL di " -"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta " -"%sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." +"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta %" +"sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]." #: setup/lib/index.lib.php:270 #, php-format diff --git a/po/ja.po b/po/ja.po index 7434dbc088..ecd0fc72bd 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-05-31 12:04+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" -"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "テーブルのコメント" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "カラム" @@ -611,8 +610,8 @@ msgstr "SQL コマンドの追跡は非アクティブです。" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -850,8 +849,8 @@ msgstr "ダンプをファイル %s に保存しました" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ" "メント%s をご覧ください" @@ -1712,11 +1711,11 @@ msgstr "%s へようこそ" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプ" -"ト%2$s を利用して設定ファイルを作成してください" +"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプト%2" +"$s を利用して設定ファイルを作成してください" #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4556,8 +4555,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "名前" @@ -4757,8 +4757,8 @@ msgstr "、@TABLE@ はテーブル名に" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "この値は %1$sstrftime%2$s を使用して解釈されますので、時刻の書式文字列を使用" "することができます。また、埋め込み変数変換も行われます(%3$s変換されま" @@ -5483,8 +5483,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "PBXT に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ" "ト%sにあります。" @@ -7869,8 +7869,8 @@ msgstr "ユーザと同名のデータベースを削除する" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手" "作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの" @@ -9349,11 +9349,10 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定" -"(%sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してくださ" -"い。しかしながら、ユーザが数千人もいるような ISP に所属している、含まれてい" -"る、接続されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえま" -"せん。" +"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定(%" +"sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してください。し" +"かしながら、ユーザが数千人もいるような ISP に所属している、含まれている、接続" +"されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。" #: setup/lib/index.lib.php:268 #, php-format diff --git a/po/ka.po b/po/ka.po index c7e9b8c8d6..5afa3a3f32 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -134,9 +134,8 @@ msgstr "ცხრილის კომენტარები" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -635,11 +634,11 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"This view has at least this number of rows. Please refer to %sdocumentation" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 @@ -886,11 +885,11 @@ msgstr "Dump has been saved to file %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1859,11 +1858,11 @@ msgstr "მოგესალმებათ %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4835,8 +4834,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "სახელი" @@ -5066,12 +5066,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5821,8 +5821,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8377,13 +8377,13 @@ msgstr "Drop the databases that have the same names as the users." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -9913,9 +9913,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/ko.po b/po/ko.po index f7526b1c93..08be782e15 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-06-16 18:18+0200\n" "Last-Translator: \n" "Language-Team: korean \n" -"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -134,9 +134,8 @@ msgstr "테이블 설명" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "컬럼명" @@ -351,8 +350,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " -"%s여기를 클릭%s하십시오." +"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" +"s여기를 클릭%s하십시오." #: db_operations.php:600 msgid "Edit or export relational schema" @@ -621,8 +620,8 @@ msgstr "트래킹이 활성화되어 있지 않습니다." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -867,8 +866,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1753,8 +1752,8 @@ msgstr "%s에 오셨습니다" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파" "일을 생성할 수 있습니다." @@ -4519,8 +4518,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "이름" @@ -4739,8 +4739,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5422,8 +5422,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7030,8 +7030,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 " -"%s여기를 클릭%s하십시오." +"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %" +"s여기를 클릭%s하십시오." #: main.php:314 msgid "" @@ -7792,8 +7792,8 @@ msgstr "사용자명과 같은 이름의 데이터베이스를 삭제" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/lt.po b/po/lt.po index bb3a09e035..dde1c6bd49 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-04-05 15:52+0200\n" "Last-Translator: Kęstutis \n" "Language-Team: lithuanian \n" -"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" -"%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" +"100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -135,9 +135,8 @@ msgstr "Lentelės komentarai" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Stulpelis" @@ -616,11 +615,11 @@ msgstr "Sekimas yra neaktyvus." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos " -"%sdokumentacijoje%s." +"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos %" +"sdokumentacijoje%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 @@ -861,11 +860,11 @@ msgstr "Atvaizdis įrašytas faile %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti " -"%sdokumentaciją%s būdams kaip apeiti šį apribojimą." +"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti %" +"sdokumentaciją%s būdams kaip apeiti šį apribojimą." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1735,8 +1734,8 @@ msgstr "Jūs naudojate %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Jūs dar turbūt nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų " "skriptu%2$s, kad sukurtumėte failą." @@ -4531,8 +4530,9 @@ msgid "Events" msgstr "Įvykiai" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Pavadinimas" @@ -4733,8 +4733,8 @@ msgstr ", @TABLE@ taps lentelės pavadinimu" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi Jūs galite " "keisti laiko formatavimą. Taip pat pakeičiamos šios eilutės: %3$s. Kitas " @@ -5421,8 +5421,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7881,8 +7881,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų " "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " @@ -9311,9 +9311,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/lv.po b/po/lv.po index 6b1729e00b..990c7c61ee 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -132,9 +132,8 @@ msgstr "Komentārs tabulai" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -633,8 +632,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -880,8 +879,8 @@ msgstr "Damps tika saglabāts failā %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1814,8 +1813,8 @@ msgstr "Laipni lūgti %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4583,8 +4582,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nosaukums" @@ -4806,8 +4806,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5494,8 +5494,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7977,13 +7977,13 @@ msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Piezīme: phpMyAdmin saņem lietotāju privilēģijas pa taisno no MySQL " "privilēģiju tabilām. Šo tabulu saturs var atšķirties no privilēģijām, ko " -"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " -"%spārlādēt privilēģijas%s pirms Jūs turpināt." +"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams %" +"spārlādēt privilēģijas%s pirms Jūs turpināt." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." diff --git a/po/mk.po b/po/mk.po index 6394ab03c1..99bb937e4d 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-05-19 17:04+0200\n" "Last-Translator: \n" "Language-Team: macedonian_cyrillic \n" -"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: mk\n" "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" "X-Generator: Pootle 2.0.5\n" @@ -133,9 +133,8 @@ msgstr "Коментар на табелата" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -634,8 +633,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -881,8 +880,8 @@ msgstr "Содржината на базата на податоци е сочу #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1815,8 +1814,8 @@ msgstr "%s Добредојдовте" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4598,8 +4597,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Име" @@ -4823,8 +4823,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5531,8 +5531,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8044,8 +8044,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL " "табелата на привилегии. Содржината на оваа табела табела може да се " diff --git a/po/ml.po b/po/ml.po index 0e5fab0642..54f181dfd5 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-02-10 14:03+0100\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam \n" -"Language: ml\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" "X-Generator: Translate Toolkit 1.7.0\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -131,9 +131,8 @@ msgstr "" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "" @@ -608,8 +607,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -843,8 +842,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1674,8 +1673,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4314,8 +4313,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "" @@ -4512,8 +4512,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5163,8 +5163,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7395,8 +7395,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/mn.po b/po/mn.po index 21dee6f67e..f4ff2afc10 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -131,9 +131,8 @@ msgstr "Хүснэгтийн тайлбар" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -633,8 +632,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -873,8 +872,8 @@ msgstr "Асгалт %s файлд хадгалагдсан." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1818,11 +1817,11 @@ msgstr "%s-д тавтай морилно уу" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та " -"%1$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." +"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та %1" +"$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4579,8 +4578,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Нэр" @@ -4806,12 +4806,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны " -"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: " -"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." +"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %" +"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5521,8 +5521,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7998,8 +7998,8 @@ msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн сан msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Тэмдэглэл: phpMyAdmin нь MySQL-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн " "онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн " @@ -10220,8 +10220,8 @@ msgstr "" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд" -#~ "%s дарж шалгах." +#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%" +#~ "s дарж шалгах." #~ msgid "Ignore duplicate rows" #~ msgstr "Давхардсан мөрүүдийг алгасах" diff --git a/po/ms.po b/po/ms.po index 7ad5b93fbe..0f457f6a0c 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -130,9 +130,8 @@ msgstr "Komen jadual" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -634,8 +633,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -878,8 +877,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1797,8 +1796,8 @@ msgstr "Selamat Datang ke %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4540,8 +4539,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nama" @@ -4760,8 +4760,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5445,8 +5445,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7831,8 +7831,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/nb.po b/po/nb.po index d1b687f985..225dc7a7ef 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-03-07 11:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: norwegian \n" -"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -134,9 +134,8 @@ msgstr "Tabellkommentarer" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Kolonne" @@ -612,8 +611,8 @@ msgstr "Overvåkning er ikke aktiv." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -856,8 +855,8 @@ msgstr "Dump har blitt lagret til fila %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen" "%s for måter å omgå denne begrensningen." @@ -1731,8 +1730,8 @@ msgstr "Velkommen til %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør " "kanskje bruke %1$ssetup script%2$s for å opprette en." @@ -4579,8 +4578,9 @@ msgid "Events" msgstr "Hendelser" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Navn" @@ -4784,8 +4784,8 @@ msgstr ", @TABLE@ vil bli tabellnavnet" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke " "tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. " @@ -5528,8 +5528,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6815,8 +6815,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"For en liste over tilgjengelige transformasjonsvalg, klikk på " -"%stransformasjonsbeskrivelser%s" +"For en liste over tilgjengelige transformasjonsvalg, klikk på %" +"stransformasjonsbeskrivelser%s" #: libraries/tbl_properties.inc.php:143 msgid "Transformation options" @@ -7994,8 +7994,8 @@ msgstr "Slett databasene som har det samme navnet som brukerne." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Merk: phpMyAdmin får brukerprivilegiene direkte fra MySQL " "privilegietabeller. Innholdet i disse tabellene kan være forskjellig fra de " @@ -9537,8 +9537,8 @@ msgid "" "of users, including you, are connected to." msgstr "" "Hvis du føler at dette er nødvending, så bruk ekstra " -"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" +"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=%1" +"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?" "page=form&formset=features#tab_Security]godkjente mellomlagerliste[/a]. " "Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en " "Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet." @@ -9549,9 +9549,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/nl.po b/po/nl.po index f77c986cf7..6f91720891 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-03-16 20:18+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: dutch \n" -"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -134,9 +134,8 @@ msgstr "Tabelopmerkingen" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Kolom" @@ -613,8 +612,8 @@ msgstr "Tracking is niet actief." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s." @@ -859,11 +858,11 @@ msgstr "Dump is bewaard als %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de " -"%sdocumentatie%s voor mogelijkheden om dit te omzeilen." +"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de %" +"sdocumentatie%s voor mogelijkheden om dit te omzeilen." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1744,8 +1743,8 @@ msgstr "Welkom op %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u " "%1$ssetup script%2$s gebruiken om een te maken." @@ -4630,8 +4629,9 @@ msgid "Events" msgstr "Gebeurtenissen" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Naam" @@ -4837,13 +4837,13 @@ msgstr ", @TABLE@ wordt vervangen door de tabel naam" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het " "gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende " -"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ" -"%5$s voor meer details." +"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ%5" +"$s voor meer details." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5579,11 +5579,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" -"Documentatie en meer informatie over PBXT kan gevonden worden op de " -"%sPrimeBase XT home pagina%s." +"Documentatie en meer informatie over PBXT kan gevonden worden op de %" +"sPrimeBase XT home pagina%s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -8015,8 +8015,8 @@ msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL " "privileges tabel. De content van deze tabel kan verschillen met de rechten " diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index a82e4dd311..a2fa70f148 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,11 +8,10 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" @@ -134,9 +133,8 @@ msgstr "" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "" @@ -611,8 +609,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -846,8 +844,8 @@ msgstr "" #: import.php:58 #, possible-php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1677,8 +1675,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:106 #, possible-php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4317,8 +4315,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "" @@ -4515,8 +4514,8 @@ msgstr "" #, possible-php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5166,8 +5165,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, possible-php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7398,8 +7397,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/pl.po b/po/pl.po index a936402d3e..31310efdef 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-02-24 16:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: polish \n" -"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" @@ -136,9 +136,8 @@ msgstr "Komentarze tabeli" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Kolumna" @@ -623,11 +622,11 @@ msgstr "Monitorowanie nie jest aktywne." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w " -"%sdocumentation%s." +"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w %" +"sdocumentation%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 @@ -868,8 +867,8 @@ msgstr "Zrzut został zapisany do pliku %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Prawdopodobnie próbowano wrzucić duży plik. Aby poznać sposoby obejścia tego " "limitu, proszę zapoznać się z %sdokumenacją%s." @@ -1777,8 +1776,8 @@ msgstr "Witamy w %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Do jego " "stworzenia można użyć %1$sskryptu instalacyjnego%2$s." @@ -4696,8 +4695,9 @@ msgid "Events" msgstr "Zdarzenia" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nazwa" @@ -4930,8 +4930,8 @@ msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej tabeli" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Interpretacja tej wartości należy do funkcji %1$sstrftime%2$s i można użyć " "jej napisów formatujących. Dodatkowo zostaną zastosowane następujące " @@ -5695,8 +5695,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6965,8 +6965,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "Analizator składni SQL nie mógł zostać zainicjowany. Sprawdź, czy " -"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w " -"%sdokumentacji%s." +"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %" +"sdokumentacji%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -7020,8 +7020,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij " -"%sopisy transformacji%s" +"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %" +"sopisy transformacji%s" #: libraries/tbl_properties.inc.php:143 msgid "Transformation options" @@ -7505,8 +7505,8 @@ msgid "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." msgstr "" -"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja" -"%s." +"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%" +"s." #: navigation.php:207 server_databases.php:281 server_synchronize.php:1206 msgid "No databases" @@ -8258,8 +8258,8 @@ msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Uwaga: phpMyAdmin pobiera uprawnienia użytkowników wprost z tabeli uprawnień " "MySQL-a. Zawartość tej tabeli, jeśli zostały w niej dokonane ręczne zmiany, " @@ -9813,8 +9813,8 @@ msgid "" "of users, including you, are connected to." msgstr "" "Jeżeli wydaje się to konieczne, można użyć dodatkowych ustawień " -"bezpieczeństwa — [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?" +"bezpieczeństwa — [a@?page=servers&mode=edit&id=%1" +"$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?" "page=form&formset=features#tab_Security]listy zaufanych serwerów proxy[/" "a]. Jednakże ochrona oparta na adresy IP może nie być wiarygodna, jeżeli " "używany IP należy do ISP, do którego podłączonych jest tysiące użytkowników." @@ -9825,9 +9825,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/pt.po b/po/pt.po index 0bcdca5643..040fbd34c3 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-03-26 03:23+0200\n" "Last-Translator: \n" "Language-Team: portuguese \n" -"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -134,9 +134,8 @@ msgstr "Comentários da tabela" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Coluna" @@ -613,11 +612,11 @@ msgstr "Detecção de Alterações está desactivada." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Esta vista tem número de linhas aproximado. Por favor, consulte a " -"%sdocumentação%s." +"Esta vista tem número de linhas aproximado. Por favor, consulte a %" +"sdocumentação%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 @@ -858,8 +857,8 @@ msgstr "O Dump foi gravado para o ficheiro %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Provavelmente tentou efectuar o importar um ficheiro demasiado grande. Por " "favor reveja a %sdocumentação%s para encontrar formas de contornar este " @@ -1787,11 +1786,11 @@ msgstr "Bemvindo ao %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script" -"%2$s pode ser utilizado para criar um." +"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script%" +"2$s pode ser utilizado para criar um." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4566,8 +4565,9 @@ msgid "Events" msgstr "Enviado" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nome" @@ -4788,8 +4788,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5476,8 +5476,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7899,8 +7899,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Nota: O phpMyAdmin recebe os privilégios dos utilizadores directamente da " "tabela de privilégios do MySQL. O conteúdo destas tabelas pode diferir dos " diff --git a/po/pt_BR.po b/po/pt_BR.po index 54ff0eda2d..87c2f9b6d9 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-04-14 17:44+0200\n" "Last-Translator: \n" "Language-Team: brazilian_portuguese \n" -"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "Comentários da tabela" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Coluna" @@ -616,11 +615,11 @@ msgstr "Rastreamento não está ativo." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" -"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a " -"%sdocumentação%s." +"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a %" +"sdocumentação%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 #: libraries/tbl_info.inc.php:60 tbl_structure.php:206 test/theme.php:73 @@ -860,8 +859,8 @@ msgstr "Dump foi salvo no arquivo %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Você provavelmente tentou carregar um arquivo muito grande. Veja referências " "na %sdocumentation%s para burlar esses limites." @@ -1769,8 +1768,8 @@ msgstr "Bem vindo ao %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "A provável razão para isso é que você não criou o arquivo de configuração. " "Você deve usar o %1$ssetup script%2$s para criar um." @@ -4544,8 +4543,9 @@ msgid "Events" msgstr "Eventos" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nome" @@ -4768,8 +4768,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Esse valor é interpretado usando %1$sstrftime%2$s, então você pode usar as " "strings de formatação de tempo. Adicionalmente a seguinte transformação " @@ -5491,8 +5491,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8018,8 +8018,8 @@ msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela " "de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos " diff --git a/po/ro.po b/po/ro.po index 6d9749d264..eac0695b4c 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: romanian \n" -"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2);;\n" "X-Generator: Pootle 2.0.1\n" @@ -136,9 +136,8 @@ msgstr "Comentarii tabel" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -637,8 +636,8 @@ msgstr "Monitorizarea nu este activată" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s." @@ -888,11 +887,11 @@ msgstr "Copia a fost salvată în fișierul %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la " -"%sdocumentație%s pentru căi de ocolire a acestei limite." +"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la %" +"sdocumentație%s pentru căi de ocolire a acestei limite." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1841,8 +1840,8 @@ msgstr "Bine ați venit la %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Motivul probabil pentru aceasta este că nu ați creat un fișier de " "configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un " @@ -4658,8 +4657,9 @@ msgid "Events" msgstr "Evenimente" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nume" @@ -4888,12 +4888,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5644,8 +5644,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8177,8 +8177,8 @@ msgstr "Aruncă baza de date care are același nume ca utilizatorul." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de " "privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. " diff --git a/po/ru.po b/po/ru.po index 244bb4d43e..8913188533 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-06-01 22:34+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" -"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: ru\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -136,9 +136,8 @@ msgstr "Комментарий к таблице" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Поле" @@ -619,8 +618,8 @@ msgstr "Слежение выключено." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Данное представление имеет, по меньшей мере, указанное количество строк. " "Пожалуйста, обратитесь к %sдокументации%s." @@ -858,8 +857,8 @@ msgstr "Дамп был сохранен в файл %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Вероятно, размер загружаемого файла слишком велик. Способы обхода данного " "ограничения описаны в %sдокументации%s." @@ -1722,8 +1721,8 @@ msgstr "Добро пожаловать в %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Возможная причина - отсутствие файла конфигурации. Для его создания вы " "можете воспользоваться %1$sсценарием установки%2$s." @@ -4600,8 +4599,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Имя" @@ -4805,8 +4805,8 @@ msgstr ", @TABLE@ будет замещено именем таблицы" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна " "вставка текущей даты и времени. Дополнительно могут быть использованы " @@ -5541,8 +5541,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице " "PrimeBase XT%s." @@ -7955,8 +7955,8 @@ msgstr "Удалить базы данных, имена которых совп msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Примечание: phpMyAdmin получает информацию о пользовательских привилегиях " "непосредственно из таблиц привилегий MySQL. Содержимое этих таблиц может " @@ -9071,8 +9071,8 @@ msgid "" "Query statistics: Since its startup, %s queries have been sent to the " "server." msgstr "" -"Статистика запросов: со времени запуска, на сервер было отослано запросов - " -"%s." +"Статистика запросов: со времени запуска, на сервер было отослано запросов - %" +"s." #: server_status.php:626 msgid "per minute" @@ -9491,8 +9491,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"При необходимости используйте дополнительные настройки безопасности - " -"%sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, " +"При необходимости используйте дополнительные настройки безопасности - %" +"sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, " "защита по IP может быть ненадежной, если ваш IP не является выделенным и " "кроме вас принадлежит тысячам пользователей того же Интернет Провайдера." @@ -10251,8 +10251,8 @@ msgid "" "No themes support; please check your configuration and/or your themes in " "directory %s." msgstr "" -"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге " -"%s." +"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге %" +"s." #: themes.php:41 msgid "Get more themes!" diff --git a/po/si.po b/po/si.po index 7e769605a1..cd8d536f31 100644 --- a/po/si.po +++ b/po/si.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-05-13 17:05+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" -"Language: si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: si\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -132,9 +132,8 @@ msgstr "වගු විස්තර" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "තීර" @@ -611,8 +610,8 @@ msgstr "අවධානය අක්‍රීයයි." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්‍යනය කරන්න." @@ -854,11 +853,11 @@ msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකි #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1726,8 +1725,8 @@ msgstr "%s වෙත ආයුබෝවන්" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Probably reason of this is that you did not create configuration file. You " "might want to use %1$ssetup script%2$s to create one." @@ -4427,8 +4426,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "නම" @@ -4637,12 +4637,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5336,8 +5336,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6864,8 +6864,8 @@ msgid "" "Your preferences will be saved for current session only. Storing them " "permanently requires %sphpMyAdmin configuration storage%s." msgstr "" -"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා " -"%sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය." +"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා %" +"sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය." #: libraries/user_preferences.lib.php:142 msgid "Could not save configuration" @@ -7758,8 +7758,8 @@ msgstr "භාවිතා කරන්නන් හා සමාන නම් msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "සටහන: phpMyAdmin භාවිත කරන්නන්ගේ වරප්‍රසාද ලබාගනුයේ MySQL හි වරප්‍රසාද වගුවෙනි. " "සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " diff --git a/po/sk.po b/po/sk.po index ae314530e9..8c35a0bc6a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-05-30 13:03+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" -"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "Komentár k tabuľke" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Stĺpce" @@ -618,8 +617,8 @@ msgstr "Sledovanie nie je aktívne." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s." @@ -856,8 +855,8 @@ msgstr "Výpis bol uložený do súboru %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si " "prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť." @@ -1724,8 +1723,8 @@ msgstr "Vitajte v %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho " "vytvorenie môžete použiť %1$skonfiguračný skript%2$s." @@ -4540,8 +4539,9 @@ msgid "Events" msgstr "Udalosti" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Názov" @@ -4741,8 +4741,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Táto hodnota je interpretovaná pomocou %1$sstrftime%2$s, takže môžete použiť " "reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto " @@ -5425,8 +5425,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6618,8 +6618,8 @@ msgid "" "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" "SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú " -"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v " -"%sdocumentation%s." +"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %" +"sdocumentation%s." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -7768,13 +7768,13 @@ msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Poznámka: phpMyAdmin získava práva používateľov priamo z tabuliek MySQL. " "Obsah týchto tabuliek sa môže líšiť od práv, ktoré používa server, ak boli " -"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať " -"%sznovunačítanie práv%s predtým ako budete pokračovať." +"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať %" +"sznovunačítanie práv%s predtým ako budete pokračovať." #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." @@ -10095,8 +10095,8 @@ msgstr "Premenovať pohľad na" #~ msgid "Imported file compression will be automatically detected from: %s" #~ msgstr "" -#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: " -#~ "%s" +#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: %" +#~ "s" #~ msgid "Add into comments" #~ msgstr "Pridať do komentárov" diff --git a/po/sl.po b/po/sl.po index cc886c548f..398a68b18b 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-06-01 23:43+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" -"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3);\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "Pripomba tabele" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Stolpec" @@ -620,8 +619,8 @@ msgstr "Sledenje ni aktivno." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -857,8 +856,8 @@ msgstr "Dump je shranjen v datoteko %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si " "%sdokumentacijo%s za načine, kako obiti to omejitev." @@ -1720,8 +1719,8 @@ msgstr "Dobrodošli v %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite " "uporabiti %1$snastavitveni skript%2$s, da jo ustvarite." @@ -4565,8 +4564,9 @@ msgid "Events" msgstr "Dogodki" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Ime" @@ -4768,8 +4768,8 @@ msgstr ", @TABLE@ bo postalo ime tabele" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Vrednost je prevedena z uporabo %1$sstrftime%2$s, tako da lahko uporabljate " "nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. " @@ -5500,8 +5500,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači " "strani PrimeBase XT%s." @@ -7909,8 +7909,8 @@ msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Obvestilo: phpMyAdmin dobi podatke o uporabnikovih privilegijih iz tabel " "privilegijev MySQL. Vsebina teh tabel se lahko razlikuje od privilegijev, ki " diff --git a/po/sq.po b/po/sq.po index fc938fe229..3f806d5419 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: albanian \n" -"Language: sq\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -133,9 +133,8 @@ msgstr "Komentet e tabelës" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -634,8 +633,8 @@ msgstr "Gjurmimi nuk është aktiv." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -882,8 +881,8 @@ msgstr "Dump u ruajt tek file %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1815,8 +1814,8 @@ msgstr "Mirësevini tek %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4586,8 +4585,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Emri" @@ -4807,8 +4807,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5495,8 +5495,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7988,8 +7988,8 @@ msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Shënim: phpMyAdmin lexon të drejtat e përdoruesve direkt nga tabela e " "privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë prej të " diff --git a/po/sr.po b/po/sr.po index b9e11a4632..4fb8d44845 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-04-06 18:43+0200\n" "Last-Translator: \n" "Language-Team: serbian_cyrillic \n" -"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -134,9 +134,8 @@ msgstr "Коментари табеле" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Колона" @@ -631,8 +630,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -881,11 +880,11 @@ msgstr "Садржај базе је сачуван у датотеку %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте " -"%sдокументацију%s за начине превазилажења овог ограничења." +"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %" +"sдокументацију%s за начине превазилажења овог ограничења." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1836,8 +1835,8 @@ msgstr "Добродошли на %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Вероватан разлог за ово је да нисте направили конфигурациону датотеку. " "Можете користити %1$sскрипт за инсталацију%2$s да бисте је направили." @@ -4642,8 +4641,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Име" @@ -4873,8 +4873,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да " "користите стрингове за форматирање времена. Такође ће се десити и следеће " @@ -5596,8 +5596,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8111,8 +8111,8 @@ msgstr "Одбаци базе које се зову исто као корис msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Напомена: phpMyAdmin узима привилегије корисника директно из MySQL табела " "привилегија. Садржај ове табеле може се разликовати од привилегија које " diff --git a/po/sr@latin.po b/po/sr@latin.po index 19eb8cff63..c75563b2e8 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-12-02 14:49+0200\n" "Last-Translator: Sasa Kostic \n" "Language-Team: serbian_latin \n" -"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -136,9 +136,8 @@ msgstr "Komentari tabele" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Kolona" @@ -625,8 +624,8 @@ msgstr "Praćenje nije aktivno." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -875,11 +874,11 @@ msgstr "Sadržaj baze je sačuvan u datoteku %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte " -"%sdokumentaciju%s za načine prevazilaženja ovog ograničenja." +"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %" +"sdokumentaciju%s za načine prevazilaženja ovog ograničenja." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1830,8 +1829,8 @@ msgstr "Dobrodošli na %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. " "Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili." @@ -4635,8 +4634,9 @@ msgid "Events" msgstr "Događaji" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Ime" @@ -4866,8 +4866,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Ova vrednost se tumači korišćenjem %1$sstrftime%2$s, tako da možete da " "koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće " @@ -5589,8 +5589,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8100,8 +8100,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela " "privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje " diff --git a/po/sv.po b/po/sv.po index 722bee5857..c3b1d6e33b 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-05-30 20:24+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" -"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "Tabellkommentarer" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Kolumn" @@ -613,8 +612,8 @@ msgstr "Spårning är inte aktiv." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -850,8 +849,8 @@ msgstr "SQL-satserna har sparats till filen %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s " "för att gå runt denna begränsning." @@ -1711,11 +1710,11 @@ msgstr "Välkommen till %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda " -"%1$suppsättningsskript%2$s för att skapa denna." +"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda %1" +"$suppsättningsskript%2$s för att skapa denna." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4554,8 +4553,9 @@ msgid "Events" msgstr "Händelser" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Namn" @@ -4754,8 +4754,8 @@ msgstr ", @TABLE@ blir tabellnamnet" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Detta värde tolkas med %1$sstrftime%2$s, så du kan använda strängar med " "tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig " @@ -5480,11 +5480,11 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" -"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page" -"%s." +"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page%" +"s." #: libraries/engines/pbxt.lib.php:129 msgid "The PrimeBase XT Blog by Paul McCullagh" @@ -7167,8 +7167,8 @@ msgid "" "Your PHP MySQL library version %s differs from your MySQL server version %s. " "This may cause unpredictable behavior." msgstr "" -"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version " -"%s. Detta kan orsaka oförutsägbara beteenden." +"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %" +"s. Detta kan orsaka oförutsägbara beteenden." #: main.php:341 #, php-format @@ -7884,8 +7884,8 @@ msgstr "Ta bort databaserna med samma namn som användarna." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Anm: phpMyAdmin hämtar användarnas privilegier direkt från MySQL:s " "privilegiumtabeller. Innehållet i dessa tabeller kan skilja sig från " @@ -9379,8 +9379,8 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - " -"%shost autentisering%s inställningarna och %strusted proxies listan%s. Dock " +"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - %" +"shost autentisering%s inställningarna och %strusted proxies listan%s. Dock " "kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP där " "tusentals användare, inklusive dig, är anslutna till" diff --git a/po/ta.po b/po/ta.po index c1e7cecd88..6c0487eecd 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-04-16 10:43+0200\n" "Last-Translator: Sutharshan \n" "Language-Team: Tamil \n" -"Language: ta\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" @@ -133,9 +133,8 @@ msgstr "" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "" @@ -614,8 +613,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -851,8 +850,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1732,8 +1731,8 @@ msgstr "" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "நீங்கள் அமைப்பு கோப்பை உருவாக்கவில்லை. அதை உருவாக்க நீங்கள் %1$s உருவாக்க கோவையை %2$s " "பயன்படுத்தலாம்" @@ -4389,8 +4388,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "" @@ -4587,8 +4587,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5240,8 +5240,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7487,8 +7487,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/te.po b/po/te.po index a603d10244..81a5e25c5a 100644 --- a/po/te.po +++ b/po/te.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-04-07 17:06+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" -"Language: te\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "పట్టిక వ్యాఖ్యలు" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Command" @@ -622,8 +621,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" # మొదటి అనువాదము @@ -863,8 +862,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1731,8 +1730,8 @@ msgstr "%sకి స్వాగతం" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4408,8 +4407,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "పేరు" @@ -4612,8 +4612,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5273,8 +5273,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7568,8 +7568,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/th.po b/po/th.po index 1bb9228796..198c4d127c 100644 --- a/po/th.po +++ b/po/th.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-03-12 09:19+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: thai \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: \n" "X-Generator: Translate Toolkit 1.5.3\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -131,9 +131,8 @@ msgstr "หมายเหตุของตาราง" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -620,8 +619,8 @@ msgstr "หยุดการติดตามแล้ว" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -860,8 +859,8 @@ msgstr "" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1789,8 +1788,8 @@ msgstr "%s ยินดีต้อนรับ" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4551,8 +4550,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "ชื่อ" @@ -4771,8 +4771,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5460,8 +5460,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7868,8 +7868,8 @@ msgstr "โยนฐานข้อมูลที่มีชื่อเดี msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 @@ -10035,8 +10035,8 @@ msgstr "เปลี่ยนชื่อตารางเป็น" #~ "The additional features for working with linked tables have been " #~ "deactivated. To find out why click %shere%s." #~ msgstr "" -#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere" -#~ "%s" +#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%" +#~ "s" #~ msgid "No tables" #~ msgstr "ไม่มีตาราง" diff --git a/po/tr.po b/po/tr.po index 5111144e67..2a46f4d2ac 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-05-19 21:59+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" -"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "Tablo yorumları" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Sütun" @@ -611,8 +610,8 @@ msgstr "İzleme aktif değil." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın." @@ -849,8 +848,8 @@ msgstr "Döküm, %s dosyasına kaydedildi." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu " "bulmak için %sbelgeden%s yararlanın." @@ -1224,8 +1223,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm " -"%s, %s tarihinde yayınlandı." +"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm %" +"s, %s tarihinde yayınlandı." #. l10n: Latest available phpMyAdmin version #: js/messages.php:128 @@ -1711,8 +1710,8 @@ msgstr "%s'e Hoş Geldiniz" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir " "tane oluşturmak için %1$skur programcığı%2$s kullanmak isteyebilirsiniz." @@ -4586,8 +4585,9 @@ msgid "Events" msgstr "Olaylar" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Adı" @@ -4789,8 +4789,8 @@ msgstr ", @TABLE@ tablo adı olacaktır" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman " "biçimlendirme dizgisi kullanabilirsiniz. İlave olarak aşağıdaki dönüşümler " @@ -5523,8 +5523,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" "%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belge ve daha fazla bilgi " "bulunabilir." @@ -7937,8 +7937,8 @@ msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Not: phpMyAdmin kullanıcıların yetkilerini doğrudan MySQL'in yetki " "tablolarından alır. Bu tabloların içerikleri, eğer elle değiştirildiyse " @@ -9437,9 +9437,9 @@ msgid "" "protection may not be reliable if your IP belongs to an ISP where thousands " "of users, including you, are connected to." msgstr "" -"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- " -"%sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi" -"%s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " +"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- %" +"sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi%s. " +"Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce " "kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir." #: setup/lib/index.lib.php:268 @@ -9454,8 +9454,8 @@ msgstr "" "[kbd]Yapılandırma[/kbd] kimlik doğrulaması türünü ayarladınız ve buna " "otomatik oturum açma için kullanıcı adı ve parola dahildir, canlı " "anamakineler için istenmeyen bir seçenektir. phpMyAdmin URL'nizi bilen veya " -"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. " -"%sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/" +"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. %" +"sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/" "kbd] olarak ayarlayın." #: setup/lib/index.lib.php:270 diff --git a/po/tt.po b/po/tt.po index c106d4b8d4..945e60dbe6 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: tatarish \n" -"Language: tt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: tt\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -133,9 +133,8 @@ msgstr "Tüşämä açıqlaması" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -631,8 +630,8 @@ msgstr "" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -882,8 +881,8 @@ msgstr "Eçtälege \"%s\" biremenä saqlandı." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1820,8 +1819,8 @@ msgstr "%s siña İsäñme di" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4617,8 +4616,9 @@ msgid "Events" msgstr "Cibärelde" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Adı" @@ -4842,8 +4842,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5549,8 +5549,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6798,8 +6798,8 @@ msgid "" "The SQL validator could not be initialized. Please check if you have " "installed the necessary PHP extensions as described in the %sdocumentation%s." msgstr "" -"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında " -"%squllanmada%s uqıp bula." +"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında %" +"squllanmada%s uqıp bula." #: libraries/tbl_links.inc.php:106 libraries/tbl_links.inc.php:107 msgid "Table seems to be empty!" @@ -8036,8 +8036,8 @@ msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Beläse: MySQL-serverneñ eçke tüşämä eçennän alınğan xoquqlar bu. Server " "qullana torğan xoquqlar qul aşa üzgärtelgän bulsa, bu tüşämä eçtälege " diff --git a/po/ug.po b/po/ug.po index c5b4473661..c09eb8d954 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-08-26 11:59+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" -"Language: ug\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -135,9 +135,8 @@ msgstr "جەدۋەل ئىزاھى" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "سۆزلەم" @@ -346,8 +345,8 @@ msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " -"%sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" +"sبۇ يەرنى كۆرۈڭ%s." #: db_operations.php:600 #, fuzzy @@ -616,8 +615,8 @@ msgstr "ئىزلاش ئاكتىپ ئەمەس" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s." #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -855,8 +854,8 @@ msgstr "%s ھۆججىتىدە ساقلاندى." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش " "چارىسىنى كۆرۈڭ." @@ -1748,11 +1747,11 @@ msgstr "%s خۇش كەلدىڭىز" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." #: libraries/auth/config.auth.lib.php:115 msgid "" @@ -4449,8 +4448,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "ئىسمى" @@ -4670,8 +4670,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5351,8 +5351,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6929,8 +6929,8 @@ msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." msgstr "" -"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن " -"%sبۇ يەرنى كۆرۈڭ%s." +"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %" +"sبۇ يەرنى كۆرۈڭ%s." #: main.php:314 msgid "" @@ -7666,8 +7666,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/uk.po b/po/uk.po index 66d9672c51..5860e4d970 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,16 +3,16 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-12-28 22:26+0200\n" "Last-Translator: Olexiy Zagorskyi \n" "Language-Team: ukrainian \n" -"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"Language: uk\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -134,9 +134,8 @@ msgstr "Коментар до таблиці" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "Стовпчик" @@ -616,8 +615,8 @@ msgstr "Трекінг не активний." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -857,8 +856,8 @@ msgstr "Dump збережено у файл %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1700,8 +1699,8 @@ msgstr "Ласкаво просимо до %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" #: libraries/auth/config.auth.lib.php:115 @@ -4363,8 +4362,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Назва" @@ -4563,8 +4563,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5238,8 +5238,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -6519,8 +6519,8 @@ msgid "" "For a list of available transformation options and their MIME type " "transformations, click on %stransformation descriptions%s" msgstr "" -"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть " -"%sописи перетворень%s" +"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %" +"sописи перетворень%s" #: libraries/tbl_properties.inc.php:143 msgid "Transformation options" @@ -7666,8 +7666,8 @@ msgstr "Усунути бази даних, які мають такі ж наз msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "Примітка: phpMyAdmin отримує права користувачів безпосередньо з таблиці прав " "MySQL. Зміст цієї таблиці може відрізнятися від прав, які використовуються " diff --git a/po/ur.po b/po/ur.po index 27960b7f39..59b5ee41d2 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-04-23 08:37+0200\n" "Last-Translator: Mehbooob Khan \n" "Language-Team: Urdu \n" -"Language: ur\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" @@ -138,9 +138,8 @@ msgstr "جدول تبصرے" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Command" @@ -620,8 +619,8 @@ msgstr "کھوج غیر فعال ہے۔" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s." @@ -862,11 +861,11 @@ msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے " -"%sdocumentation%s دیکھیں۔" +"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے %" +"sdocumentation%s دیکھیں۔" #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1242,8 +1241,8 @@ msgid "" "A newer version of phpMyAdmin is available and you should consider " "upgrading. The newest version is %s, released on %s." msgstr "" -"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ " -"%s, جاری کیا گیا %s." +"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ %" +"s, جاری کیا گیا %s." #. l10n: Latest available phpMyAdmin version #: js/messages.php:128 @@ -1732,8 +1731,8 @@ msgstr "%s میں خوش آمدید" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "آپ نے شاید تشکیل مسل نہیں بنایا۔ آپ ہوسکتا ہے کہ %1$ssetup script%2$s کو " "استعمال کرتے ہوئے بنانا چاہتے ہیں۔" @@ -1953,8 +1952,8 @@ msgstr "" "phpMyAdmin آپ کی تشکیل مسل مطالعہ نہیں کرسکا!
یہ اس لیے بھی ہوسکتا ہے " "اگر PHP کو کوئی تجزیاتی نقص ملا یا PHP کو مسل نہیں ملا۔
نیچے دیے گئے " "ربط سے تشکیل مسل کوبراہ راست استعمال کریں اور وصول ہونے والے PHP نقص " -"پیغامات کا مطالعہ کریں۔ عام طور پر ایک کوٹ یا سیمی کولن ہی کہیں غائب ہوتا ہے۔" -"
اگر آپ کو ایک خالی صفحہ ملے تو سب ٹھیک ہے۔" +"پیغامات کا مطالعہ کریں۔ عام طور پر ایک کوٹ یا سیمی کولن ہی کہیں غائب ہوتا " +"ہے۔
اگر آپ کو ایک خالی صفحہ ملے تو سب ٹھیک ہے۔" #: libraries/common.inc.php:586 #, php-format @@ -4492,8 +4491,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "" @@ -4702,8 +4702,8 @@ msgstr "" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" #: libraries/display_export.lib.php:275 @@ -5361,8 +5361,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -7654,8 +7654,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" #: server_privileges.php:1764 diff --git a/po/uz.po b/po/uz.po index 93bb6bccfb..3a642588dd 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_cyrillic \n" -"Language: uz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -134,9 +134,8 @@ msgstr "Жадвал изоҳи" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -636,8 +635,8 @@ msgstr "Кузатиш фаол эмас." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот " "учун %sдокументацияга%s қаранг." @@ -881,11 +880,11 @@ msgstr "Дамп \"%s\" файлида сақланди." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" -"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари " -"%sдокументацияда%s келтирилган." +"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %" +"sдокументацияда%s келтирилган." #: import.php:278 import.php:331 libraries/File.class.php:501 #: libraries/File.class.php:611 @@ -1864,8 +1863,8 @@ msgstr "\"%s\" дастурига хуш келибсиз" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Эҳтимол, конфигурация файли тузилмаган. Уни тузиш учун %1$ssўрнатиш " "сценарийсидан%2$s фойдаланишингиз мумкин." @@ -4173,8 +4172,8 @@ msgstr "\"config\" аутентификация усули пароли" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: " -"[kbd]\"pma_pdf_pages\"[/kbd]" +"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]" +"\"pma_pdf_pages\"[/kbd]" #: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" @@ -4282,8 +4281,8 @@ msgstr "SSL уланишдан фойдаланиш" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: " -"[kbd]\"pma_table_coords\"[/kbd]" +"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]" +"\"pma_table_coords\"[/kbd]" #: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" @@ -4890,8 +4889,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Номи" @@ -5127,12 +5127,12 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги " -"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: " -"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." +"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %" +"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади." #: libraries/display_export.lib.php:275 msgid "use this for future exports" @@ -5893,8 +5893,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8482,8 +8482,8 @@ msgstr "Фойдаланувчилар номлари билан аталган msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "ИЗОҲ: phpMyAdmin фойдаланувчилар привилегиялари ҳақидаги маълумотларни " "тўғридан-тўғри MySQL привилегиялари жадвалидан олади. Ушбу жадвалдаги " @@ -9244,8 +9244,8 @@ msgstr "Очиқ файллар сони." #: server_status.php:121 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen" -"()\" функцияси ёрдамида очилган файлга айтилади." +"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()" +"\" функцияси ёрдамида очилган файлга айтилади." #: server_status.php:122 msgid "The number of tables that are open." @@ -10074,9 +10074,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " diff --git a/po/uz@latin.po b/po/uz@latin.po index 5a67f8f78a..1e7958be15 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_latin \n" -"Language: uz@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: uz@latin\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" @@ -135,9 +135,8 @@ msgstr "Jadval izohi" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 #, fuzzy #| msgid "Column names" @@ -638,8 +637,8 @@ msgstr "Kuzatish faol emas." #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "" "Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil " "ma`lumot uchun %sdokumentatsiyaga%s qarang." @@ -883,8 +882,8 @@ msgstr "Damp \"%s\" faylida saqlandi." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "" "Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning " "usullari %sdokumentatsiyada%s keltirilgan." @@ -1870,8 +1869,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$sso‘rnatish " "ssenariysidan%2$s foydalanishingiz mumkin." @@ -4096,9 +4095,9 @@ msgid "" "More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug " "tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]" msgstr "" -"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?" -"aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql." -"com/19588]\"MySQL Bugs\"[/a]larga qarang" +"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?aid=1849494]" +"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]" +"larga qarang" #: libraries/config/messages.inc.php:385 msgid "Disable use of INFORMATION_SCHEMA" @@ -4188,8 +4187,8 @@ msgstr "\"config\" autentifikatsiya usuli paroli" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgstr "" -"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: " -"[kbd]\"pma_pdf_pages\"[/kbd]" +"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: [kbd]" +"\"pma_pdf_pages\"[/kbd]" #: libraries/config/messages.inc.php:402 msgid "PDF schema: pages table" @@ -4203,8 +4202,8 @@ msgid "" msgstr "" "Aloqalar, xatcho‘plar va PDF imkoniyatlari uchun ishlatiladigan baza. " "Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]" -"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: " -"[kbd]\"phpmyadmin\"[/kbd]" +"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]" +"\"phpmyadmin\"[/kbd]" #: libraries/config/messages.inc.php:404 #, fuzzy @@ -4297,8 +4296,8 @@ msgstr "SSL ulanishdan foydalanish" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]" msgstr "" -"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: " -"[kbd]\"pma_table_coords\"[/kbd]" +"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]" +"\"pma_table_coords\"[/kbd]" #: libraries/config/messages.inc.php:421 msgid "PDF schema: table coordinates" @@ -4911,8 +4910,9 @@ msgid "Events" msgstr "Hodisalar" #: 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "Nomi" @@ -4953,8 +4953,8 @@ msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" msgstr "" -"Taxminiy bo‘lishi mumkin. [a@./Documentation." -"html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang" +"Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]" +"\"FAQ 3.11\"[/a]ga qarang" #: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122 msgid "Connection for controluser as defined in your configuration failed." @@ -5148,8 +5148,8 @@ msgstr "" #| "happen: %3$s. Other text will be kept as is." msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun " "hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar " @@ -5919,8 +5919,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "" #: libraries/engines/pbxt.lib.php:129 @@ -8526,8 +8526,8 @@ msgstr "" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni " "to‘g‘ridan-to‘g‘ri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi " @@ -10136,9 +10136,9 @@ msgstr "" #| "You set the [kbd]config[/kbd] authentication type and included username " #| "and password for auto-login, which is not a desirable option for live " #| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly " -#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=" -#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http" -#| "[/kbd]." +#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1" +#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/" +#| "kbd]." msgid "" "You set the [kbd]config[/kbd] authentication type and included username and " "password for auto-login, which is not a desirable option for live hosts. " @@ -10152,9 +10152,9 @@ msgstr "" "real xostlar uchun tavsiya etilmaydi. Serverdagi phpMyAdmin turgan katalog " "adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, " "serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga " -"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=" -"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http" -"[/kbd] deb belgilash tavsiya etiladi." +"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=%1" +"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/" +"kbd] deb belgilash tavsiya etiladi." #: setup/lib/index.lib.php:270 #, fuzzy, php-format @@ -10333,8 +10333,8 @@ msgid "" "The result of this query can't be used for a chart. See [a@./Documentation." "html#faq6_29@Documentation]FAQ 6.29[/a]" msgstr "" -"Taxminiy bo‘lishi mumkin. [a@./Documentation." -"html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang" +"Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]" +"\"FAQ 3.11\"[/a]ga qarang" #: tbl_chart.php:90 msgid "Width" diff --git a/po/zh_CN.po b/po/zh_CN.po index bce3e9b540..997317efc2 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,14 +3,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-05-30 05:47+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" -"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" @@ -132,9 +132,8 @@ msgstr "表注释" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "字段" @@ -606,8 +605,8 @@ msgstr "追踪已禁用。" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "该视图最少包含的行数,参见%s文档%s。" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -841,8 +840,8 @@ msgstr "转存已经保存到文件 %s 中。" #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。" #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1684,8 +1683,8 @@ msgstr "欢迎使用 %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "你可能还没有创建配置文件。你可以使用 %1$s设置脚本%2$s 来创建一个配置文件。" @@ -4425,8 +4424,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "名字" @@ -4624,8 +4624,8 @@ msgstr ",@TABLE@ 将变成数据表名" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下" "列内容也将被转换:%3$s。其他文本将保持原样。参见%4$s常见问题 (FAQ)%5$s。" @@ -5309,8 +5309,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。" #: libraries/engines/pbxt.lib.php:129 @@ -7624,12 +7624,12 @@ msgstr "删除与用户同名的数据库。" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "注意:phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容" -"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" -"限%s。" +"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%" +"s。" #: server_privileges.php:1764 msgid "The selected user was not found in the privilege table." diff --git a/po/zh_TW.po b/po/zh_TW.po index 05bf707131..89daabdbeb 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-06-02 11:48+0200\n" +"POT-Creation-Date: 2011-06-02 11:25-0400\n" "PO-Revision-Date: 2011-05-30 04:51+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" -"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #: browse_foreigners.php:35 browse_foreigners.php:53 @@ -130,9 +130,8 @@ msgstr "表註釋" #: libraries/export/odt.php:301 libraries/export/texytext.php:226 #: libraries/schema/Pdf_Relation_Schema.class.php:1239 #: libraries/schema/Pdf_Relation_Schema.class.php:1260 -#: libraries/tbl_properties.inc.php:98 libraries/tbl_properties.inc.php:273 -#: tbl_change.php:309 tbl_indexes.php:187 tbl_printview.php:139 -#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198 +#: libraries/tbl_properties.inc.php:273 tbl_change.php:309 tbl_indexes.php:187 +#: tbl_printview.php:139 tbl_relation.php:399 tbl_select.php:112 #: tbl_tracking.php:266 tbl_tracking.php:317 msgid "Column" msgstr "欄位" @@ -604,8 +603,8 @@ msgstr "追蹤已停用" #: 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" -"%s." +"This view has at least this number of rows. Please refer to %sdocumentation%" +"s." msgstr "這個檢視至少需包含這個數目的資料,請參考%sdocumentation%s。" #: db_structure.php:393 db_structure.php:407 libraries/header.inc.php:152 @@ -839,8 +838,8 @@ msgstr "備份資料已儲存至檔案 %s." #: import.php:58 #, php-format msgid "" -"You probably tried to upload too large file. Please refer to %sdocumentation" -"%s for ways to workaround this limit." +"You probably tried to upload too large file. Please refer to %sdocumentation%" +"s for ways to workaround this limit." msgstr "您上傳的檔案過大, 請查看此 %s 文件 %s 了解如何解決此限制." #: import.php:278 import.php:331 libraries/File.class.php:501 @@ -1684,8 +1683,8 @@ msgstr "歡迎使用 %s" #: libraries/auth/config.auth.lib.php:106 #, php-format msgid "" -"You probably did not create a configuration file. You might want to use the " -"%1$ssetup script%2$s to create one." +"You probably did not create a configuration file. You might want to use the %" +"1$ssetup script%2$s to create one." msgstr "" "您可能還沒有建立設定檔案。您可以使用 %1$s設定指令%2$s 來建立一個設定檔案" @@ -4450,8 +4449,9 @@ msgid "Events" 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 +#: libraries/display_create_table.lib.php:51 +#: libraries/tbl_properties.inc.php:98 libraries/tbl_triggers.lib.php:26 +#: setup/frames/index.inc.php:125 tbl_structure.php:198 msgid "Name" msgstr "名字" @@ -4651,8 +4651,8 @@ msgstr ",@TABLE@ 將變成資料資料表名稱" #, php-format msgid "" "This value is interpreted using %1$sstrftime%2$s, so you can use time " -"formatting strings. Additionally the following transformations will happen: " -"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." +"formatting strings. Additionally the following transformations will happen: %" +"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details." msgstr "" "這個值是使用 %1$sstrftime%2$s 來解析的,所以您能用時間格式的字元串。另外,下" "列內容也將被轉換:%3$s。其他文字將保持原樣。參見%4$s常見問題 (FAQ)%5$s" @@ -5358,8 +5358,8 @@ msgstr "" #: libraries/engines/pbxt.lib.php:125 #, php-format msgid "" -"Documentation and further information about PBXT can be found on the " -"%sPrimeBase XT Home Page%s." +"Documentation and further information about PBXT can be found on the %" +"sPrimeBase XT Home Page%s." msgstr "關於 PBXT 的檔案和更多資訊請參見 %sPrimeBase XT 首頁%s" #: libraries/engines/pbxt.lib.php:129 @@ -7694,8 +7694,8 @@ msgstr "刪除與使用者同名的資料庫" msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " "tables. The content of these tables may differ from the privileges the " -"server uses, if they have been changed manually. In this case, you should " -"%sreload the privileges%s before you continue." +"server uses, if they have been changed manually. In this case, you should %" +"sreload the privileges%s before you continue." msgstr "" "注意:phpMyAdmin 直接由 MySQL 權限表取得使用者權限。如果使用者手動更改表,表" "內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入" 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 d94a97f056..41e5b9d7b1 100644 --- a/tbl_structure.php +++ b/tbl_structure.php @@ -195,7 +195,7 @@ $i = 0; # - + diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index 406dc9d8e9..932081ab33 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -833,6 +833,7 @@ div#tablestatistics { div#tablestatistics table { float: ; + margin-top: 0.5em; margin-bottom: 0.5em; margin-: 0.5em; } @@ -1771,3 +1772,102 @@ fieldset .disabled-field td { -webkit-box-sizing: border-box; } +.CodeMirror { + line-height: 1em; + font-family: monospace; + background: white; + border: 1px solid black; +} + +.CodeMirror-scroll { + height: em; + overflow: auto; +} + +.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 a6bbf7bcb2..584d4f5eef 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -1022,22 +1022,13 @@ form.clock { /* table stats */ -div#tablestatistics { - border-bottom: 0.1em solid #669999; - margin-bottom: 0.5em; - padding-bottom: 0.5em; -} - div#tablestatistics table { float: ; margin-bottom: 0.5em; - margin-: 0.5em; - width:99%; + margin-: 1.5em; + margin-top: 0.5em; } -div#tablestatistics table caption { - margin-: 0.5em; -} /* END table stats */ @@ -2128,3 +2119,102 @@ fieldset .disabled-field td { margin: 0 6px; } +.CodeMirror { + line-height: 1em; + font-family: monospace; + background: white; + border: 1px solid black; +} + +.CodeMirror-scroll { + overflow: auto; + 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: ; +}