Merge branch 'master' into OOP_DBI
Conflicts: libraries/database_interface.lib.php
This commit is contained in:
commit
2baf473ad7
@ -20,9 +20,10 @@ phpMyAdmin - ChangeLog
|
||||
- bug #3941 Recent tables list always empty
|
||||
- bug #3933 Do not translate "Open Document" in export settings
|
||||
- bug #3927 List of tables is missing after expanding in the navigation frame
|
||||
- bug #3942 Warnings about reserved word for many non reserved words
|
||||
- bug #3942 Warnings about reserved word for many non reserved words
|
||||
- bug #3912 Exporting row selection, resulted by ORDER BY query
|
||||
|
||||
4.0.2.0 (not yet released)
|
||||
4.0.2.0 (2013-05-24)
|
||||
- bug #3902 Cannot browse when table name contains keyword "call"
|
||||
+ center loading indicator for navigation refresh, related to bug #3920
|
||||
- bug #3925 Table sorting in navigation panel is case-sensitive
|
||||
|
||||
@ -136,7 +136,7 @@ var AJAX = {
|
||||
return true;
|
||||
} else if (href && href.match(/^mailto/)) {
|
||||
return true;
|
||||
} else if ($(this).hasClass('ui-datepicker-next') ||
|
||||
} else if ($(this).hasClass('ui-datepicker-next') ||
|
||||
$(this).hasClass('ui-datepicker-prev')
|
||||
) {
|
||||
return true;
|
||||
@ -255,6 +255,7 @@ var AJAX = {
|
||||
$('#page_content').replaceWith(
|
||||
"<div id='page_content'>" + data.message + "</div>"
|
||||
);
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
}
|
||||
|
||||
if (data._selflink) {
|
||||
@ -277,6 +278,7 @@ var AJAX = {
|
||||
}
|
||||
if (data._displayMessage) {
|
||||
$('#page_content').prepend(data._displayMessage);
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
}
|
||||
|
||||
$('#pma_errors').remove();
|
||||
|
||||
56
js/codemirror/addon/runmode/runmode.js
vendored
Normal file
56
js/codemirror/addon/runmode/runmode.js
vendored
Normal file
@ -0,0 +1,56 @@
|
||||
CodeMirror.runMode = function(string, modespec, callback, options) {
|
||||
var mode = CodeMirror.getMode(CodeMirror.defaults, modespec);
|
||||
var ie = /MSIE \d/.test(navigator.userAgent);
|
||||
var ie_lt9 = ie && (document.documentMode == null || document.documentMode < 9);
|
||||
|
||||
if (callback.nodeType == 1) {
|
||||
var tabSize = (options && options.tabSize) || CodeMirror.defaults.tabSize;
|
||||
var node = callback, col = 0;
|
||||
node.innerHTML = "";
|
||||
callback = function(text, style) {
|
||||
if (text == "\n") {
|
||||
// Emitting LF or CRLF on IE8 or earlier results in an incorrect display.
|
||||
// Emitting a carriage return makes everything ok.
|
||||
node.appendChild(document.createTextNode(ie_lt9 ? '\r' : text));
|
||||
col = 0;
|
||||
return;
|
||||
}
|
||||
var content = "";
|
||||
// replace tabs
|
||||
for (var pos = 0;;) {
|
||||
var idx = text.indexOf("\t", pos);
|
||||
if (idx == -1) {
|
||||
content += text.slice(pos);
|
||||
col += text.length - pos;
|
||||
break;
|
||||
} else {
|
||||
col += idx - pos;
|
||||
content += text.slice(pos, idx);
|
||||
var size = tabSize - col % tabSize;
|
||||
col += size;
|
||||
for (var i = 0; i < size; ++i) content += " ";
|
||||
pos = idx + 1;
|
||||
}
|
||||
}
|
||||
|
||||
if (style) {
|
||||
var sp = node.appendChild(document.createElement("span"));
|
||||
sp.className = "cm-" + style.replace(/ +/g, " cm-");
|
||||
sp.appendChild(document.createTextNode(content));
|
||||
} else {
|
||||
node.appendChild(document.createTextNode(content));
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
var lines = CodeMirror.splitLines(string), state = CodeMirror.startState(mode);
|
||||
for (var i = 0, e = lines.length; i < e; ++i) {
|
||||
if (i) callback("\n");
|
||||
var stream = new CodeMirror.StringStream(lines[i]);
|
||||
while (!stream.eol()) {
|
||||
var style = mode.token(stream, state);
|
||||
callback(stream.current(), style, i, stream.start);
|
||||
stream.start = stream.pos;
|
||||
}
|
||||
}
|
||||
};
|
||||
@ -1352,6 +1352,7 @@ AJAX.registerOnload('functions.js', function () {
|
||||
var $form = $(this).prev('form');
|
||||
var sql_query = $form.find("input[name='sql_query']").val();
|
||||
var $inner_sql = $(this).parent().prev().find('.inner_sql');
|
||||
var $sql_highlight = $(this).parent().prev().find('.sql-highlight');
|
||||
var old_text = $inner_sql.html();
|
||||
|
||||
var new_content = "<textarea name=\"sql_query_edit\" id=\"sql_query_edit\">" + sql_query + "</textarea>\n";
|
||||
@ -1364,6 +1365,7 @@ AJAX.registerOnload('functions.js', function () {
|
||||
}
|
||||
$editor_area.html(new_content);
|
||||
$inner_sql.hide();
|
||||
$sql_highlight.hide();
|
||||
|
||||
bindCodeMirrorToInlineEditor();
|
||||
return false;
|
||||
@ -1387,8 +1389,8 @@ AJAX.registerOnload('functions.js', function () {
|
||||
|
||||
$("input#sql_query_edit_discard").live('click', function () {
|
||||
$('div#inline_editor_outer')
|
||||
.empty()
|
||||
.siblings('.inner_sql').show();
|
||||
.siblings('.sql-highlight').show();
|
||||
$('div#inline_editor_outer').remove();
|
||||
});
|
||||
|
||||
$('input.sqlbutton').click(function (evt) {
|
||||
@ -1486,6 +1488,25 @@ function catchKeypressesFromSqlTextboxes(event) {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Higlights SQL using CodeMirror.
|
||||
*/
|
||||
function PMA_highlightSQL(base)
|
||||
{
|
||||
var $elm = base.find('code.sql');
|
||||
$elm.each(function () {
|
||||
var $sql = $(this);
|
||||
var $pre = $sql.find('pre');
|
||||
/* We only care about visible elements to avoid double processing */
|
||||
if ($pre.is(":visible")) {
|
||||
var $highlight = $('<div class="sql-highlight cm-s-default"></div>');
|
||||
$sql.append($highlight);
|
||||
CodeMirror.runMode($sql.text(), 'text/x-mysql', $highlight[0]);
|
||||
$pre.hide();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Show a message on the top of the page for an Ajax request
|
||||
*
|
||||
@ -1597,6 +1618,7 @@ function PMA_ajaxShowMessage(message, timeout)
|
||||
PMA_messages.strDismiss
|
||||
);
|
||||
}
|
||||
PMA_highlightSQL($retval);
|
||||
|
||||
return $retval;
|
||||
}
|
||||
@ -2117,6 +2139,7 @@ AJAX.registerOnload('functions.js', function () {
|
||||
$.post($form.attr('action'), $form.serialize() + "&submit_num_fields=1", function (data) {
|
||||
if (data.success) {
|
||||
$("#page_content").html(data.message);
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
PMA_verifyColumnsProperties();
|
||||
PMA_ajaxRemoveMessage($msgbox);
|
||||
} else {
|
||||
@ -2225,6 +2248,7 @@ AJAX.registerOnload('functions.js', function () {
|
||||
PMA_commonParams.set('table', tbl);
|
||||
PMA_commonActions.refreshMain(false, function () {
|
||||
$('#page_content').html(data.message);
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
});
|
||||
} else {
|
||||
PMA_ajaxShowMessage(data.error, false);
|
||||
@ -2255,6 +2279,7 @@ AJAX.registerOnload('functions.js', function () {
|
||||
PMA_ajaxShowMessage(data.message);
|
||||
$("<div id='sqlqueryresults' class='ajax'></div>").prependTo("#page_content");
|
||||
$("#sqlqueryresults").html(data.sql_query);
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
scrollToTop();
|
||||
} else if (data.success === true) {
|
||||
var $temp_div = $("<div id='temp_div'></div>");
|
||||
@ -2263,6 +2288,7 @@ AJAX.registerOnload('functions.js', function () {
|
||||
PMA_ajaxShowMessage($success);
|
||||
$("<div id='sqlqueryresults' class='ajax'></div>").prependTo("#page_content");
|
||||
$("#sqlqueryresults").html(data.message);
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
PMA_init_slider();
|
||||
$("#sqlqueryresults").children("fieldset,br").remove();
|
||||
scrollToTop();
|
||||
@ -2407,6 +2433,7 @@ AJAX.registerOnload('functions.js', function () {
|
||||
$.post($the_form.attr('action'), $the_form.serialize() + '&change_pw=' + this_value, function (data) {
|
||||
if (data.success === true) {
|
||||
$("#page_content").prepend(data.message);
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
$("#change_password_dialog").hide().remove();
|
||||
$("#edit_user_dialog").dialog("close").remove();
|
||||
PMA_ajaxRemoveMessage($msgbox);
|
||||
@ -2817,6 +2844,7 @@ function indexEditorDialog(url, title, callback_success, callback_failure)
|
||||
$('<div id="result_query"></div>')
|
||||
.html(data.sql_query)
|
||||
.prependTo('#page_content');
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
}
|
||||
$("#result_query .notice").remove();
|
||||
$("#result_query").prepend(data.message);
|
||||
@ -3421,6 +3449,7 @@ AJAX.registerOnload('functions.js', function () {
|
||||
PMA_ajaxShowMessage(data.message);
|
||||
$("<div id='sqlqueryresults'></div>").prependTo("#page_content");
|
||||
$("#sqlqueryresults").html(data.sql_query);
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
} else {
|
||||
PMA_ajaxShowMessage(data.error, false);
|
||||
}
|
||||
@ -3454,6 +3483,7 @@ AJAX.registerOnload('functions.js', function () {
|
||||
$elm.focus().bind('keydown', catchKeypressesFromSqlTextboxes);
|
||||
}
|
||||
}
|
||||
PMA_highlightSQL($('body'));
|
||||
});
|
||||
AJAX.registerTeardown('functions.js', function () {
|
||||
if (codemirror_editor) {
|
||||
|
||||
@ -159,6 +159,7 @@ AJAX.registerOnload('indexes.js', function () {
|
||||
$('<div id="result_query"></div>')
|
||||
.html(data.sql_query)
|
||||
.prependTo('#page_content');
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
}
|
||||
PMA_commonActions.refreshMain(false, function () {
|
||||
$("a.ajax[href^=#indexes]").click();
|
||||
|
||||
@ -101,6 +101,7 @@ function addUser($form)
|
||||
PMA_ajaxShowMessage(data.message);
|
||||
$("#result_query").remove();
|
||||
$('#page_content').prepend(data.sql_query);
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
$("#result_query").css({
|
||||
'margin-top' : '0.5em'
|
||||
});
|
||||
@ -234,6 +235,7 @@ AJAX.registerOnload('server_privileges.js', function () {
|
||||
.find("form[name=usersForm]")
|
||||
.append('<input type="hidden" name="ajax_request" value="true" />')
|
||||
.end();
|
||||
PMA_highlightSQL($div);
|
||||
displayPasswordGenerateButton();
|
||||
PMA_showHints($div);
|
||||
PMA_ajaxRemoveMessage($msgbox);
|
||||
@ -361,6 +363,8 @@ AJAX.registerOnload('server_privileges.js', function () {
|
||||
$div.empty();
|
||||
}
|
||||
$div.html(data.message);
|
||||
PMA_highlightSQL($div);
|
||||
var $div = $('#edit_user_dialog');
|
||||
displayPasswordGenerateButton();
|
||||
$(checkboxes_sel).trigger("change");
|
||||
PMA_ajaxRemoveMessage($msgbox);
|
||||
@ -430,6 +434,7 @@ AJAX.registerOnload('server_privileges.js', function () {
|
||||
if (data.sql_query) {
|
||||
$("#result_query").remove();
|
||||
$('#page_content').prepend(data.sql_query);
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
$("#result_query").css({
|
||||
'margin-top' : '0.5em'
|
||||
});
|
||||
|
||||
@ -304,6 +304,7 @@ AJAX.registerOnload('sql.js', function () {
|
||||
$('<div id="result_query"></div>')
|
||||
.html(data.sql_query)
|
||||
.prependTo('#page_content');
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
}
|
||||
});
|
||||
PMA_reloadNavigation();
|
||||
@ -635,4 +636,4 @@ function initProfilingTables()
|
||||
AJAX.registerOnload('sql.js', function () {
|
||||
makeProfilingChart();
|
||||
initProfilingTables();
|
||||
});
|
||||
});
|
||||
|
||||
@ -128,6 +128,7 @@ AJAX.registerOnload('tbl_select.js', function () {
|
||||
} else {
|
||||
$("#sqlqueryresults").html(data.error);
|
||||
}
|
||||
PMA_highlightSQL($('#sqlqueryresults'));
|
||||
}); // end $.post()
|
||||
});
|
||||
|
||||
|
||||
@ -85,6 +85,7 @@ AJAX.registerOnload('tbl_structure.js', function () {
|
||||
.append(data.message)
|
||||
.append(data.sql_query)
|
||||
.show();
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
$("#result_query .notice").remove();
|
||||
$form.remove();
|
||||
PMA_ajaxRemoveMessage($msg);
|
||||
@ -109,6 +110,7 @@ AJAX.registerOnload('tbl_structure.js', function () {
|
||||
$('<div id="change_column_dialog" class="margin"></div>')
|
||||
.html(data.message)
|
||||
.insertBefore('#page_content');
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
PMA_verifyColumnsProperties();
|
||||
} else {
|
||||
PMA_ajaxShowMessage(PMA_messages.strErrorProcessingRequest + " : " + data.error, false);
|
||||
@ -135,6 +137,7 @@ AJAX.registerOnload('tbl_structure.js', function () {
|
||||
.html(data.message)
|
||||
)
|
||||
.show();
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
PMA_verifyColumnsProperties();
|
||||
} else {
|
||||
$('#page_content').show();
|
||||
@ -180,6 +183,7 @@ AJAX.registerOnload('tbl_structure.js', function () {
|
||||
$('<div id="result_query"></div>')
|
||||
.html(data.sql_query)
|
||||
.prependTo('#page_content');
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
}
|
||||
toggleRowColors($curr_row.next());
|
||||
// Adjust the row numbers
|
||||
@ -235,6 +239,7 @@ AJAX.registerOnload('tbl_structure.js', function () {
|
||||
$('<div id="result_query"></div>')
|
||||
.html(data.sql_query)
|
||||
.prependTo('#page_content');
|
||||
PMA_highlightSQL($('#page_content'));
|
||||
}
|
||||
});
|
||||
PMA_reloadNavigation();
|
||||
|
||||
@ -1766,7 +1766,7 @@ class PMA_Config
|
||||
}
|
||||
|
||||
/**
|
||||
* sets cookie if value is different from current cokkie value,
|
||||
* sets cookie if value is different from current cookie value,
|
||||
* or removes if value is equal to default
|
||||
*
|
||||
* @param string $cookie name of cookie to remove
|
||||
|
||||
@ -356,6 +356,7 @@ class PMA_Header
|
||||
if ($GLOBALS['cfg']['CodemirrorEnable']) {
|
||||
$this->_scripts->addFile('codemirror/lib/codemirror.js');
|
||||
$this->_scripts->addFile('codemirror/mode/sql/sql.js');
|
||||
$this->_scripts->addFile('codemirror/addon/runmode/runmode.js');
|
||||
}
|
||||
if ($this->_userprefsOfferImport) {
|
||||
$this->_scripts->addFile('config.js');
|
||||
|
||||
@ -904,7 +904,7 @@ class PMA_Table
|
||||
}
|
||||
|
||||
/* Generate query back */
|
||||
$sql_structure = PMA_SQP_formatHtml($parsed_sql, 'query_only');
|
||||
$sql_structure = PMA_SQP_format($parsed_sql, 'query_only');
|
||||
// If table exists, and 'add drop table' is selected: Drop it!
|
||||
$drop_query = '';
|
||||
if (isset($_REQUEST['drop_if_exists'])
|
||||
@ -967,7 +967,7 @@ class PMA_Table
|
||||
}
|
||||
|
||||
// Generate query back
|
||||
$GLOBALS['sql_constraints_query'] = PMA_SQP_formatHtml(
|
||||
$GLOBALS['sql_constraints_query'] = PMA_SQP_format(
|
||||
$parsed_sql, 'query_only'
|
||||
);
|
||||
if ($mode == 'one_table') {
|
||||
|
||||
@ -405,10 +405,10 @@ class PMA_Util
|
||||
}
|
||||
break;
|
||||
case 'html':
|
||||
$formatted_sql = PMA_SQP_formatHtml($parsed_sql, 'color');
|
||||
$formatted_sql = PMA_SQP_format($parsed_sql, 'color');
|
||||
break;
|
||||
case 'text':
|
||||
$formatted_sql = PMA_SQP_formatHtml($parsed_sql, 'text');
|
||||
$formatted_sql = PMA_SQP_format($parsed_sql, 'text');
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
@ -4100,5 +4100,31 @@ class PMA_Util
|
||||
. PMA_Util::localisedDate(strtotime($table['Check_time']));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get regular expression which occur first inside the given sql query.
|
||||
*
|
||||
* @param Array $regex_array Comparing regular expressions.
|
||||
* @param String $query SQL query to be checked.
|
||||
*
|
||||
* @return String Matching regular expression.
|
||||
*/
|
||||
public static function getFirstOccuringRegularExpression($regex_array, $query)
|
||||
{
|
||||
$minimum_first_occurance_index = null;
|
||||
$regex = null;
|
||||
|
||||
for ($i = 0; $i < count($regex_array); $i++) {
|
||||
if (preg_match($regex_array[$i], $query, $matches, PREG_OFFSET_CAPTURE)) {
|
||||
if (is_null($minimum_first_occurance_index)
|
||||
|| ($matches[0][1] < $minimum_first_occurance_index)
|
||||
) {
|
||||
$regex = $regex_array[$i];
|
||||
$minimum_first_occurance_index = $matches[0][1];
|
||||
}
|
||||
}
|
||||
}
|
||||
return $regex;
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
@ -1063,7 +1063,9 @@ if (! defined('PMA_MINIMUM_COMMON')) {
|
||||
}
|
||||
$scripts->addFile('jqplot/jquery.jqplot.js');
|
||||
$scripts->addFile('jqplot/plugins/jqplot.pieRenderer.js');
|
||||
$scripts->addFile('jqplot/plugins/jqplot.highlighter.js');
|
||||
$scripts->addFile('canvg/canvg.js');
|
||||
$scripts->addFile('jquery/jquery.tablesorter.js');
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
@ -2764,7 +2764,7 @@ $cfg['SQP'] = array();
|
||||
*
|
||||
* @global string $cfg['SQP']['fmtType']
|
||||
*/
|
||||
$cfg['SQP']['fmtType'] = 'html';
|
||||
$cfg['SQP']['fmtType'] = 'none';
|
||||
|
||||
/**
|
||||
* Amount to indent each level (floats are valid)
|
||||
|
||||
@ -43,7 +43,7 @@ abstract class SQLTransformationsPlugin extends TransformationsPlugin
|
||||
*/
|
||||
public function applyTransformation($buffer, $options = array(), $meta = '')
|
||||
{
|
||||
$result = PMA_SQP_formatHtml(PMA_SQP_parse($buffer));
|
||||
$result = PMA_SQP_format(PMA_SQP_parse($buffer));
|
||||
// Need to clear error state not to break subsequent queries display.
|
||||
PMA_SQP_resetError();
|
||||
return $result;
|
||||
@ -78,4 +78,4 @@ abstract class SQLTransformationsPlugin extends TransformationsPlugin
|
||||
return "SQL";
|
||||
}
|
||||
}
|
||||
?>
|
||||
?>
|
||||
|
||||
@ -1358,7 +1358,10 @@ function PMA_RTN_handleExecute()
|
||||
|
||||
// Pass the SQL queries through the "pretty printer"
|
||||
$output = '<code class="sql" style="margin-bottom: 1em;">';
|
||||
$output .= PMA_SQP_formatHtml(PMA_SQP_parse(implode($queries)));
|
||||
$output .= PMA_SQP_format(
|
||||
PMA_SQP_parse(implode($queries)),
|
||||
'text'
|
||||
);
|
||||
$output .= '</code>';
|
||||
|
||||
// Display results
|
||||
|
||||
@ -593,9 +593,8 @@ EOT;
|
||||
$profiling_table .= '<div id="profilingchart" style="display:none;">';
|
||||
$profiling_table .= '</div>';
|
||||
$profiling_table .= '<script type="text/javascript">';
|
||||
$profiling_table .= 'if($.jqplot !== undefined && $.jqplot.PieRenderer !== undefined) {';
|
||||
$profiling_table .= 'makeProfilingChart();';
|
||||
$profiling_table .= '}';
|
||||
$profiling_table .= 'initProfilingTables();';
|
||||
$profiling_table .= '</script>';
|
||||
$profiling_table .= '</fieldset>' . "\n";
|
||||
|
||||
|
||||
@ -19,7 +19,7 @@
|
||||
* from the analyzer.
|
||||
*
|
||||
* If you want a pretty-printed version of the query, do:
|
||||
* $string = PMA_SQP_formatHtml($parsed_sql);
|
||||
* $string = PMA_SQP_format($parsed_sql);
|
||||
* (note that that you need to have syntax.css.php included somehow in your
|
||||
* page for it to work, I recommend '<link rel="stylesheet" type="text/css"
|
||||
* href="syntax.css.php" />' at the moment.)
|
||||
@ -2174,10 +2174,10 @@ function PMA_SQP_formatHtml_colorize($arr)
|
||||
|
||||
|
||||
/**
|
||||
* Formats SQL queries to html
|
||||
* Formats SQL queries
|
||||
*
|
||||
* @param array $arr The SQL queries
|
||||
* @param string $mode mode of printing
|
||||
* @param string $mode formatting mode
|
||||
* @param integer $start_token starting token
|
||||
* @param integer $number_of_tokens number of tokens to format, -1 = all
|
||||
*
|
||||
@ -2185,7 +2185,7 @@ function PMA_SQP_formatHtml_colorize($arr)
|
||||
*
|
||||
* @access public
|
||||
*/
|
||||
function PMA_SQP_formatHtml(
|
||||
function PMA_SQP_format(
|
||||
$arr, $mode='color', $start_token=0,
|
||||
$number_of_tokens=-1
|
||||
) {
|
||||
@ -2888,7 +2888,7 @@ function PMA_SQP_formatHtml(
|
||||
*/
|
||||
$str .= $before;
|
||||
if ($mode=='color') {
|
||||
$str .= PMA_SQP_formatHTML_colorize($arr[$i]);
|
||||
$str .= PMA_SQP_formatHtml_colorize($arr[$i]);
|
||||
} elseif ($mode == 'text') {
|
||||
$str .= htmlspecialchars($arr[$i]['data']);
|
||||
} else {
|
||||
@ -2916,7 +2916,7 @@ function PMA_SQP_formatHtml(
|
||||
}
|
||||
|
||||
return $str;
|
||||
} // end of the "PMA_SQP_formatHtml()" function
|
||||
} // end of the "PMA_SQP_format()" function
|
||||
|
||||
/**
|
||||
* Gets SQL queries with no format
|
||||
|
||||
61
po/af.po
61
po/af.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-02-13 18:58+0200\n"
|
||||
"Last-Translator: Andrey Prokopenko <aprk@ukr.net>\n"
|
||||
"Language-Team: Afrikaans <http://l10n.cihar.com/projects/phpmyadmin/master/"
|
||||
@ -235,8 +235,8 @@ msgstr "Kommentaar"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Nee"
|
||||
@ -262,7 +262,7 @@ msgstr "Nee"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -665,7 +665,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr ""
|
||||
@ -892,7 +892,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie."
|
||||
|
||||
@ -902,7 +902,7 @@ msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Wil jy regtig "
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr ""
|
||||
|
||||
@ -2797,7 +2797,7 @@ msgstr "Vertoon rye"
|
||||
msgid "total"
|
||||
msgstr "totaal"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr ""
|
||||
@ -4025,19 +4025,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7169,7 +7169,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL het niks teruggegee nie (dus nul rye)."
|
||||
|
||||
@ -7291,11 +7291,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7350,7 +7350,7 @@ msgstr "Vervang tabel data met leer (file)"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -9882,7 +9882,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Boekmerk hierdie SQL-stelling"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -11211,13 +11211,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Hernoem tabel na"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12179,41 +12178,41 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Geen databasisse"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "Valideer SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Boekmerk hierdie SQL-stelling"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -13743,6 +13742,10 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Hernoem tabel na"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Count tables"
|
||||
#~ msgstr "Geen tabelle"
|
||||
|
||||
63
po/ar.po
63
po/ar.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-03-20 22:10+0200\n"
|
||||
"Last-Translator: mohamed amin boubaker <mohamed.amin.02@gmail.com>\n"
|
||||
"Language-Team: Arabic <http://l10n.cihar.com/projects/phpmyadmin/master/ar/"
|
||||
@ -236,8 +236,8 @@ msgstr "تعليقات"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "لا"
|
||||
@ -263,7 +263,7 @@ msgstr "لا"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -665,7 +665,7 @@ msgstr "لاتستطيع تغيير ترميز الملفات بدون مكتب
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "لم أتمكن من تحميل قوابس الاستيراد، الرجاء فحص تثبيتك!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "تم إنشاء العلامة المرجعية %s"
|
||||
@ -900,7 +900,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "أمر \"حذف قاعدة البيانات\" معطل."
|
||||
|
||||
@ -909,7 +909,7 @@ msgstr "أمر \"حذف قاعدة البيانات\" معطل."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "هل تريد فعلاً تنفيذ \"%s\"؟"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "أنت على وشك إزالة كامل قاعدة البيانات !"
|
||||
|
||||
@ -2640,7 +2640,7 @@ msgstr "أظهر الصفوف"
|
||||
msgid "total"
|
||||
msgstr "المجموع"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "استغرق الاستعلام %01.4f ثانية"
|
||||
@ -3844,19 +3844,19 @@ msgstr "اسلوب مصادقة غير صحيح في الإعدادات:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "عليك الترقية إلى %s%s أو لاحقا."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "إستغلال محتمل"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "الكشف عن مفتاح رقمي"
|
||||
|
||||
@ -6921,7 +6921,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "قام MySQL بإرجاع نتيجة فارغة."
|
||||
|
||||
@ -7045,11 +7045,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7106,7 +7106,7 @@ msgstr "إضافة حقل جديد"
|
||||
msgid "Add prefix"
|
||||
msgstr "إضافة حقل جديد"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -9764,7 +9764,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "اجعل علامة مرجعية SQL-استعلام"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية"
|
||||
|
||||
@ -11111,14 +11111,14 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Remove chart"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "حذف الرسم البياني"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "تفعيل التوضيح (highlighting)"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12088,43 +12088,43 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "لايوجد بيانات"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "تم إنشاء العلامة المرجعية %s"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "التحقق من استعلام SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "اجعل علامة مرجعية SQL-استعلام"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -13709,6 +13709,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Remove chart"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "حذف الرسم البياني"
|
||||
|
||||
#~ msgid "Table seems to be empty!"
|
||||
#~ msgstr "يبدو أنّ الجدول خالي من البيانات!"
|
||||
|
||||
|
||||
61
po/az.po
61
po/az.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-07 17:14+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Azerbaijani <http://l10n.cihar.com/projects/phpmyadmin/master/"
|
||||
@ -233,8 +233,8 @@ msgstr "Şərhlər"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Xeyr"
|
||||
@ -260,7 +260,7 @@ msgstr "Xeyr"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -672,7 +672,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr ""
|
||||
@ -904,7 +904,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)."
|
||||
|
||||
@ -914,7 +914,7 @@ msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz "
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Bütün bazanı YOX ETMEK üzeresiniz!"
|
||||
|
||||
@ -2833,7 +2833,7 @@ msgstr "Gösterilen setirler"
|
||||
msgid "total"
|
||||
msgstr "cemi"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "sorğu %01.4f saniyede icra edildi"
|
||||
@ -4071,19 +4071,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7264,7 +7264,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL boş netice çoxluğu gönderdi (ye'ni sıfır setir)."
|
||||
|
||||
@ -7387,11 +7387,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7448,7 +7448,7 @@ msgstr "Yeni sahe elave et"
|
||||
msgid "Add prefix"
|
||||
msgstr "Yeni sahe elave et"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10090,7 +10090,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Bu SQL sorğusunu bookmark-la"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -11426,13 +11426,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Cedveli yeniden adlandır"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12398,41 +12397,41 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "SQL Tesdiqle"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Bu SQL sorğusunu bookmark-la"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14005,6 +14004,10 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Cedveli yeniden adlandır"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Count tables"
|
||||
#~ msgstr "Cedvel yoxdur"
|
||||
|
||||
63
po/be.po
63
po/be.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2012-12-13 13:06+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Belarusian <http://l10n.cihar.com/projects/phpmyadmin/master/"
|
||||
@ -237,8 +237,8 @@ msgstr "Камэнтары"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Не"
|
||||
@ -264,7 +264,7 @@ msgstr "Не"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -695,7 +695,7 @@ msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
"Немагчыма загрузіць плагіны імпартаваньня, калі ласка, праверце ўсталёўку!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Закладка %s створаная"
|
||||
@ -947,7 +947,7 @@ msgstr ""
|
||||
"На сэрвэры запушчаны Suhosin. Калі ласка, зьвярніцеся да %sдакумэнтацыі%s "
|
||||
"для атрыманьня апісаньня магчымых праблемаў."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Каманды \"DROP DATABASE\" адключаныя."
|
||||
|
||||
@ -957,7 +957,7 @@ msgstr "Каманды \"DROP DATABASE\" адключаныя."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Ці сапраўды вы жадаеце "
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Вы зьбіраеце ВЫДАЛІЦЬ базу дадзеных цалкам!"
|
||||
|
||||
@ -2912,7 +2912,7 @@ msgstr "Паказаныя запісы"
|
||||
msgid "total"
|
||||
msgstr "усяго"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Запыт выконваўся %01.4f сэк"
|
||||
@ -4172,19 +4172,19 @@ msgstr "У канфігурацыі вызначаны некарэктны мэ
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7488,7 +7488,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)."
|
||||
|
||||
@ -7615,11 +7615,11 @@ msgstr ""
|
||||
"Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або "
|
||||
"CTRL+стрэлкі для перамяшчэньня ў любое іншае месца"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "У выглядзе SQL-запыту"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "ID устаўленага радку: %1$d"
|
||||
@ -7676,7 +7676,7 @@ msgstr "Дадаць новае поле"
|
||||
msgid "Add prefix"
|
||||
msgstr "Дадаць новае поле"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10403,7 +10403,7 @@ msgstr "Каляндар"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Дадаць гэты SQL-запыт у закладкі"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі"
|
||||
|
||||
@ -11776,14 +11776,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Перайменаваць базу дадзеных у"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12888,43 +12886,43 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Базы дадзеных адсутнічаюць"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Закладка %s створаная"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "У выглядзе PHP-коду"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "Праверыць SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Праблемы з індэксамі для табліцы `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Дадаць гэты SQL-запыт у закладкі"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14555,6 +14553,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "максымум адначасовых злучэньняў"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Rename database to"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Перайменаваць базу дадзеных у"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Open Document Text"
|
||||
#~ msgid "Open Document"
|
||||
|
||||
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2012-12-13 13:06+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Belarusian (latin) <http://l10n.cihar.com/projects/phpmyadmin/"
|
||||
@ -237,8 +237,8 @@ msgstr "Kamentary"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Nie"
|
||||
@ -264,7 +264,7 @@ msgstr "Nie"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -689,7 +689,7 @@ msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
"Niemahčyma zahruzić płahiny impartavańnia, kali łaska, praviercie ŭstaloŭku!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Zakładka %s stvoranaja"
|
||||
@ -944,7 +944,7 @@ msgstr ""
|
||||
"Na servery zapuščany Suhosin. Kali łaska, źviarniciesia da %sdakumentacyi%s "
|
||||
"dla atrymańnia apisańnia mahčymych prablemaŭ."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Kamandy \"DROP DATABASE\" adklučanyja."
|
||||
|
||||
@ -954,7 +954,7 @@ msgstr "Kamandy \"DROP DATABASE\" adklučanyja."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Ci sapraŭdy vy žadajecie "
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Vy źbirajecie VYDALIĆ bazu dadzienych całkam!"
|
||||
|
||||
@ -2923,7 +2923,7 @@ msgstr "Pakazanyja zapisy"
|
||||
msgid "total"
|
||||
msgstr "usiaho"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Zapyt vykonvaŭsia %01.4f sek"
|
||||
@ -4189,19 +4189,19 @@ msgstr "U kanfihuracyi vyznačany niekarektny metad aŭtentyfikacyi:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7482,7 +7482,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)."
|
||||
|
||||
@ -7609,11 +7609,11 @@ msgstr ""
|
||||
"Vykarystoŭvajcie klavišu TAB dla pieramiaščeńnia ad značeńnia da značeńnia "
|
||||
"abo CTRL+strełki dla pieramiaščeńnia ŭ luboje inšaje miesca"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "U vyhladzie SQL-zapytu"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "ID ustaŭlenaha radku: %1$d"
|
||||
@ -7670,7 +7670,7 @@ msgstr "Dadać novaje pole"
|
||||
msgid "Add prefix"
|
||||
msgstr "Dadać novaje pole"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10407,7 +10407,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Dadać hety SQL-zapyt u zakładki"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki"
|
||||
|
||||
@ -11777,14 +11777,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Pierajmienavać bazu dadzienych u"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12883,43 +12881,43 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Bazy dadzienych adsutničajuć"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Zakładka %s stvoranaja"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "U vyhladzie PHP-kodu"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "Pravieryć SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Prablemy z indeksami dla tablicy `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Dadać hety SQL-zapyt u zakładki"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14559,6 +14557,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "maksymum adnačasovych złučeńniaŭ"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Rename database to"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Pierajmienavać bazu dadzienych u"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Open Document Text"
|
||||
#~ msgid "Open Document"
|
||||
|
||||
58
po/bg.po
58
po/bg.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2012-11-05 10:03+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Bulgarian <http://l10n.cihar.com/projects/phpmyadmin/master/"
|
||||
@ -236,8 +236,8 @@ msgstr "Коментари"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Не"
|
||||
@ -263,7 +263,7 @@ msgstr "Не"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -673,7 +673,7 @@ msgstr ""
|
||||
"Не могат да бъдат заредени разширенията за импорт, моля проверете "
|
||||
"инсталацията!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Белязка %s беше създадена"
|
||||
@ -907,7 +907,7 @@ msgstr ""
|
||||
"Сървърът е с кръпка Suhosin. Прочетете %sдокументацията%s за възможни "
|
||||
"проблеми."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" заявката е забранена."
|
||||
|
||||
@ -916,7 +916,7 @@ msgstr "\"DROP DATABASE\" заявката е забранена."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Наистина ли искате да изпълните \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Вие ще УНИЩОЖИТЕ цяла БД!"
|
||||
|
||||
@ -2667,7 +2667,7 @@ msgstr "Показване на записи"
|
||||
msgid "total"
|
||||
msgstr "общо"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Заявката отне %01.4f секунди"
|
||||
@ -3869,19 +3869,19 @@ msgstr "Невалиден метод за удостоверяване в ко
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Осъвременете до %s %s или по-нова."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "възможен пробив в сигурността"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "цифров ключ открит"
|
||||
|
||||
@ -7025,7 +7025,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL върна празен резултат (т.е. нула редове)."
|
||||
|
||||
@ -7145,11 +7145,11 @@ msgstr ""
|
||||
"Използвайте клавиша TAB, за да премествате крурсора от стойност на стойност "
|
||||
"или CTRL+стрелка, за да премествате курсора в съответната посока"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7200,7 +7200,7 @@ msgstr "Добавяне на представка на таблица"
|
||||
msgid "Add prefix"
|
||||
msgstr "Добавяне на представка"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Наистина ли искате да изпълните следната заявка?"
|
||||
|
||||
@ -9736,7 +9736,7 @@ msgstr "Изчистване"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Отбелязване SQL заявката"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Всеки потребител да има достъп до тази белязка"
|
||||
|
||||
@ -11021,12 +11021,14 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Включване синтактичното оцветяване"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -11978,26 +11980,26 @@ msgstr "Ключът трябва да съдържа букви, цифри [em
|
||||
msgid "Wrong data"
|
||||
msgstr "Грешни данни"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Белязка %s беше създадена"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Показване като PHP-код"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Валидиран SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "This table does not contain a unique column. Features related to the grid "
|
||||
@ -12010,16 +12012,16 @@ msgstr ""
|
||||
"редакция, отметката, връзките редактиране, копиране и изтриване може да не "
|
||||
"работят след запазване."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Проблем с индексите на таблица `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Отбелязване SQL заявката"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
|
||||
63
po/bn.po
63
po/bn.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-04-25 16:02+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Bengali <http://l10n.cihar.com/projects/phpmyadmin/master/bn/"
|
||||
@ -236,8 +236,8 @@ msgstr "মন্তব্যসমূহ"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "না"
|
||||
@ -263,7 +263,7 @@ msgstr "না"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -668,7 +668,7 @@ msgstr "অক্ষর সেট রূপান্তর গ্রন্থা
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "ইমপোর্ট প্লাগ ইন লোড করা যায়নি, আপনার ইন্সষ্টলেশন পরীক্ষা করুন"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "বুকমার্ক %s তৈরী করা হয়েছে"
|
||||
@ -902,7 +902,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr ""
|
||||
|
||||
@ -912,7 +912,7 @@ msgstr ""
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "আপনি কি সত্যি চান?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "আপনি একটি সম্পূর্ন ডাটাবেজ প্রায় মুছে ফেলছেন"
|
||||
|
||||
@ -2803,7 +2803,7 @@ msgstr ""
|
||||
msgid "total"
|
||||
msgstr "মোট"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr ""
|
||||
@ -4039,19 +4039,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7289,7 +7289,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
|
||||
@ -7411,12 +7411,12 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
#, fuzzy
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Show Full Queries"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7471,7 +7471,7 @@ msgstr "টেবিল উপসর্গ প্রতিস্থাপন"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10147,7 +10147,7 @@ msgstr "ক্যালেন্ডার"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "এই SQL query টি বুকমার্ক করুন"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন"
|
||||
|
||||
@ -11487,14 +11487,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "ডাটাবেজ রিনেম কর"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12471,43 +12469,43 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "কোন ডাটাবেজ নাই"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "বুকমার্ক %s তৈরী করা হয়েছে"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "Validate SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "এই SQL query টি বুকমার্ক করুন"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14132,6 +14130,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "max. concurrent connections"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Rename database to"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "ডাটাবেজ রিনেম কর"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Open Document Text"
|
||||
#~ msgid "Open Document"
|
||||
|
||||
63
po/br.po
63
po/br.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2012-11-05 10:16+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Breton <http://l10n.cihar.com/projects/phpmyadmin/master/br/"
|
||||
@ -240,8 +240,8 @@ msgstr "Evezhiadennoù"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Ket"
|
||||
@ -267,7 +267,7 @@ msgstr "Ket"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -682,7 +682,7 @@ msgstr "Dibosupl amdreiñ an arouezennoù hep levraoueg amdreiñ"
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "Dibosupl enporzhiañ an adveziantoù. Gwiriit ho staliadur !"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Krouet eo bet ar sined %s"
|
||||
@ -905,7 +905,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'"
|
||||
|
||||
@ -915,7 +915,7 @@ msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'"
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Ha sur oc'h e fell deoc'h "
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Emaoc'h war-nes DISTRUJ un diaz roadennoù klok !"
|
||||
|
||||
@ -2712,7 +2712,7 @@ msgstr ""
|
||||
msgid "total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr ""
|
||||
@ -3935,19 +3935,19 @@ msgstr "Termenet ez eus bet c'hefluniadur un hentenn dilesa direizh."
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Ret e vefe deoc'h ober gant ar stumm %s %s pe unan nevesoc'h c'hoazh."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7047,7 +7047,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)."
|
||||
|
||||
@ -7169,11 +7169,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7224,7 +7224,7 @@ msgstr "Erlec'hiañ rakger an daolenn"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -9725,7 +9725,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -10974,14 +10974,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Remove chart"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Dilemel ar grafik"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -11935,41 +11933,41 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Krouet eo bet ar sined %s"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label key"
|
||||
msgid "Label:"
|
||||
@ -13547,6 +13545,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Remove chart"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Dilemel ar grafik"
|
||||
|
||||
#~ msgid "Live traffic chart"
|
||||
#~ msgstr "Grafik an tremenerezh evel m'emañ diouzhtu"
|
||||
|
||||
|
||||
61
po/bs.po
61
po/bs.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-04-05 12:08+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Bosnian <http://l10n.cihar.com/projects/phpmyadmin/master/bs/"
|
||||
@ -235,8 +235,8 @@ msgstr "Komentari"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Ne"
|
||||
@ -262,7 +262,7 @@ msgstr "Ne"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -674,7 +674,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr ""
|
||||
@ -907,7 +907,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" komanda je onemogućena."
|
||||
|
||||
@ -917,7 +917,7 @@ msgstr "\"DROP DATABASE\" komanda je onemogućena."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Da li stvarno hoćete da "
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr ""
|
||||
|
||||
@ -2836,7 +2836,7 @@ msgstr "Prikaz zapisa"
|
||||
msgid "total"
|
||||
msgstr "ukupno"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Upit je trajao %01.4f sekundi"
|
||||
@ -4070,19 +4070,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7255,7 +7255,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL je vratio prazan rezultat (nula redova)."
|
||||
|
||||
@ -7378,11 +7378,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7439,7 +7439,7 @@ msgstr "Dodaj novo polje"
|
||||
msgid "Add prefix"
|
||||
msgstr "Dodaj novo polje"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10086,7 +10086,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Obilježi SQL-upit"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -11432,13 +11432,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Promjeni ime tabele u "
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12404,41 +12403,41 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Baza ne postoji"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "Provjeri SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Obilježi SQL-upit"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -13984,6 +13983,10 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Promjeni ime tabele u "
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Count tables"
|
||||
#~ msgstr "Nema tabela"
|
||||
|
||||
63
po/ca.po
63
po/ca.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-07 15:03+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Catalan <http://l10n.cihar.com/projects/phpmyadmin/master/ca/"
|
||||
@ -236,8 +236,8 @@ msgstr "Comentaris"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
@ -263,7 +263,7 @@ msgstr "No"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -671,7 +671,7 @@ msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
"No es poden carregar les extensions d'importació, comprova l'instal.lació!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "%s creat com a Consulta desada"
|
||||
@ -929,7 +929,7 @@ msgstr ""
|
||||
"Servidor executant-se amb Suhosin. Si us plau, consulta %sdocumentation%s "
|
||||
"per a possibles assumptes."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Instrucció \"DROP DATABASE\" desactivada."
|
||||
|
||||
@ -938,7 +938,7 @@ msgstr "Instrucció \"DROP DATABASE\" desactivada."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Realment vols fer \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Ets a punt de DESTRUIR completament una base de dades!"
|
||||
|
||||
@ -2685,7 +2685,7 @@ msgstr "Mostrant registres"
|
||||
msgid "total"
|
||||
msgstr "total"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "La consulta tarda %01.4f seg"
|
||||
@ -3961,19 +3961,19 @@ msgstr "Mètode d'identificació incorrecte establert a la configuració:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Es necessari actualitzar a %s %s o posterior."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Error: No coincideix un «token»"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "intent de sobreescriure la variable GLOBALS"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "possible aprofitament"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "detectat teclat numéric"
|
||||
|
||||
@ -7284,7 +7284,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "No s'han trobat dades per a visualització GIS."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)."
|
||||
|
||||
@ -7406,11 +7406,11 @@ msgstr ""
|
||||
"Usa la tecla TAB per moure't de valor en valor, o CTRL+fletxes per moure't "
|
||||
"on vulguis"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Mostrant consulta SQL"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Id de la fila inserida: %1$d"
|
||||
@ -7461,7 +7461,7 @@ msgstr "Afegir prefix de taula"
|
||||
msgid "Add prefix"
|
||||
msgstr "Afegir prefix"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Realment vols executar la següent consulta?"
|
||||
|
||||
@ -10032,7 +10032,7 @@ msgstr "Neteja"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Desa aquesta consulta SQL"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Deixa accedir a cada usuari a aquesta consulta desada"
|
||||
|
||||
@ -11365,12 +11365,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "Instruccions/configuració"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Reorganització acabada/edició de gràfics"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Reorganitzar/editar gràfics"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Activa resaltat"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12505,24 +12509,24 @@ msgstr "La clau pot contenir lletres, numeros [em]i[/em] caràcters especials."
|
||||
msgid "Wrong data"
|
||||
msgstr "Dades incorrectes"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "Usar el preferit \"%s\" com a pàgina de cerca per defecte."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "No s'ha creat el marcador"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Mostrant com a codi PHP"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "SQL validat"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
@ -12530,16 +12534,16 @@ msgstr ""
|
||||
"Aquesta taula no conté una columna única. Els enllaços d'edició de graella, "
|
||||
"checkbox, Editar, Copiar i Esborrar enllaços no estàn disponibles."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problemes amb els indexs de la taula `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Desa aquesta consulta SQL"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14249,6 +14253,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "{concurrent_insert} està establert a 0"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Reorganitzar/editar gràfics"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Document"
|
||||
|
||||
|
||||
54
po/ckb.po
54
po/ckb.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2012-12-24 08:51+0200\n"
|
||||
"Last-Translator: karwan hidayat <karwanhidayat@gmail.com>\n"
|
||||
"Language-Team: Kurdish Sorani <http://l10n.cihar.com/projects/phpmyadmin/"
|
||||
@ -240,8 +240,8 @@ msgstr "بۆچوون"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "نەخێر"
|
||||
@ -267,7 +267,7 @@ msgstr "نەخێر"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -671,7 +671,7 @@ msgstr "ناکرێت فایلەکانی نوسە بگۆڕدرێن بە بێ نو
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "هەڵە لە بارکردنی پێوەکراەکان, تکایە فۆناغەکانی دامەزراندن بپشکنن!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "شوێندۆز %s دروستکرا"
|
||||
@ -895,7 +895,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "دەستەواژەکانی \"سڕینەوەی بنکەی زانیاری\" ناچالاککراوە."
|
||||
|
||||
@ -904,7 +904,7 @@ msgstr "دەستەواژەکانی \"سڕینەوەی بنکەی زانیاری\
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "ئایا تۆ دڵنیایت لە جێبەجێکردنی \"%s\"؟"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "تۆ خەریکی سڕینەوەی تەواوی بنکە زانیاریەکەیت!"
|
||||
|
||||
@ -2612,7 +2612,7 @@ msgstr "ڕیزە پێشاندراوەکان"
|
||||
msgid "total"
|
||||
msgstr "سەرجەم"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "داواکاریەکە %01.4f چرکەی خایاند"
|
||||
@ -3798,19 +3798,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -6804,7 +6804,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
|
||||
@ -6920,11 +6920,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -6975,7 +6975,7 @@ msgstr "گۆڕینی پێشگری خشتە"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr ""
|
||||
|
||||
@ -9402,7 +9402,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -10621,11 +10621,11 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
@ -11572,41 +11572,41 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "شوێندۆز %s دروستکرا"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr ""
|
||||
|
||||
|
||||
73
po/cs.po
73
po/cs.po
@ -5,14 +5,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-24 15:21+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Czech <http://l10n.cihar.com/projects/phpmyadmin/master/cs/>\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 1.6-dev\n"
|
||||
|
||||
@ -233,8 +233,8 @@ msgstr "Komentáře"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Ne"
|
||||
@ -260,7 +260,7 @@ msgstr "Ne"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -649,7 +649,7 @@ msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
"Nepodařilo se nahrát pluginy pro import, zkontrolujte prosím vaší instalaci!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Vytvořen oblíbený dotaz %s"
|
||||
@ -883,7 +883,7 @@ msgstr ""
|
||||
"Server používá Suhosin. Prosím podívejte se do %sdokumentace%s pro popis "
|
||||
"problémů, které tím mohou být způsobeny."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Příkaz „DROP DATABASE“ je vypnutý."
|
||||
|
||||
@ -892,7 +892,7 @@ msgstr "Příkaz „DROP DATABASE“ je vypnutý."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Opravdu si přejete provést „%s“?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Chystáte se ZRUŠIT celou databázi!"
|
||||
|
||||
@ -2611,7 +2611,7 @@ msgstr "Zobrazeny záznamy"
|
||||
msgid "total"
|
||||
msgstr "celkem"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Dotaz trval %01.4f sekund"
|
||||
@ -3856,19 +3856,19 @@ msgstr "V nastavení máte špatnou přihlašovací metodu:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Chyba: neplatný token"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "Pokus o přepsání GLOBALS"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "možný pokus o exploit"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "detekován číselný klíč"
|
||||
|
||||
@ -7086,7 +7086,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Nebyla nalezena žádná data zobrazení GIS."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)."
|
||||
|
||||
@ -7204,11 +7204,11 @@ msgstr ""
|
||||
"Použijte klávesu TAB pro pohyb mezi hodnotami nebo CTRL+šipky po pohyb všemi "
|
||||
"směry"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Zobrazuji SQL dotaz"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "ID vloženého řádku: %1$d"
|
||||
@ -7253,7 +7253,7 @@ msgstr "Přidat tabulce předponu:"
|
||||
msgid "Add prefix"
|
||||
msgstr "Přidat předponu"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Opravdu si přejete vykonat následující příkaz?"
|
||||
|
||||
@ -9703,18 +9703,14 @@ msgid "Generated by:"
|
||||
msgstr "Vytvořil:"
|
||||
|
||||
#: libraries/sql.lib.php:495
|
||||
#| msgid "Data file grow size"
|
||||
msgid "Detailed profile"
|
||||
msgstr "Podrobné profilování"
|
||||
|
||||
#: libraries/sql.lib.php:498
|
||||
#| msgid "Other"
|
||||
msgid "Order"
|
||||
msgstr "Pořadí"
|
||||
|
||||
#: libraries/sql.lib.php:500 libraries/sql.lib.php:546
|
||||
#| msgctxt "Start of recurring event"
|
||||
#| msgid "Start"
|
||||
msgid "State"
|
||||
msgstr "Stav"
|
||||
|
||||
@ -9723,22 +9719,18 @@ msgid "Summary by state"
|
||||
msgstr "Souhrn podle stavů"
|
||||
|
||||
#: libraries/sql.lib.php:551
|
||||
#| msgid "Total time:"
|
||||
msgid "Total Time"
|
||||
msgstr "Celkový čas"
|
||||
|
||||
#: libraries/sql.lib.php:553
|
||||
#| msgid "Time"
|
||||
msgid "% Time"
|
||||
msgstr "% času"
|
||||
|
||||
#: libraries/sql.lib.php:555
|
||||
#| msgid "Close"
|
||||
msgid "Calls"
|
||||
msgstr "Volání"
|
||||
|
||||
#: libraries/sql.lib.php:557
|
||||
#| msgid "Time"
|
||||
msgid "ø Time"
|
||||
msgstr "ø čas"
|
||||
|
||||
@ -9760,7 +9752,7 @@ msgstr "Vyčistit"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Přidat tento SQL dotaz do oblíbených:"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku"
|
||||
|
||||
@ -11065,12 +11057,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "Návod/Nastavení"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Ukončit upravování grafů"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Upravit/Uspořádat grafy"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Povolit zvýrazňování"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12167,24 +12163,24 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Chybná data"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "Pro procházení databáze je použit oblíbený dotaz „%s\"."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Nebyl vytvořen oblíbený dotaz"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Zobrazuji jako PHP kód"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Proběhlo zkontrolování SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
@ -12192,16 +12188,16 @@ msgstr ""
|
||||
"Tato tabulka neobsahuje unikátní klíč. Editování v mřížce, zaškrtávací "
|
||||
"políčka nebo odkazy na editaci a mazání proto nejsou k dispozici."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problémy s klíči v tabulce „%s\""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Přidat tento SQL dotaz do oblíbených"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr "Název:"
|
||||
|
||||
@ -13836,6 +13832,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert je nastaveno na 0"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Upravit/Uspořádat grafy"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Document"
|
||||
|
||||
|
||||
63
po/cy.po
63
po/cy.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-07 17:20+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Welsh <http://l10n.cihar.com/projects/phpmyadmin/4-0/cy/>\n"
|
||||
@ -238,8 +238,8 @@ msgstr "Sylwadau"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Na"
|
||||
@ -265,7 +265,7 @@ msgstr "Na"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -679,7 +679,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "Nid oedd modd llwytho ategynnau mewnforio, gwiriwch eich arsefydliad!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Clustnodi %s a grëwyd"
|
||||
@ -913,7 +913,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi."
|
||||
|
||||
@ -923,7 +923,7 @@ msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "A ydych chi wir am"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Rydych am DINISTRIO cronfa ddata gyfan!"
|
||||
|
||||
@ -2830,7 +2830,7 @@ msgstr "Yn dangos rhesi"
|
||||
msgid "total"
|
||||
msgstr "cyfanswm"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Cymerodd yr ymholiad %01.4f eiliad"
|
||||
@ -4068,19 +4068,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Dylech uwchraddio i %s %s neu'n well."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7274,7 +7274,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
|
||||
@ -7398,11 +7398,11 @@ msgstr ""
|
||||
"Defnyddiwch y bysell TAB i symud o un gwerth i'r llall, neu CTRL + saethau i "
|
||||
"symud unrhyw le"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7455,7 +7455,7 @@ msgstr "Ailenwi tabl i"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10035,7 +10035,7 @@ msgstr "Clirio"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Clustnodwch yr ymholiad SQL hwn"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -11336,14 +11336,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Remove database"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Tynnwch y gronfa ddata"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12309,43 +12307,43 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Dim cronfeydd data"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Clustnodi %s a grëwyd"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "Dilysu SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Clustnodwch yr ymholiad SQL hwn"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label key"
|
||||
msgid "Label:"
|
||||
@ -13971,6 +13969,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Remove database"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Tynnwch y gronfa ddata"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Open Document Text"
|
||||
#~ msgid "Open Document"
|
||||
|
||||
63
po/da.po
63
po/da.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-09 21:34+0200\n"
|
||||
"Last-Translator: Aputsiaq Niels Janussen <aj@isit.gl>\n"
|
||||
"Language-Team: Danish <http://l10n.cihar.com/projects/phpmyadmin/master/da/"
|
||||
@ -231,8 +231,8 @@ msgstr "Kommentarer"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Nej"
|
||||
@ -258,7 +258,7 @@ msgstr "Nej"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -648,7 +648,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "Kunne ikke indlæse importplugins, check venligst din installation!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Bogmærke %s oprettet"
|
||||
@ -883,7 +883,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr "Server med Suhosin.Se %sdocumentation%s for mulige problemer."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges."
|
||||
|
||||
@ -892,7 +892,7 @@ msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Er du sikker på at du vil udføre \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Du er ved at DESTRUERE en komplet database!"
|
||||
|
||||
@ -2619,7 +2619,7 @@ msgstr "Viser poster"
|
||||
msgid "total"
|
||||
msgstr "total"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "forepørgsel tog %01.4f sek"
|
||||
@ -3879,19 +3879,19 @@ msgstr "Ugyldig autorisationsmetode sat i konfiguration:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Du burde opdatere til %s %s eller senere."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Fejl: Token uoverensstemmelse"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "forsøg på overskrivning af GLOBALS"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "muligt sikkerhedshul"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "numerisk tast opfanget"
|
||||
|
||||
@ -7138,7 +7138,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Ingen data fundet for GIS visualization."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL returnerede ingen data (fx ingen rækker)."
|
||||
|
||||
@ -7257,11 +7257,11 @@ msgstr ""
|
||||
"Brug TAB-tasten for at flytte dig fra værdi til værdi, eller CTRL"
|
||||
"+piletasterne til at flytte frit omkring"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Viser SQL-forespørgsel"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Indsatte række id: %1$d"
|
||||
@ -7312,7 +7312,7 @@ msgstr "Tilføj tabelpræfiks"
|
||||
msgid "Add prefix"
|
||||
msgstr "Tilføj præfiks"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Er du sikker på at du vil udføre følgende forespørgsel?"
|
||||
|
||||
@ -9835,7 +9835,7 @@ msgstr "Ryd"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Lav bogmærke til denne SQL-forespørgsel:"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Lad alle brugere bruge dette bogmærke"
|
||||
|
||||
@ -11139,12 +11139,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "Instruktioner/Opsætning"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Færdig med at omordne/redigere diagrammer"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Omordne/rediger diagrammer"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Aktiver fremhævning"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12265,24 +12269,24 @@ msgstr "Nøglen bør indeholde bogstaver, numre [em]og[/em] specialtegn."
|
||||
msgid "Wrong data"
|
||||
msgstr "Forkerte data"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "Bruger bogmærket \"%s\" som standard-forespørgsel til gennemsyn."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Bogmærke blev ikke oprettet"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Viser som PHP-kode"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Valideret SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
@ -12290,16 +12294,16 @@ msgstr ""
|
||||
"Denne tabel indeholder ikke en unik kolonne. Redigering af gitter, "
|
||||
"afkrydsningsfelt, redigering og sletning er ikke tilgængelige."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problemer med indeksene på tabel `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Lav bogmærke til denne SQL-forespørgsel"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr "Etikette:"
|
||||
|
||||
@ -13952,6 +13956,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert er sat til 0"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Omordne/rediger diagrammer"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Document"
|
||||
|
||||
|
||||
67
po/de.po
67
po/de.po
@ -3,8 +3,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"PO-Revision-Date: 2013-05-10 12:23+0200\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-24 21:18+0200\n"
|
||||
"Last-Translator: Jan Erik Zassenhaus <jan.zassenhaus@jgerman.de>\n"
|
||||
"Language-Team: German <http://l10n.cihar.com/projects/phpmyadmin/master/de/"
|
||||
">\n"
|
||||
@ -236,8 +236,8 @@ msgstr "Kommentare"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Nein"
|
||||
@ -263,7 +263,7 @@ msgstr "Nein"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -678,7 +678,7 @@ msgstr ""
|
||||
"Die Import-Plugins konnten nicht geladen werden, bitte überprüfen Sie Ihre "
|
||||
"phpMyAdmin-Installation!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Bookmark %s wurde gespeichert"
|
||||
@ -937,7 +937,7 @@ msgstr ""
|
||||
"Der Server läuft mit Suhosin. Bitte lesen Sie die %sDokumentation%s wegen "
|
||||
"möglicher Probleme."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert."
|
||||
|
||||
@ -946,7 +946,7 @@ msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Möchten Sie die Abfrage \"%s\" wirklich ausführen?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Sie sind dabei eine komplette Datenbank zu LÖSCHEN!"
|
||||
|
||||
@ -2712,7 +2712,7 @@ msgstr "insgesamt"
|
||||
|
||||
# (s is the abbreviation of "Sekunde", sec is it not (according to
|
||||
# International System of Units), so we wrote the complete one.)
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Die Abfrage dauerte %01.4f Sekunden"
|
||||
@ -3991,19 +3991,19 @@ msgstr "Ungültige Authentifikationsmethode:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Sie sollten auf %s %s oder neuer aktualisieren."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Fehler: Token stimmen nicht überein"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "GLOBALS Überschreibversuch"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "Mögliche Ausnutzung"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "Numerischer Schlüssel entdeckt"
|
||||
|
||||
@ -4370,7 +4370,7 @@ msgstr "SQL Debugger"
|
||||
|
||||
#: libraries/config/messages.inc.php:47
|
||||
msgid "Default display direction"
|
||||
msgstr "Stamdardanzeigerichtung"
|
||||
msgstr "Standardanzeigerichtung"
|
||||
|
||||
#: libraries/config/messages.inc.php:48
|
||||
msgid "Tab that is displayed when entering a database"
|
||||
@ -7308,7 +7308,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Keine Daten für die GIS-Darstellung gefunden."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Datensätze)."
|
||||
|
||||
@ -7433,11 +7433,11 @@ msgstr ""
|
||||
"Mittels TAB-Taste von Feld zu Feld springen, oder mit STRG+Pfeiltasten "
|
||||
"beliebig bewegen"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Ansicht als SQL Abfrage"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "ID der eingefügten Zeile: %1$d"
|
||||
@ -7488,7 +7488,7 @@ msgstr "Tabellen-Prefix hinzufügen"
|
||||
msgid "Add prefix"
|
||||
msgstr "Prefix hinzufügen"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Möchten Sie die folgende Abfrage wirklich ausführen?"
|
||||
|
||||
@ -10107,7 +10107,7 @@ msgstr "Werte löschen"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "SQL-Abfrage speichern"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen"
|
||||
|
||||
@ -11449,12 +11449,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "Einführung/Einrichtung"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Umordnen/bearbeiten der Schaubilder beendet"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Schaubilder umordnen/bearbeiten"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Hervorhebung ermöglichen"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12620,24 +12624,24 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Fehlerhafte Daten"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "Lesezeichen \"%s\" wird als Standard-Anzeigeabfrage verwendet."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Bookmark nicht erstellt"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Ansicht als PHP-Code"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Geprüftes SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
@ -12646,16 +12650,16 @@ msgstr ""
|
||||
"Bearbeitungsfunktion, Kontrollkästchen, Bearbeiten, Kopieren und Löschen von "
|
||||
"Links sind nicht verfügbar."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Warnungen bei den Indizes der Tabelle `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "SQL-Abfrage speichern"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14365,6 +14369,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert ist auf 0 gesetzt"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Schaubilder umordnen/bearbeiten"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Dokument öffnen"
|
||||
|
||||
|
||||
73
po/el.po
73
po/el.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-24 15:23+0200\n"
|
||||
"Last-Translator: Panagiotis Papazoglou <papaz_p@yahoo.com>\n"
|
||||
"Language-Team: Greek <http://l10n.cihar.com/projects/phpmyadmin/master/el/>\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 1.6-dev\n"
|
||||
|
||||
@ -231,8 +231,8 @@ msgstr "Σχόλια"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Όχι"
|
||||
@ -258,7 +258,7 @@ msgstr "Όχι"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -651,7 +651,7 @@ msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
"Αδύνατη η φόρτωση προσθέτων εισαγωγής, για αυτό ελέξτε την εγκατάστασή σας!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Ο σελιδοδείκτης %s δημιουργήθηκε"
|
||||
@ -891,7 +891,7 @@ msgstr ""
|
||||
"Ο διακομιστής εκτελείται με Suhosin. Αναφερθείτε στην %sτεκμηρίωση%s για "
|
||||
"πιθανά ζητήματα."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποιηθεί."
|
||||
|
||||
@ -900,7 +900,7 @@ msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποι
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Θέλετε να εκτελέσετε το ακόλουθο το «%s»;"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Πρόκειται να DESTROY μια ολόκληρη βάση δεδομένων!"
|
||||
|
||||
@ -2635,7 +2635,7 @@ msgstr "Εμφάνιση εγγραφών"
|
||||
msgid "total"
|
||||
msgstr "συνολικά"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα"
|
||||
@ -3906,19 +3906,19 @@ msgstr "Ορίστηκε εσφαλμένη μέθοδος πιστοποίησ
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Σφάλμα: Το πειστήριο δεν ταιριάζει"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "προσπάθεια επανεγγραφής GLOBALS"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "δυνατή αξιοποίηση"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "ανιχνεύτηκε αριθμητικό κλειδί"
|
||||
|
||||
@ -7213,7 +7213,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Δεν βρέθηκαν δεδομένα για την οπτικοποίηση GIS."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
"Η MySQL επέστρεψε ένα άδειο σύνολο αποτελεσμάτων (π.χ. καμμία εγγραφή)."
|
||||
@ -7333,11 +7333,11 @@ msgstr ""
|
||||
"Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για "
|
||||
"μετακίνηση παντού"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Εμφάνιση ερωτήματος SQL"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d"
|
||||
@ -7382,7 +7382,7 @@ msgstr "Προσθήκη προθέματος πίνακα:"
|
||||
msgid "Add prefix"
|
||||
msgstr "Προσθήκη προθέματος"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Θέλετε να εκτελέσετε το ακόλουθο ερώτημα;"
|
||||
|
||||
@ -9869,18 +9869,14 @@ msgid "Generated by:"
|
||||
msgstr "Δημιουργήθηκε από:"
|
||||
|
||||
#: libraries/sql.lib.php:495
|
||||
#| msgid "Data file grow size"
|
||||
msgid "Detailed profile"
|
||||
msgstr "Λεπτομερές προφίλ"
|
||||
|
||||
#: libraries/sql.lib.php:498
|
||||
#| msgid "Other"
|
||||
msgid "Order"
|
||||
msgstr "Ταξινόμηση"
|
||||
|
||||
#: libraries/sql.lib.php:500 libraries/sql.lib.php:546
|
||||
#| msgctxt "Start of recurring event"
|
||||
#| msgid "Start"
|
||||
msgid "State"
|
||||
msgstr "Κατάσταση"
|
||||
|
||||
@ -9889,22 +9885,18 @@ msgid "Summary by state"
|
||||
msgstr "Περίληψη ανά κατάσταση"
|
||||
|
||||
#: libraries/sql.lib.php:551
|
||||
#| msgid "Total time:"
|
||||
msgid "Total Time"
|
||||
msgstr "Συνολικός Χρόνος"
|
||||
|
||||
#: libraries/sql.lib.php:553
|
||||
#| msgid "Time"
|
||||
msgid "% Time"
|
||||
msgstr "% Χρόνος"
|
||||
|
||||
#: libraries/sql.lib.php:555
|
||||
#| msgid "Close"
|
||||
msgid "Calls"
|
||||
msgstr "Κλήσεις"
|
||||
|
||||
#: libraries/sql.lib.php:557
|
||||
#| msgid "Time"
|
||||
msgid "ø Time"
|
||||
msgstr "ø Χρόνος"
|
||||
|
||||
@ -9926,7 +9918,7 @@ msgstr "Καθάρισμα"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Αποθήκευση αυτού του ερωτήματος SQL:"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη"
|
||||
|
||||
@ -11251,12 +11243,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "Οδηγίες/Εγκατάσταση"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Ολοκληρώθηκε η επανατοποθέτηση/επεξεργασία διαγραμμάτων"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Επανατοποθέτηση/επεξεργασία διαγραμμάτων"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Ενεργοποίηση επισήμανσης"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12419,24 +12415,24 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Εσφαλμένα δεδομένα"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "Χρήση του σελιδοδείκτη «%s» ως προεπιλεγμένο ερώτημα φυλλομετρητή."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Ο σελιδοδείκτης δεν δημιουργήθηκε"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Εμφάνιση ως κώδικά PHP"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Επικυρωμένη SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
@ -12445,16 +12441,16 @@ msgstr ""
|
||||
"Επεξεργασίας Καννάβου, επικογής, Επεξεργασίας, Αντιγραφής και Διαγραφής δεν "
|
||||
"είναι διαθέσιμα."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Αποθήκευση αυτού του ερωτήματος SQL"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr "Ετικέτα:"
|
||||
|
||||
@ -14168,6 +14164,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "Το concurrent_insert έχει οριστεί στο 0"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Επανατοποθέτηση/επεξεργασία διαγραμμάτων"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Έγγραφο Κειμένου Ανοιχτού Κώδικα - ODΤ"
|
||||
|
||||
|
||||
63
po/en_GB.po
63
po/en_GB.po
@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-03-28 12:20+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: English (United Kingdom) <http://l10n.cihar.com/projects/"
|
||||
@ -238,8 +238,8 @@ msgstr "Comments"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
@ -265,7 +265,7 @@ msgstr "No"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -670,7 +670,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "Could not load import plug-ins, please check your installation!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Bookmark %s created"
|
||||
@ -923,7 +923,7 @@ msgstr ""
|
||||
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
|
||||
"issues."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" statements are disabled."
|
||||
|
||||
@ -932,7 +932,7 @@ msgstr "\"DROP DATABASE\" statements are disabled."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Do you really want to execute \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "You are about to DESTROY a complete database!"
|
||||
|
||||
@ -2662,7 +2662,7 @@ msgstr "Showing rows"
|
||||
msgid "total"
|
||||
msgstr "total"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Query took %01.4f sec"
|
||||
@ -3924,19 +3924,19 @@ msgstr "Invalid authentication method set in configuration:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "You should upgrade to %s %s or later."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Error: Token mismatch"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "GLOBALS overwrite attempt"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "possible exploit"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "numeric key detected"
|
||||
|
||||
@ -7200,7 +7200,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "No data found for GIS visualisation."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL returned an empty result set (i.e. zero rows)."
|
||||
|
||||
@ -7321,11 +7321,11 @@ msgid ""
|
||||
msgstr ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Showing SQL query"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Inserted row id: %1$d"
|
||||
@ -7376,7 +7376,7 @@ msgstr "Add table prefix"
|
||||
msgid "Add prefix"
|
||||
msgstr "Add prefix"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Do you really want to execute the following query?"
|
||||
|
||||
@ -9936,7 +9936,7 @@ msgstr "Clear"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Bookmark this SQL query"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Let every user access this bookmark"
|
||||
|
||||
@ -11253,12 +11253,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "Instructions/Setup"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Done rearranging/editing charts"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Rearrange/edit charts"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Enable highlighting"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12367,24 +12371,24 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters."
|
||||
msgid "Wrong data"
|
||||
msgstr "Wrong data"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "Using bookmark \"%s\" as default browse query."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Bookmark not created"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Showing as PHP code"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Validated SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
@ -12392,16 +12396,16 @@ msgstr ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problems with indexes of table `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Bookmark this SQL query"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14045,6 +14049,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert is set to 0"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Rearrange/edit charts"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Document"
|
||||
|
||||
|
||||
146
po/es.po
146
po/es.po
@ -3,15 +3,15 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"PO-Revision-Date: 2013-05-22 01:30+0200\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-25 22:53+0200\n"
|
||||
"Last-Translator: Matías Bellone <matiasbellone+weblate@gmail.com>\n"
|
||||
"Language-Team: Spanish <http://l10n.cihar.com/projects/phpmyadmin/master/es/"
|
||||
">\n"
|
||||
"Language-Team: Spanish "
|
||||
"<http://l10n.cihar.com/projects/phpmyadmin/master/es/>\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 1.6-dev\n"
|
||||
|
||||
@ -232,8 +232,8 @@ msgstr "Comentarios"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
@ -259,7 +259,7 @@ msgstr "No"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -656,7 +656,7 @@ msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
"No se pudieron cargar los plugins de importación. ¡Revise su instalación!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "El favorito %s fue creado"
|
||||
@ -897,7 +897,7 @@ msgstr ""
|
||||
"El servidor está utilizando Suhosin. Refiérase a la %sdocumentación%s por "
|
||||
"posibles inconvenientes."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Las sentencias \"DROP DATABASE\" están desactivadas."
|
||||
|
||||
@ -906,7 +906,7 @@ msgstr "Las sentencias \"DROP DATABASE\" están desactivadas."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "¿Realmente desea ejecutar \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "¡Está a punto de DESTRUIR una base de datos completa!"
|
||||
|
||||
@ -2231,17 +2231,17 @@ msgstr "PHP lanzó el siguiente error: %s"
|
||||
#: libraries/Advisor.class.php:107
|
||||
#, php-format
|
||||
msgid "Failed evaluating precondition for rule '%s'."
|
||||
msgstr "Falló la evaluación de la precondición para la regla '%s'"
|
||||
msgstr "Falló la evaluación de la precondición para la regla '%s'."
|
||||
|
||||
#: libraries/Advisor.class.php:124
|
||||
#, php-format
|
||||
msgid "Failed calculating value for rule '%s'."
|
||||
msgstr "Falló el cálculo del valor para la regla '%s'"
|
||||
msgstr "Falló el cálculo del valor para la regla '%s'."
|
||||
|
||||
#: libraries/Advisor.class.php:143
|
||||
#, php-format
|
||||
msgid "Failed running test for rule '%s'."
|
||||
msgstr "Falló la ejecución de la prueba para la regla '%s'"
|
||||
msgstr "Falló la ejecución de la prueba para la regla '%s'."
|
||||
|
||||
#: libraries/Advisor.class.php:225
|
||||
#, php-format
|
||||
@ -2254,25 +2254,24 @@ msgid ""
|
||||
"Invalid rule declaration on line %1$s, expected line %2$s of previous rule."
|
||||
msgstr ""
|
||||
"Declaración de regla inválida en la línea %1$s, se esperaba la línea %2$s de "
|
||||
"la regla anterior"
|
||||
"la regla anterior."
|
||||
|
||||
#: libraries/Advisor.class.php:412
|
||||
#, php-format
|
||||
msgid "Invalid rule declaration on line %s."
|
||||
msgstr "Declaración de regla inválida en la línea %s"
|
||||
msgstr "Declaración de regla inválida en la línea %s."
|
||||
|
||||
#: libraries/Advisor.class.php:420
|
||||
#, php-format
|
||||
msgid "Unexpected characters on line %s."
|
||||
msgstr "Caracter inesperado en la línea %s"
|
||||
msgstr "Caracter inesperado en la línea %s."
|
||||
|
||||
#: libraries/Advisor.class.php:434
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
|
||||
#, php-format
|
||||
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"."
|
||||
msgstr ""
|
||||
"Caracter inesperado en la línea %1$s. Se esperaba una tabulación pero se "
|
||||
"encontró «%2$s»"
|
||||
"encontró «%2$s»."
|
||||
|
||||
#: libraries/Advisor.class.php:467
|
||||
msgid "per second"
|
||||
@ -2649,7 +2648,7 @@ msgstr "Mostrando registros"
|
||||
msgid "total"
|
||||
msgstr "total"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "La consulta tardó %01.4f seg"
|
||||
@ -3359,7 +3358,7 @@ msgid ""
|
||||
"range is 0 to 4,294,967,295"
|
||||
msgstr ""
|
||||
"Un entero de 4 bytes; el rango con signo es de 2147483648 a 2147483647, el "
|
||||
"rango sin signo es de 0 a 4294967295."
|
||||
"rango sin signo es de 0 a 4294967295"
|
||||
|
||||
#: libraries/Types.class.php:304
|
||||
msgid ""
|
||||
@ -3929,19 +3928,19 @@ msgstr "Método de autenticación no válido definido en la configuración:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Usted debería actualizar su %s a la versión %s o más reciente."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Error: no coincide un «token»"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "intento de sobre-escritura de la variable GLOBALS"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "posible aprovechamiento"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "telado numérico detectado"
|
||||
|
||||
@ -4099,16 +4098,16 @@ msgid "\"%s\" requires %s extension"
|
||||
msgstr "\"%s\" requiere la extensión %s"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:792
|
||||
#, fuzzy, php-format
|
||||
#| msgid "import will not work, missing function (%s)"
|
||||
#, php-format
|
||||
msgid "Compressed import will not work due to missing function %s."
|
||||
msgstr "la importación no funcionará, falta una función (%s)"
|
||||
msgstr ""
|
||||
"La importación comprimida no funcionará debido a la falta de la función %s."
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:798
|
||||
#, fuzzy, php-format
|
||||
#| msgid "export will not work, missing function (%s)"
|
||||
#, php-format
|
||||
msgid "Compressed export will not work due to missing function %s."
|
||||
msgstr "la exportación no funcionará, falta una función (%s)"
|
||||
msgstr ""
|
||||
"La exportación comprimida no funcionará debido a la falta de la función %s."
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:808
|
||||
msgid "SQL Validator is disabled"
|
||||
@ -4125,7 +4124,7 @@ msgstr "máximo %s"
|
||||
|
||||
#: libraries/config/FormDisplay.tpl.php:221
|
||||
msgid "This setting is disabled, it will not be applied to your configuration."
|
||||
msgstr "Esta opción está deshabilitada, no se aplicará a su configuración"
|
||||
msgstr "Esta opción está deshabilitada, no se aplicará a su configuración."
|
||||
|
||||
#: libraries/config/FormDisplay.tpl.php:309
|
||||
#, php-format
|
||||
@ -6390,8 +6389,6 @@ msgstr "CSV usando LOAD DATA"
|
||||
#: libraries/config/setup.forms.php:260 libraries/config/setup.forms.php:353
|
||||
#: libraries/config/user_preferences.forms.php:160
|
||||
#: libraries/config/user_preferences.forms.php:252
|
||||
#, fuzzy
|
||||
#| msgid "Open Document Spreadsheet"
|
||||
msgid "OpenDocument Spreadsheet"
|
||||
msgstr "Hoja de cálculo Open Document"
|
||||
|
||||
@ -6422,8 +6419,6 @@ msgstr "Microsoft Word 2000"
|
||||
|
||||
#: libraries/config/setup.forms.php:357
|
||||
#: libraries/config/user_preferences.forms.php:256
|
||||
#, fuzzy
|
||||
#| msgid "Open Document Text"
|
||||
msgid "OpenDocument Text"
|
||||
msgstr "Texto Open Document"
|
||||
|
||||
@ -7258,7 +7253,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "No se encontraron datos para la visualización GIS."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
"MySQL ha devuelto un conjunto de valores vacío (es decir: cero columnas)."
|
||||
@ -7379,11 +7374,11 @@ msgstr ""
|
||||
"Use la tecla TAB para saltar de un valor a otro, o CTRL+flechas para moverse "
|
||||
"a cualquier parte"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Mostrando la consulta SQL"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "La Id de la fila insertada es: %1$d"
|
||||
@ -7429,7 +7424,7 @@ msgstr "Agregar prefijo a la tabla:"
|
||||
msgid "Add prefix"
|
||||
msgstr "Agregar prefijo"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "¿Realmente desea ejecutar la siguiente consulta?"
|
||||
|
||||
@ -9919,51 +9914,36 @@ msgid "Generated by:"
|
||||
msgstr "Generado por:"
|
||||
|
||||
#: libraries/sql.lib.php:495
|
||||
#, fuzzy
|
||||
#| msgid "Data file grow size"
|
||||
msgid "Detailed profile"
|
||||
msgstr "Tamaño que puede crecer el archivo de datos"
|
||||
msgstr "Perfilación detallada"
|
||||
|
||||
#: libraries/sql.lib.php:498
|
||||
#, fuzzy
|
||||
#| msgid "Other"
|
||||
msgid "Order"
|
||||
msgstr "Otro"
|
||||
msgstr "Orden"
|
||||
|
||||
#: libraries/sql.lib.php:500 libraries/sql.lib.php:546
|
||||
#, fuzzy
|
||||
#| msgctxt "Start of recurring event"
|
||||
#| msgid "Start"
|
||||
msgid "State"
|
||||
msgstr "Inicio"
|
||||
msgstr "Estado"
|
||||
|
||||
#: libraries/sql.lib.php:543
|
||||
msgid "Summary by state"
|
||||
msgstr ""
|
||||
msgstr "Resumen por estado"
|
||||
|
||||
#: libraries/sql.lib.php:551
|
||||
#, fuzzy
|
||||
#| msgid "Total time:"
|
||||
msgid "Total Time"
|
||||
msgstr "Tiempo total:"
|
||||
msgstr "Tiempo Total"
|
||||
|
||||
#: libraries/sql.lib.php:553
|
||||
#, fuzzy
|
||||
#| msgid "Time"
|
||||
msgid "% Time"
|
||||
msgstr "Tiempo"
|
||||
msgstr "% de Tiempo"
|
||||
|
||||
#: libraries/sql.lib.php:555
|
||||
#, fuzzy
|
||||
#| msgid "Close"
|
||||
msgid "Calls"
|
||||
msgstr "Cerrar"
|
||||
msgstr "Llamadas"
|
||||
|
||||
#: libraries/sql.lib.php:557
|
||||
#, fuzzy
|
||||
#| msgid "Time"
|
||||
msgid "ø Time"
|
||||
msgstr "Tiempo"
|
||||
msgstr "ø de Tiempo"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:188
|
||||
#, php-format
|
||||
@ -9983,7 +9963,7 @@ msgstr "Limpiar"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Guardar esta consulta en favoritos:"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Permitir que todo usuario pueda acceder a este favorito"
|
||||
|
||||
@ -10928,7 +10908,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Una vez reiniciado el servidor MySQL, pulse el botón Continuar. A "
|
||||
"continuación deberás ver un mensaje informando que el servidor <b>está</b> "
|
||||
"configurado como maestro"
|
||||
"configurado como maestro."
|
||||
|
||||
#: server_replication.php:281
|
||||
msgid "Slave SQL Thread not running!"
|
||||
@ -11154,7 +11134,7 @@ msgstr ""
|
||||
"configuración del servidor y rastrear consultas que toman mucho tiempo. Para "
|
||||
"esto último necesitará que «log_output» esté definido como 'TABLE' y tener "
|
||||
"activado «slow_query_log» o «general_log». Note, sin embargo, que «general_log» "
|
||||
"produce mucha información y aumenta la carga en el servidor hasta en un 15%"
|
||||
"produce mucha información y aumenta la carga en el servidor hasta en un 15%."
|
||||
|
||||
#: server_status_monitor.php:467
|
||||
msgid ""
|
||||
@ -11313,14 +11293,14 @@ msgid "Instructions/Setup"
|
||||
msgstr "Instrucciones/Configuración"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgstr "Se finalizó la reorganización/edición de gráficos"
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Se finalizó el arrastre (reorganización) de gráficos"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Se finalizó la reorganización/edición de gráficos"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Permitir arrastrar gráficos"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12473,25 +12453,25 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Datos incorrectos"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
"Utilizando el favorito \"%s\" como consulta predeterminada para examinar."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "No se creó el favorito"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Mostrar como código PHP"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "SQL validado"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
@ -12499,16 +12479,16 @@ msgstr ""
|
||||
"Esta tabla no contiene una columna única. La edición de la grilla y los "
|
||||
"enlaces de copiado, eliminación y edición no están disponibles."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problemas con los índices de la tabla `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Guardar esta consulta en favoritos"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr "Etiqueta:"
|
||||
|
||||
@ -14202,6 +14182,10 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "«concurrent_insert» está definido como 0"
|
||||
|
||||
#~| msgid "Done rearranging/editing charts"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Reorganizar/editar gráficos"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Document"
|
||||
|
||||
|
||||
111
po/et.po
111
po/et.po
@ -5,8 +5,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"PO-Revision-Date: 2013-05-23 12:38+0200\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-24 16:57+0200\n"
|
||||
"Last-Translator: Kristjan Räts <kristjanrats@gmail.com>\n"
|
||||
"Language-Team: Estonian <http://l10n.cihar.com/projects/phpmyadmin/master/et/"
|
||||
">\n"
|
||||
@ -233,8 +233,8 @@ msgstr "Kommentaarid"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Ei"
|
||||
@ -260,7 +260,7 @@ msgstr "Ei"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -650,7 +650,7 @@ msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
"Ei saanud importimise pluginaid laadida, palun kontrolli oma paigaldust!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "%s järjehoidja on loodud"
|
||||
@ -884,7 +884,7 @@ msgstr ""
|
||||
"Server töötab koos Suhosin'iga. Võimalike probleemide kohta loe %"
|
||||
"sdokumentatsioonist%s."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" käsud on keelatud."
|
||||
|
||||
@ -893,7 +893,7 @@ msgstr "\"DROP DATABASE\" käsud on keelatud."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Kas tõesti tahad käivitada \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Oled KUSTUTAMAS kogu andmebaasi!"
|
||||
|
||||
@ -2233,10 +2233,9 @@ msgid "Unexpected characters on line %s."
|
||||
msgstr "Ootamatud sümbolid %s. real"
|
||||
|
||||
#: libraries/Advisor.class.php:434
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
|
||||
#, php-format
|
||||
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"."
|
||||
msgstr "Ootamatu sümbol %1$s. real. Oodatud vaheleht, aga leiti \"%2$s\""
|
||||
msgstr "Ootamatu sümbol %1$s. real. Oodatud vaheleht, aga leiti \"%2$s\"."
|
||||
|
||||
#: libraries/Advisor.class.php:467
|
||||
msgid "per second"
|
||||
@ -2608,7 +2607,7 @@ msgstr "Näitan ridu"
|
||||
msgid "total"
|
||||
msgstr "kokku"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "päring kestis %01.4f sekundit"
|
||||
@ -3858,19 +3857,19 @@ msgstr "Seadistuses on valitud vale autentimise meetod:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Peaksid uuendama %s %s või uuemale versioonile."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Viga: sobimatu sümbol"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "GLOBALS ülekirjutamise katse"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "võimalik turvaauk"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "tuvastati arvvõti"
|
||||
|
||||
@ -4023,16 +4022,14 @@ msgid "\"%s\" requires %s extension"
|
||||
msgstr "\"%s\" vajab %s laiendit"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:792
|
||||
#, fuzzy, php-format
|
||||
#| msgid "import will not work, missing function (%s)"
|
||||
#, php-format
|
||||
msgid "Compressed import will not work due to missing function %s."
|
||||
msgstr "importimine ei toimi, puudulik funktsioon (%s)"
|
||||
msgstr "Pakitud importimine ei toimi, sest puudub funktsioon %s."
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:798
|
||||
#, fuzzy, php-format
|
||||
#| msgid "export will not work, missing function (%s)"
|
||||
#, php-format
|
||||
msgid "Compressed export will not work due to missing function %s."
|
||||
msgstr "eksportimine ei toimi, puudulik funktsioon (%s)"
|
||||
msgstr "Pakitud eksportimine ei toimi, sest puudub funktsioon %s."
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:808
|
||||
msgid "SQL Validator is disabled"
|
||||
@ -7087,7 +7084,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "GIS visualiseerimiseks andmeid ei leitud."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL tagastas tühja tulemuse (s.t nulliread)."
|
||||
|
||||
@ -7205,11 +7202,11 @@ msgstr ""
|
||||
"Ühelt väärtuselt teisele liikumiseks kasuta TAB-klahvi või mujale "
|
||||
"liikumiseks kasuta CTRL + nooled"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Näitan SQL päringut"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Lisatud rea id: %1$d"
|
||||
@ -7254,7 +7251,7 @@ msgstr "Lisa tabeli eesliide:"
|
||||
msgid "Add prefix"
|
||||
msgstr "Lisa eesliide"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Kas tõesti tahad käivitada selle päringu?"
|
||||
|
||||
@ -9699,51 +9696,36 @@ msgid "Generated by:"
|
||||
msgstr "Koostanud:"
|
||||
|
||||
#: libraries/sql.lib.php:495
|
||||
#, fuzzy
|
||||
#| msgid "Data file grow size"
|
||||
msgid "Detailed profile"
|
||||
msgstr "Andmete faili suurendamise maht"
|
||||
msgstr "Detailne profiil"
|
||||
|
||||
#: libraries/sql.lib.php:498
|
||||
#, fuzzy
|
||||
#| msgid "Other"
|
||||
msgid "Order"
|
||||
msgstr "Muud"
|
||||
msgstr "Järjestus"
|
||||
|
||||
#: libraries/sql.lib.php:500 libraries/sql.lib.php:546
|
||||
#, fuzzy
|
||||
#| msgctxt "Start of recurring event"
|
||||
#| msgid "Start"
|
||||
msgid "State"
|
||||
msgstr "Algus"
|
||||
msgstr "Olek"
|
||||
|
||||
#: libraries/sql.lib.php:543
|
||||
msgid "Summary by state"
|
||||
msgstr ""
|
||||
msgstr "Olekupõhine kokkuvõte"
|
||||
|
||||
#: libraries/sql.lib.php:551
|
||||
#, fuzzy
|
||||
#| msgid "Total time:"
|
||||
msgid "Total Time"
|
||||
msgstr "Aeg kokku:"
|
||||
msgstr "Aeg kokku"
|
||||
|
||||
#: libraries/sql.lib.php:553
|
||||
#, fuzzy
|
||||
#| msgid "Time"
|
||||
msgid "% Time"
|
||||
msgstr "Aeg"
|
||||
msgstr "% aeg"
|
||||
|
||||
#: libraries/sql.lib.php:555
|
||||
#, fuzzy
|
||||
#| msgid "Close"
|
||||
msgid "Calls"
|
||||
msgstr "Sulge"
|
||||
msgstr "Kutsed"
|
||||
|
||||
#: libraries/sql.lib.php:557
|
||||
#, fuzzy
|
||||
#| msgid "Time"
|
||||
msgid "ø Time"
|
||||
msgstr "Aeg"
|
||||
msgstr "ø aeg"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:188
|
||||
#, php-format
|
||||
@ -9763,7 +9745,7 @@ msgstr "Puhasta"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Lisa see SQL päring järjehoidjasse:"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehoidjale"
|
||||
|
||||
@ -11059,12 +11041,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "Juhendid/Paigaldus"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Diagrammide korrastamine/muutmine on valmis"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Korrasta/muuda diagramme"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Luba esiletõstmine"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12168,24 +12154,24 @@ msgstr "Võti peaks sisaldama tähti, numbreid [em]ja[/em] erilisi sümboleid."
|
||||
msgid "Wrong data"
|
||||
msgstr "Valed andmed"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "\"%s\" järjehoidjat kasutatakse vaikimisi sirvimise päringuna."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Järjehoidjat ei loodud"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Näitan PHP koodina"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Valideeritud SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
@ -12194,16 +12180,16 @@ msgstr ""
|
||||
"märkeruutudega, muutmisega, kopeerimisega ja kustutamisega seotud võimalused "
|
||||
"ei ole saadaval."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Probleemid `%s` tabeli indeksitega"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Lisa see SQL päring järjehoidjasse"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr "Nimi:"
|
||||
|
||||
@ -13854,6 +13840,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert väärtuseks on määratud 0"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Korrasta/muuda diagramme"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Document"
|
||||
|
||||
|
||||
61
po/eu.po
61
po/eu.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-04-25 15:47+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Basque <http://l10n.cihar.com/projects/phpmyadmin/master/eu/"
|
||||
@ -236,8 +236,8 @@ msgstr "Iruzkinak"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Ez"
|
||||
@ -263,7 +263,7 @@ msgstr "Ez"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -666,7 +666,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "%s laster-marka sortu da"
|
||||
@ -900,7 +900,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" sententziak ezgaituta daude."
|
||||
|
||||
@ -909,7 +909,7 @@ msgstr "\"DROP DATABASE\" sententziak ezgaituta daude."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Benetan nahi al duzu \"%s\" exekutatzea?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Datu-base osoa SUNTSITZERA zoaz!"
|
||||
|
||||
@ -2815,7 +2815,7 @@ msgstr "Errenkadak erakusten"
|
||||
msgid "total"
|
||||
msgstr "guztira"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Kontsulta exekutatzeko denbora %01.4f seg"
|
||||
@ -4046,19 +4046,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7233,7 +7233,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)."
|
||||
|
||||
@ -7355,11 +7355,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7414,7 +7414,7 @@ msgstr "Taularen aurrizkia aldatu"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10077,7 +10077,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Kontsulta hau gogokoetan gorde"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri"
|
||||
|
||||
@ -11425,13 +11425,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Taula berrizendatu izen honetara: "
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12398,43 +12397,43 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Datu-baserik ez"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "%s laster-marka sortu da"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "SQL balidatu"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Kontsulta hau gogokoetan gorde"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -13987,6 +13986,10 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Taula berrizendatu izen honetara: "
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Count tables"
|
||||
#~ msgstr "Taularik ez"
|
||||
|
||||
63
po/fa.po
63
po/fa.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-07 15:03+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Persian <http://l10n.cihar.com/projects/phpmyadmin/master/fa/"
|
||||
@ -236,8 +236,8 @@ msgstr "توضيحات"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "خير"
|
||||
@ -263,7 +263,7 @@ msgstr "خير"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -674,7 +674,7 @@ msgstr "نمی توان کاراکترها را بدون داشتن کتابخا
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "خطا در بارگزار پلاگین ها, لطفا مراحل نصب را چک کنید"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "بوک مارک %s ایجاد شده"
|
||||
@ -906,7 +906,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "عبارت \"DROP DATABASE\" غیر فعال است"
|
||||
|
||||
@ -916,7 +916,7 @@ msgstr "عبارت \"DROP DATABASE\" غیر فعال است"
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "آيا مطمئن هستيد "
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "شما برای حذف کامل پایگاه داده اقدام کرده اید!"
|
||||
|
||||
@ -2678,7 +2678,7 @@ msgstr ""
|
||||
msgid "total"
|
||||
msgstr "جمع كل"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr ""
|
||||
@ -3903,19 +3903,19 @@ msgstr "روش احراز هویت در تنظیمات صحیح نمی باشد:
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "شما باید به %s %s یا جدیدتر به روز شوید."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "احتمال وجود exploit"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "کلید عددی یافت شد"
|
||||
|
||||
@ -6973,7 +6973,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)."
|
||||
|
||||
@ -7093,11 +7093,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7152,7 +7152,7 @@ msgstr "جایگزینی پیشوند جدول"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -9715,7 +9715,7 @@ msgstr "تقویم"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -11009,14 +11009,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Remove database"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "حذف پایگاه داده"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -11981,28 +11979,28 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "No databases"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "بوک مارک %s ایجاد شده"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "معتبرسازي SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "This table does not contain a unique column. Features related to the grid "
|
||||
@ -12014,16 +12012,16 @@ msgstr ""
|
||||
"این جدول هیچ مقدار کلیدی ندارد. امکانات ویرایش جدولی، چک باکس ها ، ویرایش ، "
|
||||
"کپی و حذف ممکن است کار نکنند."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Data Label"
|
||||
msgid "Label:"
|
||||
@ -13582,6 +13580,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "مقدار concurrent_insert صفر میباشد"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Remove database"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "حذف پایگاه داده"
|
||||
|
||||
#~ msgid "Count tables"
|
||||
#~ msgstr "تعداد جداول"
|
||||
|
||||
|
||||
63
po/fi.po
63
po/fi.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-12 22:13+0200\n"
|
||||
"Last-Translator: Lassi Ruonavaara <lassi@ruonavaara.fi>\n"
|
||||
"Language-Team: Finnish <http://l10n.cihar.com/projects/phpmyadmin/master/fi/"
|
||||
@ -236,8 +236,8 @@ msgstr "Kommentit"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Ei"
|
||||
@ -263,7 +263,7 @@ msgstr "Ei"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -669,7 +669,7 @@ msgstr "Tiedoston merkistöä ei voida muuttaa ilman merkistökirjastoa"
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "Tuontiin tarvittavaa lisäosaa ei voida tuoda, tarkista asetukset!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Kirjanmerkki %s luotu"
|
||||
@ -933,7 +933,7 @@ msgstr ""
|
||||
"Palvelin käyttää Suhosin-suojausjärjestelmää. Lue %sohjeista%s tietoja "
|
||||
"mahdollisista ongelmista."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty."
|
||||
|
||||
@ -942,7 +942,7 @@ msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Haluatko varmasti suorittaa \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!"
|
||||
|
||||
@ -2700,7 +2700,7 @@ msgstr "Näkyvillä rivit"
|
||||
msgid "total"
|
||||
msgstr "yhteensä"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Kysely kesti %01.4f s."
|
||||
@ -3927,19 +3927,19 @@ msgstr "Asetuksissa on virheellinen todennustapa:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "mahdollinen turva-aukko"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "numeerinen avain tunnistettu"
|
||||
|
||||
@ -7233,7 +7233,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "GIS visualisoinnille ei ole tietoja."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)."
|
||||
|
||||
@ -7368,11 +7368,11 @@ msgstr ""
|
||||
"Sarkaimella voi siirtyä arvosta seuraavaan, Ctrl- ja nuolinäppäimillä pystyy "
|
||||
"siirtymään minne suuntaan tahansa."
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Näytetään SQL-kysely"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Lisätyn rivin tunnus: %1$d"
|
||||
@ -7429,7 +7429,7 @@ msgstr "Käytä indeksiä/indeksejä"
|
||||
msgid "Add prefix"
|
||||
msgstr "Käytä indeksiä/indeksejä"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10139,7 +10139,7 @@ msgstr "Tyhjennä"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Tallenna SQL-kysely"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä"
|
||||
|
||||
@ -11530,14 +11530,14 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Remove database"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Tuhoa tietokanta"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Käytä korostusta"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12739,28 +12739,28 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Ei tietokantoja"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Kirjanmerkki %s luotu"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Näytetään PHP-koodina"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "Tarkista SQL-lause"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "This table does not contain a unique column. Features related to the grid "
|
||||
@ -12773,16 +12773,16 @@ msgstr ""
|
||||
"valintaneliöihin, Muokkaa-, Kopioi- ja Poista-linkkeihin liittyvät "
|
||||
"ominaisuudet eivät ehkä ole toiminnassa tallennuksen jälkeen."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Taulun \"%s\" indeksien kanssa on ongelmia"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Tallenna SQL-kysely"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14450,6 +14450,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "Enim. yhtäaikaisia yhteyksiä"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Remove database"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Tuhoa tietokanta"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Avaa dokumentti"
|
||||
|
||||
|
||||
149
po/fr.po
149
po/fr.po
@ -3,9 +3,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"PO-Revision-Date: 2013-05-23 13:11+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-25 11:58+0200\n"
|
||||
"Last-Translator: Jean-Noël AVILA <jn.avila@free.fr>\n"
|
||||
"Language-Team: French <http://l10n.cihar.com/projects/phpmyadmin/master/fr/"
|
||||
">\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -233,8 +233,8 @@ msgstr "Commentaires"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Non"
|
||||
@ -260,7 +260,7 @@ msgstr "Non"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -654,7 +654,7 @@ msgstr ""
|
||||
"Chargement impossible des greffons d'importation, veuillez vérifier votre "
|
||||
"installation !"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Signet %s créé"
|
||||
@ -893,7 +893,7 @@ msgstr ""
|
||||
"Ce serveur utilise Suhosin. Veuillez vous référer à la %sdocumentation%s "
|
||||
"pour en connaître les conséquences possibles."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "La commande «DROP DATABASE» est désactivée."
|
||||
|
||||
@ -902,7 +902,7 @@ msgstr "La commande «DROP DATABASE» est désactivée."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Voulez-vous vraiment exécuter «%s» ?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !"
|
||||
|
||||
@ -2219,17 +2219,17 @@ msgstr "PHP a émis l'erreur suivante : %s"
|
||||
#: libraries/Advisor.class.php:107
|
||||
#, php-format
|
||||
msgid "Failed evaluating precondition for rule '%s'."
|
||||
msgstr "Échec lors de l'évaluation de la précondition pour la règle «%s»"
|
||||
msgstr "Échec lors de l'évaluation de la précondition pour la règle «%s»."
|
||||
|
||||
#: libraries/Advisor.class.php:124
|
||||
#, php-format
|
||||
msgid "Failed calculating value for rule '%s'."
|
||||
msgstr "Échec de calcul de la valeur pour la règle «%s»"
|
||||
msgstr "Échec de calcul de la valeur pour la règle «%s»."
|
||||
|
||||
#: libraries/Advisor.class.php:143
|
||||
#, php-format
|
||||
msgid "Failed running test for rule '%s'."
|
||||
msgstr "Échec d'exécution du test pour la règle «%s»"
|
||||
msgstr "Échec d'exécution du test pour la règle «%s»."
|
||||
|
||||
#: libraries/Advisor.class.php:225
|
||||
#, php-format
|
||||
@ -2242,25 +2242,24 @@ msgid ""
|
||||
"Invalid rule declaration on line %1$s, expected line %2$s of previous rule."
|
||||
msgstr ""
|
||||
"Règle invalide à la ligne %1$s, la ligne %2$s de la règle précédente était "
|
||||
"attendue"
|
||||
"attendue."
|
||||
|
||||
#: libraries/Advisor.class.php:412
|
||||
#, php-format
|
||||
msgid "Invalid rule declaration on line %s."
|
||||
msgstr "Règle invalide à la ligne %s"
|
||||
msgstr "Règle invalide à la ligne %s."
|
||||
|
||||
#: libraries/Advisor.class.php:420
|
||||
#, php-format
|
||||
msgid "Unexpected characters on line %s."
|
||||
msgstr "Caractères imprévus à la ligne %s"
|
||||
msgstr "Caractères imprévus à la ligne %s."
|
||||
|
||||
#: libraries/Advisor.class.php:434
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
|
||||
#, php-format
|
||||
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"."
|
||||
msgstr ""
|
||||
"Caractère imprévue à la ligne %1$s. Une tabulation était attendue, mais \"%2"
|
||||
"$s\" a été trouvé"
|
||||
"Caractère imprévu à la ligne %1$s. Une tabulation était attendue, mais \"%2$s"
|
||||
"\" a été trouvé."
|
||||
|
||||
#: libraries/Advisor.class.php:467
|
||||
msgid "per second"
|
||||
@ -2633,7 +2632,7 @@ msgstr "Affichage des lignes"
|
||||
msgid "total"
|
||||
msgstr "total"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Traitement en %01.4f sec"
|
||||
@ -3340,9 +3339,9 @@ msgid ""
|
||||
"A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned "
|
||||
"range is 0 to 4,294,967,295"
|
||||
msgstr ""
|
||||
"Un nombre entier de 4 octets. La fourchette des nombres avec signe est de -2 "
|
||||
"147 483 648 à 2 147 483 647. Pour les nombres sans signe, c'est de 0 à 4 294 "
|
||||
"967 295."
|
||||
"Un nombre entier de 4 octets. La fourchette des entiers relatifs est de -2 "
|
||||
"147 483 648 à 2 147 483 647. Pour les entiers positifs, c'est de 0 à 4 294 "
|
||||
"967 295"
|
||||
|
||||
#: libraries/Types.class.php:304
|
||||
msgid ""
|
||||
@ -3911,19 +3910,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Vous devriez utiliser %s en version %s ou plus récente."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Erreur: disparité du jeton"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "Tentative d'écrasement de GLOBALS"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "vulnérabilité possible"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "Clé numérique détectée"
|
||||
|
||||
@ -4076,16 +4075,14 @@ msgid "\"%s\" requires %s extension"
|
||||
msgstr "«%s» requiert l'extension %s"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:792
|
||||
#, fuzzy, php-format
|
||||
#| msgid "import will not work, missing function (%s)"
|
||||
#, php-format
|
||||
msgid "Compressed import will not work due to missing function %s."
|
||||
msgstr "importation impossible, fonction manquante (%s)"
|
||||
msgstr "Importation compressée impossible, fonction manquante (%s)."
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:798
|
||||
#, fuzzy, php-format
|
||||
#| msgid "export will not work, missing function (%s)"
|
||||
#, php-format
|
||||
msgid "Compressed export will not work due to missing function %s."
|
||||
msgstr "exportation impossible, fonction manquante (%s)"
|
||||
msgstr "Exportation compressée impossible, fonction manquante (%s)."
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:808
|
||||
msgid "SQL Validator is disabled"
|
||||
@ -4103,7 +4100,7 @@ msgstr "maximum %s"
|
||||
#: libraries/config/FormDisplay.tpl.php:221
|
||||
msgid "This setting is disabled, it will not be applied to your configuration."
|
||||
msgstr ""
|
||||
"Ce réglage est désactivé, il ne sera pas appliqué à votre configuration"
|
||||
"Ce réglage est désactivé, il ne sera pas appliqué à votre configuration."
|
||||
|
||||
#: libraries/config/FormDisplay.tpl.php:309
|
||||
#, php-format
|
||||
@ -7195,7 +7192,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Données non disponibles pour visualisation GIS."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL a retourné un résultat vide (aucune ligne)."
|
||||
|
||||
@ -7317,11 +7314,11 @@ msgstr ""
|
||||
"Utilisez la tabulation pour aller d'une valeur à l'autre, ou CTRL+flèches "
|
||||
"pour aller n'importe où"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Affichage de la requête SQL"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Identifiant de la ligne insérée : %1$d"
|
||||
@ -7366,7 +7363,7 @@ msgstr "Ajouter un préfixe de table : "
|
||||
msgid "Add prefix"
|
||||
msgstr "Ajouter un préfixe"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Voulez-vous vraiment exécuter la requête suivante ?"
|
||||
|
||||
@ -9854,51 +9851,36 @@ msgid "Generated by:"
|
||||
msgstr "Généré par : "
|
||||
|
||||
#: libraries/sql.lib.php:495
|
||||
#, fuzzy
|
||||
#| msgid "Data file grow size"
|
||||
msgid "Detailed profile"
|
||||
msgstr "Taille de l'augmentation du fichier des données"
|
||||
msgstr "Profil détaillé"
|
||||
|
||||
#: libraries/sql.lib.php:498
|
||||
#, fuzzy
|
||||
#| msgid "Other"
|
||||
msgid "Order"
|
||||
msgstr "Autres"
|
||||
msgstr "Ordre"
|
||||
|
||||
#: libraries/sql.lib.php:500 libraries/sql.lib.php:546
|
||||
#, fuzzy
|
||||
#| msgctxt "Start of recurring event"
|
||||
#| msgid "Start"
|
||||
msgid "State"
|
||||
msgstr "Départ"
|
||||
msgstr "État"
|
||||
|
||||
#: libraries/sql.lib.php:543
|
||||
msgid "Summary by state"
|
||||
msgstr ""
|
||||
msgstr "Résumé par état"
|
||||
|
||||
#: libraries/sql.lib.php:551
|
||||
#, fuzzy
|
||||
#| msgid "Total time:"
|
||||
msgid "Total Time"
|
||||
msgstr "Temps total : "
|
||||
msgstr "Temps total"
|
||||
|
||||
#: libraries/sql.lib.php:553
|
||||
#, fuzzy
|
||||
#| msgid "Time"
|
||||
msgid "% Time"
|
||||
msgstr "Moment"
|
||||
msgstr "% Temps"
|
||||
|
||||
#: libraries/sql.lib.php:555
|
||||
#, fuzzy
|
||||
#| msgid "Close"
|
||||
msgid "Calls"
|
||||
msgstr "Fermer"
|
||||
msgstr "Appels"
|
||||
|
||||
#: libraries/sql.lib.php:557
|
||||
#, fuzzy
|
||||
#| msgid "Time"
|
||||
msgid "ø Time"
|
||||
msgstr "Moment"
|
||||
msgstr "Temps moyen"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:188
|
||||
#, php-format
|
||||
@ -9918,7 +9900,7 @@ msgstr "Vider"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Conserver cette requête SQL dans les signets : "
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Signet visible pour les autres utilisateurs"
|
||||
|
||||
@ -10854,8 +10836,8 @@ msgid ""
|
||||
"master."
|
||||
msgstr ""
|
||||
"Quand le serveur MySQL est redémarré, veuillez cliquer sur Exécuter. Par la "
|
||||
"suite vous devriez voir un message vous informant que ce serveur <b>est</b> "
|
||||
"configuré comme maître"
|
||||
"suite, vous devriez voir un message vous informant que ce serveur <b>est</b> "
|
||||
"configuré comme maître."
|
||||
|
||||
#: server_replication.php:281
|
||||
msgid "Slave SQL Thread not running!"
|
||||
@ -11075,11 +11057,11 @@ msgid ""
|
||||
"enabled. Note however, that the general_log produces a lot of data and "
|
||||
"increases server load by up to 15%."
|
||||
msgstr ""
|
||||
"Le moniteur phpMyAdmin peut vous aider à optimiser la configuration serveur "
|
||||
"et à traquer les requêtes qui prennent beaucoup de temps. Pour ce faire vous "
|
||||
"devrez régler le paramètre log_output à 'TABLE' et activer le journal "
|
||||
"slow_query_log ou general_log. Cependant, general_log produit beaucoup de "
|
||||
"données et augmente jusqu'à 15% la charge du serveur"
|
||||
"Le moniteur phpMyAdmin peut vous aider à optimiser la configuration du "
|
||||
"serveur et à traquer les requêtes qui prennent beaucoup de temps. Pour ce "
|
||||
"faire vous devrez régler le paramètre log_output à 'TABLE' et activer le "
|
||||
"journal slow_query_log ou general_log. Cependant, general_log produit "
|
||||
"beaucoup de données et augmente jusqu'à 15% la charge du serveur."
|
||||
|
||||
#: server_status_monitor.php:467
|
||||
msgid ""
|
||||
@ -11237,12 +11219,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "Consignes / réglages"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Terminé de modifier les graphiques"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Modifier les graphiques"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Active le mode glissement"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12370,24 +12356,24 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Données incorrectes"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "Le signet «%s» a été utilisé comme requête par défaut."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Signet non créé"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Affichage du code PHP"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "SQL validé"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
@ -12396,16 +12382,16 @@ msgstr ""
|
||||
"cases à cocher ainsi que les liens Edition, Copie et Supprimer ne sont pas "
|
||||
"disponibles."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Il y a des problèmes avec les index de la table `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Conserver cette requête SQL dans les signets"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr "Intitulé : "
|
||||
|
||||
@ -14086,6 +14072,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "Le paramètre concurrent_insert a une valeur de 0"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Modifier les graphiques"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Texte Open Document"
|
||||
|
||||
|
||||
63
po/gl.po
63
po/gl.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-04-13 18:37+0200\n"
|
||||
"Last-Translator: Julio Guerra <xullo123@hotmail.com>\n"
|
||||
"Language-Team: Galician <http://l10n.cihar.com/projects/phpmyadmin/master/gl/"
|
||||
@ -236,8 +236,8 @@ msgstr "Comentarios"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Non"
|
||||
@ -263,7 +263,7 @@ msgstr "Non"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -670,7 +670,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "Non foi posíbel importar os engadidos - Comprobe a instalación!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Creouse o marcador %s"
|
||||
@ -928,7 +928,7 @@ msgstr ""
|
||||
"O servidor estáse a executar con Suhosin. Consulte os posíbeis problemas na %"
|
||||
"sdocumentación%s."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Non se permiten as ordes «DROP DATABASE»."
|
||||
|
||||
@ -937,7 +937,7 @@ msgstr "Non se permiten as ordes «DROP DATABASE»."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Seguro que quere executar \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Está a piques de eliminar (DESTROY) unha base de datos enteira!"
|
||||
|
||||
@ -2686,7 +2686,7 @@ msgstr "A mostrar as fileiras"
|
||||
msgid "total"
|
||||
msgstr "total"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "a consulta levou %01.4f segundos"
|
||||
@ -3966,19 +3966,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Debería actualizar a %s %s ou posterior."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Erro: o token non coincide"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "Tentouse substituír GLOBALS"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "posíbel vulnerabilidade (exploit)"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "detectouse unha tecla numérica"
|
||||
|
||||
@ -7326,7 +7326,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Non se atoparon datos para a visualización de GIS."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "O MySQL retornou un conxunto baleiro (isto é, cero fileiras)."
|
||||
|
||||
@ -7447,11 +7447,11 @@ msgstr ""
|
||||
"Use a tecla do tabulador para moverse de valor en valor ou a tecla CONTROL "
|
||||
"combinada cunha frecha para moverse a calquera sitio"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Mostrar a consulta de SQL"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Identificador da fileira inserida: %1$d"
|
||||
@ -7502,7 +7502,7 @@ msgstr "Engadir un prefixo á táboa"
|
||||
msgid "Add prefix"
|
||||
msgstr "Engadir un prefixo"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Está realmente seguro de executar a seguinte petición?"
|
||||
|
||||
@ -10081,7 +10081,7 @@ msgstr "Limpar"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Marcar esta busca de SQL"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Permitir que calquera usuario poida acceder a este marcador"
|
||||
|
||||
@ -11415,12 +11415,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "Instrucións/Configuración"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Rematou a redistribución/edición das gráficas"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Redistribuír/editar as gráficas"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Activar o realce"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12561,24 +12565,24 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Os datos son incorrectos"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "A empregar o marcador «%s» como consulta de navegación por omisión."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Non se creou o marcador"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Mostrar como código PHP"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "SQL validado"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "This table does not contain a unique column. Features related to the grid "
|
||||
@ -12591,16 +12595,16 @@ msgstr ""
|
||||
"relacionadas coa edición da grecha, caixa de selección, editar, copiar e "
|
||||
"eliminar ligazóns poden non funcionar despois de gravar."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problemas cos índices da táboa «%s»"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Marcar esta busca de SQL"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14330,6 +14334,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert está definido como 0"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Redistribuír/editar as gráficas"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Document"
|
||||
|
||||
|
||||
63
po/he.po
63
po/he.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-04-28 20:50+0200\n"
|
||||
"Last-Translator: Efraim Flashner <efraim.flashner@gmail.com>\n"
|
||||
"Language-Team: Hebrew <http://l10n.cihar.com/projects/phpmyadmin/master/he/"
|
||||
@ -230,8 +230,8 @@ msgstr "הערות"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "לא"
|
||||
@ -257,7 +257,7 @@ msgstr "לא"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -641,7 +641,7 @@ msgstr "לא ניתן להמיר את קידוד התווים של הקובץ ל
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "לא ניתן לטעון את תוספי הייבוא, נא לבדוק האם ההתקנה שלך תקינה!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "הסימנייה %s נוצרה"
|
||||
@ -872,7 +872,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "הוראות \"DROP DATABASE\" מנוטרלות."
|
||||
|
||||
@ -881,7 +881,7 @@ msgstr "הוראות \"DROP DATABASE\" מנוטרלות."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "האם אכן ברצונך להפעיל את „%s”?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "פעולה זו עלולה להשמיד מסד נתונים שלם!"
|
||||
|
||||
@ -2780,7 +2780,7 @@ msgstr "מראה שורות"
|
||||
msgid "total"
|
||||
msgstr "סה\"כ"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "שאילתה לקחה %01.4f שניות"
|
||||
@ -4010,19 +4010,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "אתה צריך לשדרג אל %s %s לפחות."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7200,7 +7200,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)."
|
||||
|
||||
@ -7321,11 +7321,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7382,7 +7382,7 @@ msgstr "הוספת שדה חדש"
|
||||
msgid "Add prefix"
|
||||
msgstr "הוספת שדה חדש"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -9979,7 +9979,7 @@ msgstr "לוח שנה"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "הכנס שאילתת SQL זאת למועדפים"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת"
|
||||
|
||||
@ -11315,14 +11315,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "שינוי שם מאגר נתונים אל"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12287,43 +12285,43 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "אין מאגרי נתונים"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "הסימנייה %s נוצרה"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "בדיקת תקינות SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "בעיות עם אינדקסים של טבלה `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "הכנס שאילתת SQL זאת למועדפים"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -13878,6 +13876,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Rename database to"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "שינוי שם מאגר נתונים אל"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Count tables"
|
||||
#~ msgstr "אין טבלאות"
|
||||
|
||||
63
po/hi.po
63
po/hi.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-04-25 16:02+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Hindi <http://l10n.cihar.com/projects/phpmyadmin/master/hi/>\n"
|
||||
@ -234,8 +234,8 @@ msgstr "टिप्पणी"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "नहीं"
|
||||
@ -261,7 +261,7 @@ msgstr "नहीं"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -672,7 +672,7 @@ msgstr "अक्षर सेट रूपांतरण पुस्तका
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "आयात प्लगइन्स नहीं लोड किये जा सके. कृपया अपनी संस्थापना जाँचें."
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "बुकमार्क %s बनाया"
|
||||
@ -910,7 +910,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" बयान अक्षम हैं."
|
||||
|
||||
@ -919,7 +919,7 @@ msgstr "\"DROP DATABASE\" बयान अक्षम हैं."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "क्या आप सचमुच \"%s\" निष्पादित चाहते है?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "आप एक पूरा डॅटाबेस मिटाने जा रहे हैं!"
|
||||
|
||||
@ -2694,7 +2694,7 @@ msgstr "रौ देखिये"
|
||||
msgid "total"
|
||||
msgstr "कुल"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "क्वरी को %01.4f सेकेंड का समय लगा"
|
||||
@ -3934,19 +3934,19 @@ msgstr "विन्यास में अवैध प्रमाणीकर
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "आपको %s %s या अधिक में नवीनीकृत करना चाहिए"
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7157,7 +7157,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "चार्ट के लिए कोई डेटा नहीं मिला"
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL ने एक खाली परिणाम सेट लोताया"
|
||||
|
||||
@ -7284,11 +7284,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "SQL क्वेरी शो"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "इनसर्ट रो id: %1$d"
|
||||
@ -7345,7 +7345,7 @@ msgstr "अनुक्रमणिका जोड़"
|
||||
msgid "Add prefix"
|
||||
msgstr "अनुक्रमणिका जोड़"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -9948,7 +9948,7 @@ msgstr "स्पष्ट"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "इस SQL-क्वरी को बुकमार्क कीजिये "
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए"
|
||||
|
||||
@ -11260,14 +11260,14 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Remove database"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "डेटाबेस को हटा दे"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "उजागर सक्षम"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12239,26 +12239,26 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "कोइ डाटाबेस नहिं"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "बुकमार्क %s बनाया"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "PHP कोड की तरह दिखाएँ"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "SQL मान्य"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "This table does not contain a unique column. Features related to the grid "
|
||||
@ -12270,16 +12270,16 @@ msgstr ""
|
||||
"इस टेबल में कोई भी विशिष्ट (unique) कॉलम नहीं है। इस बात कि सम्भावना है कि ग्रिड "
|
||||
"सम्पादन, टिक-बॉक्स, सम्पादन, प्रतिलिपि एवं मिटाने के लिंक से जुडी सुविधाएँ काम न करें।"
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "`%s` टेबल के अनुक्रमित के साथ समस्याएँ"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "इस SQL-क्वरी को बुकमार्क कीजिये"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -13929,6 +13929,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "अधिकतम वर्तमान कनेक्शन"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Remove database"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "डेटाबेस को हटा दे"
|
||||
|
||||
#~ msgid "Count tables when showing database list"
|
||||
#~ msgstr "डेटाबेस सूची दिखाते समय टेबल गणना करें"
|
||||
|
||||
|
||||
63
po/hr.po
63
po/hr.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-07 17:20+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Croatian <http://l10n.cihar.com/projects/phpmyadmin/master/hr/"
|
||||
@ -237,8 +237,8 @@ msgstr "Komentari"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Ne"
|
||||
@ -264,7 +264,7 @@ msgstr "Ne"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -673,7 +673,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "Nije moguće učitati dodatke za uvoz. Provjerite svoju instalaciju!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Izrađen je favorit %s"
|
||||
@ -924,7 +924,7 @@ msgstr ""
|
||||
"Poslužitelj pokrenut sa Suhosin. Proučite %sdokumentaciju%s radi mogućih "
|
||||
"problema."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" izjave su onemogućene."
|
||||
|
||||
@ -934,7 +934,7 @@ msgstr "\"DROP DATABASE\" izjave su onemogućene."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Želite li zaista "
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "UNIŠTIT ĆETE CJELOKUPNU BAZU PODATAKA!"
|
||||
|
||||
@ -2859,7 +2859,7 @@ msgstr "Prikazivanje redaka"
|
||||
msgid "total"
|
||||
msgstr "ukupno"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Upit je trajao %01.4f sek"
|
||||
@ -4116,19 +4116,19 @@ msgstr "Neispravan komplet načina provjere vjerodostojnosti u konfiguraciji:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Trebali biste nadograditi na %s %s ili kasniju."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7426,7 +7426,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)."
|
||||
|
||||
@ -7554,11 +7554,11 @@ msgstr ""
|
||||
"Pomoću tipke TAB premještate se od jedne vrijednost do druge vrijednost, "
|
||||
"odnosno s tipkama CTRL+Strelice za premještanje bilo kamo"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Prikazivanje SQL upita"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Umetnut ID retka: %1$d"
|
||||
@ -7613,7 +7613,7 @@ msgstr "Dodaj prefiks"
|
||||
msgid "Add prefix"
|
||||
msgstr "Dodaj prefiks"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10345,7 +10345,7 @@ msgstr "Kalendar"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Favoriziraj ovaj SQL upit"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Neka svi korisnici imaju pristup ovom favoritu"
|
||||
|
||||
@ -11710,14 +11710,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Preimenuj bazu podataka u"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12812,43 +12810,43 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Nema baza podataka"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Izrađen je favorit %s"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Prikazivanje kao PHP koda"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "Provjera valjanosti SQL-a"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problemi s indeksima tablice `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Favoriziraj ovaj SQL upit"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14481,6 +14479,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "najv. uzastopnih veza"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Rename database to"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Preimenuj bazu podataka u"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Open Document Text"
|
||||
#~ msgid "Open Document"
|
||||
|
||||
61
po/hu.po
61
po/hu.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-04-03 09:47+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Hungarian <http://l10n.cihar.com/projects/phpmyadmin/master/"
|
||||
@ -236,8 +236,8 @@ msgstr "Megjegyzések"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Nem"
|
||||
@ -263,7 +263,7 @@ msgstr "Nem"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -672,7 +672,7 @@ msgstr ""
|
||||
"Nem lehetett betölteni az importáló beépülő modulokat. Kérjük, ellenőrizze a "
|
||||
"telepítését!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "A(z) %s könyvjelző elkészült"
|
||||
@ -931,7 +931,7 @@ msgstr ""
|
||||
"A szerver Suhosinnal fut. Kérjük, hogy a lehetséges problémáknak nézzen "
|
||||
"utána a %sdokumentációban%s."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "A \"DROP DATABASE\" utasítást letiltották."
|
||||
|
||||
@ -940,7 +940,7 @@ msgstr "A \"DROP DATABASE\" utasítást letiltották."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Valóban végre szeretné hajtani: „%s”?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!"
|
||||
|
||||
@ -2671,7 +2671,7 @@ msgstr "Megjelenített sorok"
|
||||
msgid "total"
|
||||
msgstr "összesen"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "a lekérdezés %01.4f másodpercig tartott"
|
||||
@ -3878,19 +3878,19 @@ msgstr "Érvénytelen hitelesítési mód került beállításra a konfiguráci
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Frissítenie kell %s %s vagy újabb verzióra."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7259,7 +7259,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Nem található adat a GIS megjelenítőhöz."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)."
|
||||
|
||||
@ -7379,11 +7379,11 @@ msgstr ""
|
||||
"A TAB billentyűvel értékről értékre lépkedhet, vagy a CTRL+nyilakkal bárhová "
|
||||
"léphet"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Megjelenítés SQL lekérdezésként"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "A beszúrt sor azonosítószáma: %1$d"
|
||||
@ -7434,7 +7434,7 @@ msgstr "Tábla előtagjának lecserélése"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Valóban végre szeretné hajtani a következő lekérdezést?"
|
||||
|
||||
@ -10061,7 +10061,7 @@ msgstr "Törlés"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
"A hozzáférés ehhez a könyvjelzőhöz az összes felhasználó számára "
|
||||
@ -11367,12 +11367,14 @@ msgid "Instructions/Setup"
|
||||
msgstr "Utasítások/Beállítás"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Diagramok átrendezése/szerkesztése"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "A szövegkiemelés engedélyezése"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12505,42 +12507,42 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Hibás adat"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
"A(z) „%s” könyvjelző használata alapértelmezett tallózás lekérdezésként."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "A(z) %s könyvjelző elkészült"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Megjelenítés PHP kódként"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Érvényes SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Probléma a(z) `%s` tábla indexeivel"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14138,6 +14140,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "A concurrent_insert 0-ra van állítva"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Diagramok átrendezése/szerkesztése"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Document szöveges dokumentum"
|
||||
|
||||
|
||||
54
po/hy.po
54
po/hy.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-03-30 12:19+0200\n"
|
||||
"Last-Translator: Hamlet Muradyan <contact@hamletmuradyan.com>\n"
|
||||
"Language-Team: Armenian <http://l10n.cihar.com/projects/phpmyadmin/master/hy/"
|
||||
@ -237,8 +237,8 @@ msgstr "Մեկնաբանություններ"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Ոչ"
|
||||
@ -264,7 +264,7 @@ msgstr "Ոչ"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -647,7 +647,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr ""
|
||||
@ -853,7 +853,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr ""
|
||||
|
||||
@ -862,7 +862,7 @@ msgstr ""
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr ""
|
||||
|
||||
@ -2550,7 +2550,7 @@ msgstr ""
|
||||
msgid "total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr ""
|
||||
@ -3733,19 +3733,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -6728,7 +6728,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
|
||||
@ -6844,11 +6844,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -6897,7 +6897,7 @@ msgstr ""
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr ""
|
||||
|
||||
@ -9295,7 +9295,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -10512,11 +10512,11 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
@ -11457,39 +11457,39 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr ""
|
||||
|
||||
|
||||
54
po/ia.po
54
po/ia.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-05 22:29+0200\n"
|
||||
"Last-Translator: Giovanni Sora <g.sora@tiscali.it>\n"
|
||||
"Language-Team: Interlingua <http://l10n.cihar.com/projects/phpmyadmin/master/"
|
||||
@ -236,8 +236,8 @@ msgstr "Commentos"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
@ -263,7 +263,7 @@ msgstr "No"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -657,7 +657,7 @@ msgstr ""
|
||||
"Il non es possibile cargar plugins de importar, pro favor tu verifica tu "
|
||||
"installation!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Marcator de libro %s create"
|
||||
@ -870,7 +870,7 @@ msgstr ""
|
||||
"Sur le servitor es executante Suhosin. Controla le documentation: %"
|
||||
"sdocumentation%s pro possibile problema."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Commandos \"DROP DATABASE\" es dishabilitate."
|
||||
|
||||
@ -879,7 +879,7 @@ msgstr "Commandos \"DROP DATABASE\" es dishabilitate."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Tu es vermente secur que tu vole executar \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Tu es per DESTRUER un complete base de datos!"
|
||||
|
||||
@ -2557,7 +2557,7 @@ msgstr ""
|
||||
msgid "total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr ""
|
||||
@ -3736,19 +3736,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -6729,7 +6729,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
|
||||
@ -6845,11 +6845,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -6896,7 +6896,7 @@ msgstr ""
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr ""
|
||||
|
||||
@ -9279,7 +9279,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -10494,11 +10494,11 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
@ -11439,39 +11439,39 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr ""
|
||||
|
||||
|
||||
63
po/id.po
63
po/id.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2012-11-05 10:15+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Indonesian <http://l10n.cihar.com/projects/phpmyadmin/master/"
|
||||
@ -237,8 +237,8 @@ msgstr "Komentar"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Tidak"
|
||||
@ -264,7 +264,7 @@ msgstr "Tidak"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -678,7 +678,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "Tidak dapat memuat plugin import, harap periksa instalasi Anda!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Markah %s dibuat"
|
||||
@ -925,7 +925,7 @@ msgstr ""
|
||||
"Server berjalan dengan Suhosin. Harap rujuk %sdokumentasi%s untuk "
|
||||
"kemungkinan masalah."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Perintah \"DROP DATABASE\" dinonaktifkan."
|
||||
|
||||
@ -935,7 +935,7 @@ msgstr "Perintah \"DROP DATABASE\" dinonaktifkan."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Benarkah Anda ingin untuk "
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Anda akan MENGHAPUS seluruh basis data!"
|
||||
|
||||
@ -2715,7 +2715,7 @@ msgstr "Tampilan baris"
|
||||
msgid "total"
|
||||
msgstr "total"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Pencarian dilakukan dalam %01.4f detik"
|
||||
@ -3944,19 +3944,19 @@ msgstr "Metode autentikasi dalam konfigurasi tidak sah:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Anda harus memperbarui ke %s %s atau lebih baru."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "memungkinkan mengeksploitasi"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "tombol angka terdeteksi"
|
||||
|
||||
@ -7159,7 +7159,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Data untuk visualisasi GIS tidak ditemukan."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL memberikan hasil kosong (atau nol baris)."
|
||||
|
||||
@ -7282,11 +7282,11 @@ msgstr ""
|
||||
"Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah "
|
||||
"untuk maju kemana saja"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Menampilkan kueri SQL"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Nomor baris baru: %1$d"
|
||||
@ -7337,7 +7337,7 @@ msgstr "Tambahkan prefiks tabel"
|
||||
msgid "Add prefix"
|
||||
msgstr "Tambahkan prefiks"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -9904,7 +9904,7 @@ msgstr "Bersihkan"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Markahi kueri SQL ini"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Izinkan semua pengguna untuk mengakses markah ini"
|
||||
|
||||
@ -11193,12 +11193,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "Petunjuk/Penyiapan"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Selesai mengatur ulang/mengedit bagan"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Atur ulang/edit bagan"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Aktifkan penyorotan"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12188,26 +12192,26 @@ msgstr "Kunci harus terdiri dari huruf, angka, [em]dan[/em] karakter khusus."
|
||||
msgid "Wrong data"
|
||||
msgstr "Data salah"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "Menggunakan markah \"%s\" sebagai kueri penjelajahan bawaan."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Markah %s dibuat"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Tampilkan sebagai kode PHP"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "SQL tervalidasi"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "This table does not contain a unique column. Features related to the grid "
|
||||
@ -12220,16 +12224,16 @@ msgstr ""
|
||||
"grid, kotak centang, Edit, Copy dan Delete link mungkin tidak bekerja "
|
||||
"setelah disimpan."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Markahi kueri SQL ini"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -13852,6 +13856,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "Koneksi konkuren maks."
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Atur ulang/edit bagan"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Document"
|
||||
|
||||
|
||||
63
po/it.po
63
po/it.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-07 17:13+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Italian <http://l10n.cihar.com/projects/phpmyadmin/master/it/"
|
||||
@ -237,8 +237,8 @@ msgstr "Commenti"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "No"
|
||||
@ -264,7 +264,7 @@ msgstr "No"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -679,7 +679,7 @@ msgstr ""
|
||||
"Non è stato possibile caricare i plugin di importazione, controlla la tua "
|
||||
"installazione!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Segnalibro %s creato"
|
||||
@ -938,7 +938,7 @@ msgstr ""
|
||||
"Sul server è in esecuzione Suhosin. Controlla la documentazione: %"
|
||||
"sdocumentation%s per possibili problemi."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "I comandi \"DROP DATABASE\" sono disabilitati."
|
||||
|
||||
@ -947,7 +947,7 @@ msgstr "I comandi \"DROP DATABASE\" sono disabilitati."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Sei sicuro di voler eseguire \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Stai per DISTRUGGERE COMPLETAMENTE un intera base di dati!"
|
||||
|
||||
@ -2704,7 +2704,7 @@ msgstr "Mostrando le righe"
|
||||
msgid "total"
|
||||
msgstr "totale"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "La query ha impiegato %01.4f sec"
|
||||
@ -3922,19 +3922,19 @@ msgstr "Metodo di autenticazione impostato nella configurazione non valido:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Si dovrebbe aggiornare %s alla versione %s o successiva."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "Tentativo di sovrascrivere GLOBALS"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "possibile exploit"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "chiave numerica rilevata"
|
||||
|
||||
@ -7347,7 +7347,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Nessun data trovato per la visualizzazione GIS."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)."
|
||||
|
||||
@ -7469,11 +7469,11 @@ msgstr ""
|
||||
"Usare il tasto TAB per spostare il cursore di valore in valore, o CTRL"
|
||||
"+frecce per spostarlo altrove"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Visualizzo la query SQL"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Inserita riga id: %1$d"
|
||||
@ -7524,7 +7524,7 @@ msgstr "Aggiungi un prefisso alla tabella"
|
||||
msgid "Add prefix"
|
||||
msgstr "Aggiungi prefisso"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Sei sicuro di voler eseguire la seguente query?"
|
||||
|
||||
@ -10142,7 +10142,7 @@ msgstr "Cancella"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Aggiungi ai preferiti questa query SQL"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Permetti ad ogni utente di accedere a questo bookmark"
|
||||
|
||||
@ -11488,12 +11488,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "Istruzioni/Configurazione"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Ho finito di modificare/muovere i grafici"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Muovi/modifica i grafici"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Abilita evidenziamento"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12640,24 +12644,24 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Dati errati"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "Usa il segnalibro \"%s\" come la query di navigazione predefinita."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Segnalibro non creato"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Visualizzo comel codice PHP"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "SQL Validato"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "This table does not contain a unique column. Features related to the grid "
|
||||
@ -12670,16 +12674,16 @@ msgstr ""
|
||||
"modifica, copia ed eliminazione potrebbero non funzionare dopo il "
|
||||
"salvataggio."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problemi con gli indici della tabella `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Aggiungi ai preferiti questa query SQL"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14438,6 +14442,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert è impostato a 0"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Muovi/modifica i grafici"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Document"
|
||||
|
||||
|
||||
63
po/ja.po
63
po/ja.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-07 15:08+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Japanese <http://l10n.cihar.com/projects/phpmyadmin/master/ja/"
|
||||
@ -236,8 +236,8 @@ msgstr "コメント"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "いいえ"
|
||||
@ -263,7 +263,7 @@ msgstr "いいえ"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -677,7 +677,7 @@ msgstr ""
|
||||
"インポートプラグインが読み込めません。正しくインストールされているか確認して"
|
||||
"ください!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "ブックマーク %s を作成しました"
|
||||
@ -931,7 +931,7 @@ msgstr ""
|
||||
"Suhosin が稼働しているため問題が発生する可能性があります。詳しくは%sドキュメ"
|
||||
"ント%sをご覧ください。"
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "DROP DATABASE 文は無効にされています。"
|
||||
|
||||
@ -940,7 +940,7 @@ msgstr "DROP DATABASE 文は無効にされています。"
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "「%s」を本当に実行しますか?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "データベースを完全に削除しようとしています!"
|
||||
|
||||
@ -2692,7 +2692,7 @@ msgstr "行の表示"
|
||||
msgid "total"
|
||||
msgstr "合計"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "クエリの実行時間 %01.4f 秒"
|
||||
@ -3944,19 +3944,19 @@ msgstr "設定ファイルに無効な認証方法が指定されています:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "%s を %s 以降にアップグレードしてください。"
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "GLOBALS 変数が書き換えられている可能性があります"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "なんらかの攻撃をされている可能性があります"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "グローバル変数から数値キーが検出されました"
|
||||
|
||||
@ -7315,7 +7315,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "視覚化できる空間情報がありません。"
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "返り値が空でした (行数 0)。"
|
||||
|
||||
@ -7437,11 +7437,11 @@ msgstr ""
|
||||
"次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自"
|
||||
"由に移動できます"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "SQL クエリを表示"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "id %1$d の行を挿入しました"
|
||||
@ -7492,7 +7492,7 @@ msgstr "テーブル接頭辞の追加"
|
||||
msgid "Add prefix"
|
||||
msgstr "追加する接頭辞"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "以下のクエリを本当に実行しますか?"
|
||||
|
||||
@ -10073,7 +10073,7 @@ msgstr "クリア"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "この SQL をブックマークする"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "すべてのユーザがこのブックマークを利用できるようにする"
|
||||
|
||||
@ -11399,12 +11399,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "使用方法/セットアップ"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "グラフの再配置/編集完了"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "グラフの再配置/編集"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "強調表示を有効にする"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12500,26 +12504,26 @@ msgstr "キーは文字、数字[em]それと[/em]特殊文字を含める必要
|
||||
msgid "Wrong data"
|
||||
msgstr "データが正しくありません"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "デフォルトの表示クエリとしてブックマーク \"%s\" を使用する。"
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "ブックマーク %s を作成しました"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "PHP コードとして表示"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "検証した SQL 文"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "This table does not contain a unique column. Features related to the grid "
|
||||
@ -12532,16 +12536,16 @@ msgstr ""
|
||||
"ボックス、編集、コピー、削除のリンクに関連する機能は、保存後に動作しない場合"
|
||||
"があります。"
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "テーブル `%s` のインデックスに問題があります"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "この SQL をブックマークする"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14290,6 +14294,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert は 0 に設定されています。"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "グラフの再配置/編集"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Document"
|
||||
|
||||
|
||||
63
po/ka.po
63
po/ka.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2012-12-13 13:04+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Georgian <http://l10n.cihar.com/projects/phpmyadmin/master/ka/"
|
||||
@ -233,8 +233,8 @@ msgstr "კომენტარები"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "არა"
|
||||
@ -260,7 +260,7 @@ msgstr "არა"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -650,7 +650,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr ""
|
||||
@ -905,7 +905,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr ""
|
||||
|
||||
@ -915,7 +915,7 @@ msgstr ""
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "ნამდვილად გსურთ "
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr ""
|
||||
|
||||
@ -2872,7 +2872,7 @@ msgstr ""
|
||||
msgid "total"
|
||||
msgstr "სულ"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "მოთხოვნას დასჭირდა %01.4f წმ"
|
||||
@ -4117,19 +4117,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7482,7 +7482,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
|
||||
@ -7608,11 +7608,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "ჩამატებული სტრიქონის id: %1$d"
|
||||
@ -7669,7 +7669,7 @@ msgstr "ახალი ველის დამატება"
|
||||
msgid "Add prefix"
|
||||
msgstr "ახალი ველის დამატება"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10360,7 +10360,7 @@ msgstr "გაწმენდა"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -11705,14 +11705,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Rename database to"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12772,43 +12770,43 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters"
|
||||
msgid "Wrong data"
|
||||
msgstr "მონაცემთა ბაზები არაა"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark table"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "ცხრილის ჩანიშვნა"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "PHP კოდის სახით ჩვენება"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "Validate SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14450,6 +14448,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "max. concurrent connections"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Rename database to"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Rename database to"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Open Document Text"
|
||||
#~ msgid "Open Document"
|
||||
|
||||
54
po/kk.po
54
po/kk.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-07 17:20+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Kazakh <http://l10n.cihar.com/projects/phpmyadmin/master/kk/"
|
||||
@ -240,8 +240,8 @@ msgstr "Түсініктеме"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Жоқ"
|
||||
@ -267,7 +267,7 @@ msgstr "Жоқ"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -674,7 +674,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr ""
|
||||
@ -888,7 +888,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" (дерекқорды жою) командасы - өшірулі."
|
||||
|
||||
@ -897,7 +897,7 @@ msgstr "\"DROP DATABASE\" (дерекқорды жою) командасы - ө
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Сіз шынымен де сұраныстың орындалуын қалайсыз бе \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
#, fuzzy
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Сіз дерекқорды толығымен ЖОЙҒАЛЫ отырсыз!"
|
||||
@ -2601,7 +2601,7 @@ msgstr ""
|
||||
msgid "total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr ""
|
||||
@ -3787,19 +3787,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -6796,7 +6796,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
|
||||
@ -6912,11 +6912,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -6967,7 +6967,7 @@ msgstr "Кестениң префиксін ауыстыру"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr ""
|
||||
|
||||
@ -9390,7 +9390,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -10611,11 +10611,11 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
@ -11562,39 +11562,39 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr ""
|
||||
|
||||
|
||||
63
po/ko.po
63
po/ko.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-23 17:03+0200\n"
|
||||
"Last-Translator: Yungu Kim <crimsonpi@gmail.com>\n"
|
||||
"Language-Team: Korean <http://l10n.cihar.com/projects/phpmyadmin/master/ko/"
|
||||
@ -231,8 +231,8 @@ msgstr "설명"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "아니오"
|
||||
@ -258,7 +258,7 @@ msgstr "아니오"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -651,7 +651,7 @@ msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
"가져오기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "북마크 %s가 생성되었습니다."
|
||||
@ -884,7 +884,7 @@ msgstr ""
|
||||
"Server 가 Suhosin 으로 운영중입니다. 이로 인해 발생할 수 있는 문제는 %"
|
||||
"sdocumentation%s 에서 확인이 가능합니다."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다."
|
||||
|
||||
@ -893,7 +893,7 @@ msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "정말로 \"%s\"을/를 실행하시겠습니까?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "이 데이터베이스 전체를 제거하려고 합니다!"
|
||||
|
||||
@ -2602,7 +2602,7 @@ msgstr "행(레코드) 보기"
|
||||
msgid "total"
|
||||
msgstr "합계"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "질의 실행시간 %01.4f 초"
|
||||
@ -3819,19 +3819,19 @@ msgstr "설정 파일에 잘못된 인증 방식 설정되어 있습니다.:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "%s를 %s 이상으로 업그레이드 하십시오."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "어떤 공격을 받고있을 가능성이 있습니다"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "전역 변수에서 숫자로 된 키가 발견 되었습니다"
|
||||
|
||||
@ -6922,7 +6922,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "GIS 시각화를 위한 데이터를 찾을 수 없습니다."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "결과값이 없습니다. (빈 레코드 리턴)."
|
||||
|
||||
@ -7039,11 +7039,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr "TAB 키나 CTRL+화살표로 값 사이를 이동할 수 있습니다"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "SQL 쿼리 보기"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7098,7 +7098,7 @@ msgstr "인덱스 추가"
|
||||
msgid "Add prefix"
|
||||
msgstr "인덱스 추가"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "정말로 다음 쿼리를 실행하시겠습니까?"
|
||||
|
||||
@ -9612,7 +9612,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -10933,14 +10933,14 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Remove chart"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "차트 삭제"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "강조 표시 사용"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -11904,26 +11904,26 @@ msgstr "키는 문자, 숫자 [em]그리고[/em] 특수문자가 포함되어야
|
||||
msgid "Wrong data"
|
||||
msgstr "잘못된 데이터"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "북마크 %s가 생성되었습니다."
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "PHP 코드 보기"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "SQL 검사"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
@ -11931,16 +11931,16 @@ msgstr ""
|
||||
"이 테이블에는 유일 속성을 가진 컬럼이 없습니다. 격자창 편집, 체크박스, 편집, "
|
||||
"복사, 삭제 기능을 사용할 수 없습니다."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "이 SQL 질의를 북마크함"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr ""
|
||||
|
||||
@ -13466,6 +13466,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert가 0으로 설정되었습니다."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Remove chart"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "차트 삭제"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "No tables found in database"
|
||||
#~ msgid "Count tables when showing database list"
|
||||
|
||||
63
po/lt.po
63
po/lt.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-16 14:41+0200\n"
|
||||
"Last-Translator: Rytis Slatkevičius <rytis.s@gmail.com>\n"
|
||||
"Language-Team: Lithuanian <http://l10n.cihar.com/projects/phpmyadmin/master/"
|
||||
@ -236,8 +236,8 @@ msgstr "Komentarai"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Ne"
|
||||
@ -263,7 +263,7 @@ msgstr "Ne"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -667,7 +667,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "Nepavyko įkelti importuotų įskiepių, prašome patikrinti įdiegimą!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Žymė %s sukurta"
|
||||
@ -913,7 +913,7 @@ msgstr ""
|
||||
"Serveris veikia su Suhosin. Prašome perskaityti %sdokumentaciją%s dėl galimų "
|
||||
"problemų."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "„DROP DATABASE“ komandos įvykdyti negalima."
|
||||
|
||||
@ -922,7 +922,7 @@ msgstr "„DROP DATABASE“ komandos įvykdyti negalima."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Ar tikrai norite vykdyti „%s“?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Jūs ruošiatės SUNAIKINTI visą duomenų bazę!"
|
||||
|
||||
@ -2695,7 +2695,7 @@ msgstr "Rodomi įrašai"
|
||||
msgid "total"
|
||||
msgstr "iš viso"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Užklausa užtruko %01.4f sek."
|
||||
@ -3924,19 +3924,19 @@ msgstr "Blogai nustatytas identifikavimo metodas nustatymuose:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "galimas pažeidžiamumas"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7227,7 +7227,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Nerasta duomenų GIS vizualizavimui."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)."
|
||||
|
||||
@ -7354,11 +7354,11 @@ msgid ""
|
||||
msgstr ""
|
||||
"Šokinėjimui tarp reikšmių naudokite TAB mygtuką arba naudokite CTRL+rodyklės"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Rodoma SQL užklausa"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Įterpto įrašo id: %1$d"
|
||||
@ -7409,7 +7409,7 @@ msgstr "Pridėti lentelės priešdėlį"
|
||||
msgid "Add prefix"
|
||||
msgstr "Pridėti priešdėlį"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10022,7 +10022,7 @@ msgstr "Išvalyti"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Šios SQL užklausą pasižymėti kaip"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Leisti kitiems vartotojams naudotis šia žyme"
|
||||
|
||||
@ -11345,14 +11345,14 @@ msgid "Instructions/Setup"
|
||||
msgstr "Instrukcijos/Diegimas"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Remove chart"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Pašalinti diagramą"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Įjungti paryškinimą"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12360,41 +12360,41 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Nėra duomenų"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Žymė %s sukurta"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Rodomas PHP kodas"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Patikrintas SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Iškilo problemos su `%s` lentelės indeksais"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Šios SQL užklausą pasižymėti kaip"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14012,6 +14012,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "MyISAM concurrent įterpimai"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Remove chart"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Pašalinti diagramą"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Document"
|
||||
|
||||
|
||||
63
po/lv.po
63
po/lv.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-07 17:18+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Latvian <http://l10n.cihar.com/projects/phpmyadmin/master/lv/"
|
||||
@ -236,8 +236,8 @@ msgstr "Komentāri"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Nē"
|
||||
@ -263,7 +263,7 @@ msgstr "Nē"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -670,7 +670,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "Nevar ielādēt importētos spraudņus, lūdzu pārbaudi savu instalāciju!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Grāmatzīme %s izveidota"
|
||||
@ -904,7 +904,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" komanda ir aizliegta."
|
||||
|
||||
@ -913,7 +913,7 @@ msgstr "\"DROP DATABASE\" komanda ir aizliegta."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Vai Jūs tiešām gribat izpildīt \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Jūs taisaties LIKVIDĒT veselu datubāzi!"
|
||||
|
||||
@ -2761,7 +2761,7 @@ msgstr "Parādu rindas"
|
||||
msgid "total"
|
||||
msgstr "kopā"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Vaicājums ilga %01.4f s"
|
||||
@ -3996,19 +3996,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Jums ir jāuzliek %s %s vai jaunāks."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7189,7 +7189,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)."
|
||||
|
||||
@ -7313,11 +7313,11 @@ msgstr ""
|
||||
"Lietojiet TAB taustiņu, lai pārvietotos no vērtības līdz vērtībai, vai CTRL"
|
||||
"+bultiņas, lai pārvietotos jebkurā vietā"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7374,7 +7374,7 @@ msgstr "Pievienot jaunu lauku"
|
||||
msgid "Add prefix"
|
||||
msgstr "Pievienot jaunu lauku"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10056,7 +10056,7 @@ msgstr "Kalendārs"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Saglabāt šo SQL vaicājumu"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei"
|
||||
|
||||
@ -11411,14 +11411,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Pārsaukt datubāzi par"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12385,43 +12383,43 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Nav datubāzu"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Grāmatzīme %s izveidota"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "Pārbaudīt SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problēmas ar indeksiem tabulā `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Saglabāt šo SQL vaicājumu"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -13974,6 +13972,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Rename database to"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Pārsaukt datubāzi par"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Count tables"
|
||||
#~ msgstr "Nav tabulu"
|
||||
|
||||
63
po/mk.po
63
po/mk.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-04-25 15:32+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Macedonian <http://l10n.cihar.com/projects/phpmyadmin/master/"
|
||||
@ -236,8 +236,8 @@ msgstr "Коментари"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Не"
|
||||
@ -263,7 +263,7 @@ msgstr "Не"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -678,7 +678,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr ""
|
||||
@ -919,7 +919,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" командата е оневозможена."
|
||||
|
||||
@ -929,7 +929,7 @@ msgstr "\"DROP DATABASE\" командата е оневозможена."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Дали навистина сакате да "
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Со ова ја БРИШЕТЕ комплетната база на податоци!"
|
||||
|
||||
@ -2869,7 +2869,7 @@ msgstr "Приказ на записи од"
|
||||
msgid "total"
|
||||
msgstr "вкупно"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "време на извршување на упитот %01.4f секунди"
|
||||
@ -4110,19 +4110,19 @@ msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
"Би требало да го надоградите вашиот %s сервер на верзија %s или понова."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7333,7 +7333,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL врати празен резултат (нула записи)."
|
||||
|
||||
@ -7459,11 +7459,11 @@ msgstr ""
|
||||
"Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за "
|
||||
"слободно движење"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7520,7 +7520,7 @@ msgstr "Додади ново поле"
|
||||
msgid "Add prefix"
|
||||
msgstr "Додади ново поле"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10224,7 +10224,7 @@ msgstr "Календар"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Запамти SQL упит"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "дади дозвола на секој корисник да пристапува на овој упит"
|
||||
|
||||
@ -11574,14 +11574,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Remove database"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Избриши ја базата на податоци."
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12549,41 +12547,41 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Базата на податоци не постои"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "Провери SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Проблем при индексирање на табелата `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Запамти SQL упит"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14169,6 +14167,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Remove database"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Избриши ја базата на податоци."
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Count tables"
|
||||
#~ msgstr "Нема табела"
|
||||
|
||||
54
po/ml.po
54
po/ml.po
@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2011-09-27 08:42+0200\n"
|
||||
"Last-Translator: <sadik.khalid@gmail.com>\n"
|
||||
"Language-Team: Malayalam <ml@li.org>\n"
|
||||
@ -232,8 +232,8 @@ msgstr "അഭിപ്രായങ്ങൾ"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "ഇല്ല"
|
||||
@ -259,7 +259,7 @@ msgstr "ഇല്ല"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -643,7 +643,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr ""
|
||||
@ -847,7 +847,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr ""
|
||||
|
||||
@ -856,7 +856,7 @@ msgstr ""
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr ""
|
||||
|
||||
@ -2554,7 +2554,7 @@ msgstr ""
|
||||
msgid "total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr ""
|
||||
@ -3736,19 +3736,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -6739,7 +6739,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
|
||||
@ -6856,11 +6856,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -6907,7 +6907,7 @@ msgstr ""
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr ""
|
||||
|
||||
@ -9300,7 +9300,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -10524,11 +10524,11 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
@ -11469,39 +11469,39 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr ""
|
||||
|
||||
|
||||
63
po/mn.po
63
po/mn.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-04-25 15:34+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Mongolian <http://l10n.cihar.com/projects/phpmyadmin/master/"
|
||||
@ -236,8 +236,8 @@ msgstr "Тайлбар"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Үгүй"
|
||||
@ -263,7 +263,7 @@ msgstr "Үгүй"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -672,7 +672,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "Оруулах нэмэлтүүд дуудагдсангүй, суулгацаа шалгана уу!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Тэмдэглэл %s нь үүсгэгдлээ"
|
||||
@ -916,7 +916,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"ӨС устгах\" нь хаалттай."
|
||||
|
||||
@ -926,7 +926,7 @@ msgstr "\"ӨС устгах\" нь хаалттай."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Та үнэхээр "
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Дүүрэн өгөгдлийн сан УСТГАХ тухай?"
|
||||
|
||||
@ -2882,7 +2882,7 @@ msgstr "Мөрүүдийг харуулж байна"
|
||||
msgid "total"
|
||||
msgstr "Нийт"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Асуулт нь %01.4f сек авлаа"
|
||||
@ -4130,19 +4130,19 @@ msgstr "Тохиргоонд сонгогдсон буруу зөвшөөрли
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7353,7 +7353,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)."
|
||||
|
||||
@ -7479,11 +7479,11 @@ msgstr ""
|
||||
"TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар "
|
||||
"зөөгдөнө"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "SQL асуудал харуулах"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7540,7 +7540,7 @@ msgstr "Шинэ талбар нэмэх"
|
||||
msgid "Add prefix"
|
||||
msgstr "Шинэ талбар нэмэх"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10221,7 +10221,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Энэ SQL-асуулт-ыг тэмдэглэх"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх"
|
||||
|
||||
@ -11565,14 +11565,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Өгөгдлийн санг д.нэрлэх нь"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12586,43 +12584,43 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "ӨС байхгүй"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Тэмдэглэл %s нь үүсгэгдлээ"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "PHP кодоор харуулах"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "SQL-ийг батлах"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Хүснэгт `%s`-ийн индекс асуудалтай"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Энэ SQL-асуулт-ыг тэмдэглэх"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14243,6 +14241,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "ХИ. давхацсан холболтууд"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Rename database to"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Өгөгдлийн санг д.нэрлэх нь"
|
||||
|
||||
#~ msgid "Table seems to be empty!"
|
||||
#~ msgstr "Хүснэг хоосон үзэгдэж байна!"
|
||||
|
||||
|
||||
61
po/ms.po
61
po/ms.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-07 17:19+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Malay <http://l10n.cihar.com/projects/phpmyadmin/master/ms/>\n"
|
||||
@ -236,8 +236,8 @@ msgstr "Komen"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Tidak"
|
||||
@ -263,7 +263,7 @@ msgstr "Tidak"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -667,7 +667,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr ""
|
||||
@ -899,7 +899,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ."
|
||||
|
||||
@ -909,7 +909,7 @@ msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Adakah anda ingin "
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr ""
|
||||
|
||||
@ -2799,7 +2799,7 @@ msgstr "Papar baris"
|
||||
msgid "total"
|
||||
msgstr "jumlah"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr ""
|
||||
@ -4027,19 +4027,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7183,7 +7183,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)."
|
||||
|
||||
@ -7306,11 +7306,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7365,7 +7365,7 @@ msgstr "Ganti data jadual dengan fail"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -9912,7 +9912,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "andabuku kueri-SQL ini"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -11246,13 +11246,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Tukarnama jadual ke"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12217,41 +12216,41 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Tiada pangkalan data"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "Mengesahkan SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "andabuku kueri-SQL ini"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -13785,6 +13784,10 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Tukarnama jadual ke"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Count tables"
|
||||
#~ msgstr "Tiada Jadual"
|
||||
|
||||
63
po/nb.po
63
po/nb.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-03-26 11:59+0200\n"
|
||||
"Last-Translator: Stian Berg <mail.to.stian@gmail.com>\n"
|
||||
"Language-Team: Norwegian Bokmål <http://l10n.cihar.com/projects/phpmyadmin/"
|
||||
@ -235,8 +235,8 @@ msgstr "Kommentarer"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Nei"
|
||||
@ -262,7 +262,7 @@ msgstr "Nei"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -668,7 +668,7 @@ msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
"Kan ikke starte importeringsprogramtilleggene, kontroller din installasjon!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Bokmerke %s opprettet"
|
||||
@ -922,7 +922,7 @@ msgstr ""
|
||||
"Tjeneren kjører med Suhosin. Sjekk %sdokumentasjonen%s for potensielle "
|
||||
"problemer."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\"-uttrykk er avslått."
|
||||
|
||||
@ -931,7 +931,7 @@ msgstr "\"DROP DATABASE\"-uttrykk er avslått."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Vil du virkelig utføre \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Du er i ferd med å SLETTE en komplett database!"
|
||||
|
||||
@ -2668,7 +2668,7 @@ msgstr "Viser rader"
|
||||
msgid "total"
|
||||
msgstr "totalt"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Spørring tok %01.4f sek"
|
||||
@ -3884,19 +3884,19 @@ msgstr "Ugyldig autentiseringsmetode satt opp i konfigureringen:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Du burde oppgradere til %s %s eller nyere."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "mulig sikkerhetshull"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "numerisk nøkkel oppdaget"
|
||||
|
||||
@ -7257,7 +7257,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Ingen data funnet for graf."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)."
|
||||
|
||||
@ -7392,11 +7392,11 @@ msgstr ""
|
||||
"Bruk TAB tasten for å flytte fra verdi til verdi, eller CTRL+piltastene for "
|
||||
"å bevege deg hvor som helst"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Viser SQL spørring"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Insatt rad id: %1$d"
|
||||
@ -7451,7 +7451,7 @@ msgstr "Utfør indeks(er)"
|
||||
msgid "Add prefix"
|
||||
msgstr "Utfør indeks(er)"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10134,7 +10134,7 @@ msgstr "Fjern"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Lagre denne SQL-spørringen"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "La alle brukere ha adgang til dette bokmerket"
|
||||
|
||||
@ -11513,14 +11513,14 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Remove database"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Fjern database"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Aktiver utheving"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12704,41 +12704,41 @@ msgstr "Nøkkelen bør inneholde tall, bokstaver [em]og[/em] spesielle tegn"
|
||||
msgid "Wrong data"
|
||||
msgstr "Ingen databaser"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Bokmerke %s opprettet"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Viser som PHP kode"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Validert SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problemer med indeksene i tabellen `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Lagre denne SQL-spørringen"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14403,6 +14403,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "maks. samtidige tilkoblinger"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Remove database"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Fjern database"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Åpent Dokument"
|
||||
|
||||
|
||||
68
po/nl.po
68
po/nl.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"PO-Revision-Date: 2013-05-24 14:00+0200\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-25 13:57+0200\n"
|
||||
"Last-Translator: Dieter Adriaenssens <ruleant@users.sourceforge.net>\n"
|
||||
"Language-Team: Dutch <http://l10n.cihar.com/projects/phpmyadmin/master/nl/>\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 1.6-dev\n"
|
||||
|
||||
@ -230,8 +230,8 @@ msgstr "Opmerkingen"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Nee"
|
||||
@ -257,7 +257,7 @@ msgstr "Nee"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -655,7 +655,7 @@ msgstr ""
|
||||
"De plugins voor het importeren konden niet worden geladen, controleer uw "
|
||||
"installatie!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Bladwijzer %s aangemaakt"
|
||||
@ -892,7 +892,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"De server gebruikt Suhosin. Zie de %sdocumentatie%s voor mogelijke problemen."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld."
|
||||
|
||||
@ -901,7 +901,7 @@ msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Weet u zeker dat u de query \"%s\" wil uitvoeren?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "U staat op het punt een volledige databank te VERWIJDEREN!"
|
||||
|
||||
@ -2262,7 +2262,6 @@ msgstr "Onverwachte tekens op lijn %s."
|
||||
|
||||
#: libraries/Advisor.class.php:434
|
||||
#, php-format
|
||||
#| msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
|
||||
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"."
|
||||
msgstr "Onverwacht teken op lijn %1$s. Tab verwacht, \"%2$s\" gevonden."
|
||||
|
||||
@ -2636,7 +2635,7 @@ msgstr "Weergave van records"
|
||||
msgid "total"
|
||||
msgstr "totaal"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "query duurde %01.4f sec"
|
||||
@ -3909,19 +3908,19 @@ msgstr "Ongeldige authenticatiemethode opgegeven in configuratie:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "U moet upgraden naar %s %s of hoger."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Fout: token niet hetzelfde"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "poging om GLOBALS te overschrijven"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "mogelijk misbruik"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "numerieke toets gedetecteerd"
|
||||
|
||||
@ -7207,7 +7206,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Geen gegevens beschikbaar voor GIS-visualisatie."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL gaf een lege resultatenset terug (0 rijen)."
|
||||
|
||||
@ -7326,11 +7325,11 @@ msgstr ""
|
||||
"Gebruik de TAB-toets om van waarde naar waarde te navigeren of CTRL+pijltjes "
|
||||
"om vrijuit te navigeren"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Toont SQL-query"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Toegevoegd rijnummer: %1$d"
|
||||
@ -7376,7 +7375,7 @@ msgstr "Tabelvoorvoegsel toevoegen:"
|
||||
msgid "Add prefix"
|
||||
msgstr "Voorvoegsel toevoegen"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Weet u zeker dat u de volgende SQL-query wil uitvoeren?"
|
||||
|
||||
@ -9928,7 +9927,7 @@ msgstr "Leegmaken"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Deze SQL-query onthouden:"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Elke gebruiker toegang geven tot deze bladwijzer"
|
||||
|
||||
@ -11252,12 +11251,14 @@ msgid "Instructions/Setup"
|
||||
msgstr "Instructies/Setup"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgstr "Klaar met herschikken/bewerken van de grafieken"
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Klaar met slepen (herschikken) van de grafieken"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Herschikken/bewerken van de grafieken"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Grafieken verslepen ingeschakeld"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12397,24 +12398,24 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Verkeerde gegevens"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "Bladwijzer \"%s\" wordt gebruikt als standaard browsequery."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Bladwijzer niet aangemaakt"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Getoond als PHP-code"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Gevalideerde SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
@ -12422,16 +12423,16 @@ msgstr ""
|
||||
"Deze tabel bevat geen unieke kolom. Functies zoals rasterbewerkingen, "
|
||||
"checkboxen, Bewerken, Kopiëren en Verwijderen, zijn niet beschikbaar."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problemen met de indexen van de tabel `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Deze SQL-query opslaan"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr "Label:"
|
||||
|
||||
@ -14126,6 +14127,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert is ingesteld op 0"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Herschikken/bewerken van de grafieken"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Document"
|
||||
|
||||
|
||||
54
po/pa.po
54
po/pa.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2012-09-01 12:11+0200\n"
|
||||
"Last-Translator: gurjit dhillon <dhillon616@gmail.com>\n"
|
||||
"Language-Team: Punjabi <http://l10n.cihar.com/projects/phpmyadmin/master/pa/"
|
||||
@ -233,8 +233,8 @@ msgstr ""
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
@ -260,7 +260,7 @@ msgstr ""
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -636,7 +636,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr ""
|
||||
@ -838,7 +838,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr ""
|
||||
|
||||
@ -847,7 +847,7 @@ msgstr ""
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr ""
|
||||
|
||||
@ -2529,7 +2529,7 @@ msgstr ""
|
||||
msgid "total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr ""
|
||||
@ -3708,19 +3708,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -6699,7 +6699,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
|
||||
@ -6815,11 +6815,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -6864,7 +6864,7 @@ msgstr ""
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr ""
|
||||
|
||||
@ -9245,7 +9245,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -10460,11 +10460,11 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
@ -11405,39 +11405,39 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -229,8 +229,8 @@ msgstr ""
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
@ -256,7 +256,7 @@ msgstr ""
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -632,7 +632,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, possible-php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr ""
|
||||
@ -834,7 +834,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr ""
|
||||
|
||||
@ -843,7 +843,7 @@ msgstr ""
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr ""
|
||||
|
||||
@ -2521,7 +2521,7 @@ msgstr ""
|
||||
msgid "total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, possible-php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr ""
|
||||
@ -3700,19 +3700,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -6691,7 +6691,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
|
||||
@ -6807,11 +6807,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, possible-php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -6856,7 +6856,7 @@ msgstr ""
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr ""
|
||||
|
||||
@ -9237,7 +9237,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -10452,11 +10452,11 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
@ -11397,39 +11397,39 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, possible-php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, possible-php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr ""
|
||||
|
||||
|
||||
63
po/pl.po
63
po/pl.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-04-10 00:41+0200\n"
|
||||
"Last-Translator: Jakub S <jakub.st@gmail.com>\n"
|
||||
"Language-Team: Polish <http://l10n.cihar.com/projects/phpmyadmin/master/pl/"
|
||||
@ -237,8 +237,8 @@ msgstr "Komentarze"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Nie"
|
||||
@ -264,7 +264,7 @@ msgstr "Nie"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -671,7 +671,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "Nie udało się wczytać wtyczek importu. Proszę sprawdzić instalację!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Zakładka %s utworzona"
|
||||
@ -928,7 +928,7 @@ msgstr ""
|
||||
"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%"
|
||||
"s."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Instrukcje \"DROP DATABASE\" są wyłączone."
|
||||
|
||||
@ -937,7 +937,7 @@ msgstr "Instrukcje \"DROP DATABASE\" są wyłączone."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Czy na pewno chcesz wykonać \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Masz zamiar ZNISZCZYĆ całą bazę danych!"
|
||||
|
||||
@ -2684,7 +2684,7 @@ msgstr "Pokaż wiersze"
|
||||
msgid "total"
|
||||
msgstr "wszystkich"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Wykonanie zapytania trwało %01.4f sekund(y)"
|
||||
@ -3957,19 +3957,19 @@ msgstr "W konfiguracji ustawiono błędną metodę uwierzytelniania:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Należy uaktualnić do %s %s lub nowszej."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Błąd: Token niedopasowany"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "Próba nadpisania GLOBALS"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "można wykorzystać"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "wykryty klawisz numeryczny"
|
||||
|
||||
@ -7294,7 +7294,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Nie znaleziono danych do wizualizacji GIS."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL zwrócił pusty wynik (zero wierszy)."
|
||||
|
||||
@ -7415,11 +7415,11 @@ msgstr ""
|
||||
"Użyj TAB, aby przejść z wartości do wartości, lub CTRL+strzałki do "
|
||||
"poruszania się w dowolnym miejscu"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Wyświetl zapytanie SQL"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Id wstawionego wiersza: %1$d"
|
||||
@ -7470,7 +7470,7 @@ msgstr "Dodaj prefiks tabeli"
|
||||
msgid "Add prefix"
|
||||
msgstr "Dodaj prefiks"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Czy na pewno chcesz wykonać następującą kwerendę?"
|
||||
|
||||
@ -10042,7 +10042,7 @@ msgstr "Wyczyść"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Pamiętaj zapytanie SQL"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Niech każdy użytkownik ma dostęp do tej zakładki"
|
||||
|
||||
@ -11376,12 +11376,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "Instrukcje/Setup"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Gotowe przestawienie/edycji wykresów"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "przestawienie/edycji wykresów"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Włącz podświetlanie"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12508,24 +12512,24 @@ msgstr "Klucz powinien zawierać litery, cyfry [em]i[/em] znaki specjalne."
|
||||
msgid "Wrong data"
|
||||
msgstr "Nieprawidłowe dane"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "Korzystanie z zakładki \"%s\" jako domyślne przeglądanie zapytania."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Zakładka nie utworzona"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Pokaż jako kod PHP"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Weryfikacje SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
@ -12533,16 +12537,16 @@ msgstr ""
|
||||
"Tabela ta nie zawiera unikalnej kolumny. Funkcje związane z edycją siatki, "
|
||||
"pól wyboru, edycji, kopiowania i usuwania łącza może nie działać."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problemy z indeksami tabeli `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Pamiętaj zapytanie SQL"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14236,6 +14240,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert jest ustawiony na 0"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "przestawienie/edycji wykresów"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Otwórz dokument"
|
||||
|
||||
|
||||
63
po/pt.po
63
po/pt.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-11 00:09+0200\n"
|
||||
"Last-Translator: JP KAN <jpkk69@gmail.com>\n"
|
||||
"Language-Team: Portuguese <http://l10n.cihar.com/projects/phpmyadmin/master/"
|
||||
@ -234,8 +234,8 @@ msgstr "Comentários"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Não"
|
||||
@ -261,7 +261,7 @@ msgstr "Não"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -661,7 +661,7 @@ msgstr ""
|
||||
"Não foi possível carregar os import plugins, por favor verifique a sua "
|
||||
"instalação!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Marcador %s criado"
|
||||
@ -914,7 +914,7 @@ msgstr ""
|
||||
"Servidor a correr com Suhosin. Por favor verifique a %sdocumentação%s para "
|
||||
"eventuais problemas."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Os comandos \"DROP DATABASE\" estão inibidos."
|
||||
|
||||
@ -923,7 +923,7 @@ msgstr "Os comandos \"DROP DATABASE\" estão inibidos."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Você realmente deseja executar \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Estará prestes a DESTRUIR uma base de dados completa!"
|
||||
|
||||
@ -2672,7 +2672,7 @@ msgstr "Mostrando registos"
|
||||
msgid "total"
|
||||
msgstr "total"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "O Query demorou %01.4f sec"
|
||||
@ -3918,19 +3918,19 @@ msgstr "Método de autenticação definido nas configurações inválido:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "deve actualizar para %s %s ou mais recente."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "possível 'exploit'"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "Tecla numérica detectada"
|
||||
|
||||
@ -7254,7 +7254,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL não retornou nenhum registo."
|
||||
|
||||
@ -7377,12 +7377,12 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
#, fuzzy
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Mostrar queries completos"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7437,7 +7437,7 @@ msgstr "Substituir prefixo da tabela"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10047,7 +10047,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Marcar este comando SQL"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Deixar todos os utilizadores acederem a este marcador"
|
||||
|
||||
@ -11394,14 +11394,14 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Remove database"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Remover a Base de Dados"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Ativar destaque"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12370,28 +12370,28 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Sem bases de dados"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Marcador %s criado"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "Validar SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "This table does not contain a unique column. Features related to the grid "
|
||||
@ -12404,16 +12404,16 @@ msgstr ""
|
||||
"edição da tabela, checkbox, Editar, Copiar e Eliminar links podem não "
|
||||
"funcionar depois de guardar."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Marcar este comando SQL"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14029,6 +14029,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert está definida com o valor 0"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Remove database"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Remover a Base de Dados"
|
||||
|
||||
#~ msgid "Count tables when showing database list"
|
||||
#~ msgstr "Contar tabelas quando mostra lista de bases de dados"
|
||||
|
||||
|
||||
130
po/pt_BR.po
130
po/pt_BR.po
@ -3,15 +3,15 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"PO-Revision-Date: 2013-05-23 17:25+0200\n"
|
||||
"Last-Translator: Rodrigo Souza <rodrigo.chrome@live.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <http://l10n.cihar.com/projects/"
|
||||
"phpmyadmin/master/pt_BR/>\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-26 02:31+0200\n"
|
||||
"Last-Translator: Lucius Castellanos <luciuspgc@gmail.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) "
|
||||
"<http://l10n.cihar.com/projects/phpmyadmin/master/pt_BR/>\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 1.6-dev\n"
|
||||
|
||||
@ -232,8 +232,8 @@ msgstr "Comentários"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Não"
|
||||
@ -259,7 +259,7 @@ msgstr "Não"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -651,7 +651,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "Não foi possível carregar os plugins, verifique sua instalação!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Marcador %s criado"
|
||||
@ -889,7 +889,7 @@ msgstr ""
|
||||
"Servidor rodando com Suhosin. Favor utilizar a %sdocumentação%s para "
|
||||
"possíveis problemas."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "O comando \"DROP DATABASE\" está desabilitado."
|
||||
|
||||
@ -898,7 +898,7 @@ msgstr "O comando \"DROP DATABASE\" está desabilitado."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Você realmente deseja executar \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Você está prestes à DESTRUIR um banco de dados completamente!"
|
||||
|
||||
@ -2229,17 +2229,17 @@ msgstr "O PHP achou os erros a seguir: %s"
|
||||
#: libraries/Advisor.class.php:107
|
||||
#, php-format
|
||||
msgid "Failed evaluating precondition for rule '%s'."
|
||||
msgstr "Falha em avaliar a pré-condição da regra '%s'"
|
||||
msgstr "Falha em avaliar a pré-condição da regra '%s'."
|
||||
|
||||
#: libraries/Advisor.class.php:124
|
||||
#, php-format
|
||||
msgid "Failed calculating value for rule '%s'."
|
||||
msgstr "Falha em calcular o valor para a regra '%s'"
|
||||
msgstr "Falha em calcular o valor para a regra '%s'."
|
||||
|
||||
#: libraries/Advisor.class.php:143
|
||||
#, php-format
|
||||
msgid "Failed running test for rule '%s'."
|
||||
msgstr "Falha ao testar a regra '%s'"
|
||||
msgstr "Falha ao testar a regra '%s'."
|
||||
|
||||
#: libraries/Advisor.class.php:225
|
||||
#, php-format
|
||||
@ -2252,24 +2252,24 @@ msgid ""
|
||||
"Invalid rule declaration on line %1$s, expected line %2$s of previous rule."
|
||||
msgstr ""
|
||||
"Declaração de regra inválida na linha %1$s, é esperado a linha %2$s da regra "
|
||||
"anterior"
|
||||
"anterior."
|
||||
|
||||
#: libraries/Advisor.class.php:412
|
||||
#, php-format
|
||||
msgid "Invalid rule declaration on line %s."
|
||||
msgstr "Declaração de regra inválida na linha %s"
|
||||
msgstr "Declaração de regra inválida na linha %s."
|
||||
|
||||
#: libraries/Advisor.class.php:420
|
||||
#, php-format
|
||||
msgid "Unexpected characters on line %s."
|
||||
msgstr "Caracteres inesperados na linha %s"
|
||||
msgstr "Há caracteres inesperados na linha %s."
|
||||
|
||||
#: libraries/Advisor.class.php:434
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\""
|
||||
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"."
|
||||
msgstr ""
|
||||
"Caractere inesperado na linha %1$s. Esperado Tab, mas foi encontrado \"%2$s\""
|
||||
"Caractere inesperado na linha %1$s. Esperado Tab, mas foi encontrado \"%2$s\"."
|
||||
|
||||
#: libraries/Advisor.class.php:467
|
||||
msgid "per second"
|
||||
@ -2642,7 +2642,7 @@ msgstr "Mostrando registros"
|
||||
msgid "total"
|
||||
msgstr "total"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Consulta levou %01.4f segundos"
|
||||
@ -3347,7 +3347,7 @@ msgid ""
|
||||
"range is 0 to 4,294,967,295"
|
||||
msgstr ""
|
||||
"Um inteiro de 4 bytes, o limite com sinal vai de -2.147.483.648 a "
|
||||
"2.147.483.647, o limite sem sinal vai de 0 a 4.294.967.295."
|
||||
"2.147.483.647, o limite sem sinal vai de 0 a 4.294.967.295"
|
||||
|
||||
#: libraries/Types.class.php:304
|
||||
msgid ""
|
||||
@ -3912,19 +3912,19 @@ msgstr "Método de autenticação inválido informado nas configurações:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Você deveria atualizar para %s %s ou posterior."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Erro: Incompatibilidade de token"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "Tentativa de sobrescrever variáveis GLOBALS"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "Possível exploit"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "tecla numérica detectada"
|
||||
|
||||
@ -4077,16 +4077,18 @@ msgid "\"%s\" requires %s extension"
|
||||
msgstr "\"%s\" requer a extensão %s"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:792
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "import will not work, missing function (%s)"
|
||||
msgid "Compressed import will not work due to missing function %s."
|
||||
msgstr "importação não funciona, faltando função (%s)"
|
||||
msgstr ""
|
||||
"A importação comprimida não funcionará porque a função %s está faltando."
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:798
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "export will not work, missing function (%s)"
|
||||
msgid "Compressed export will not work due to missing function %s."
|
||||
msgstr "exportação não funciona, faltando função (%s)"
|
||||
msgstr ""
|
||||
"A exportação comprimida não funcionará porque a função %s está faltando."
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:808
|
||||
msgid "SQL Validator is disabled"
|
||||
@ -4104,7 +4106,7 @@ msgstr "máximo %s"
|
||||
#: libraries/config/FormDisplay.tpl.php:221
|
||||
msgid "This setting is disabled, it will not be applied to your configuration."
|
||||
msgstr ""
|
||||
"Essa configuração está desativada, não será aplicada à sua configuração"
|
||||
"Essa configuração está desativada, não será aplicada à sua configuração."
|
||||
|
||||
#: libraries/config/FormDisplay.tpl.php:309
|
||||
#, php-format
|
||||
@ -7194,7 +7196,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Não foram encontrados dados para a visualização GIS."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "O MySQL retornou um conjunto vazio (ex. zero registros)."
|
||||
|
||||
@ -7314,11 +7316,11 @@ msgstr ""
|
||||
"Usar a tecla TAB para se mover de valor em valor, ou CTRL+setas para mover "
|
||||
"em qualquer direção"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Exibindo consulta SQL"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Id da linha inserida: %1$d"
|
||||
@ -7363,7 +7365,7 @@ msgstr "Adicionar prefixo de tabelas:"
|
||||
msgid "Add prefix"
|
||||
msgstr "Adicionar índice"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Você realmente deseja executar a query SQL a seguir?"
|
||||
|
||||
@ -9828,51 +9830,44 @@ msgid "Generated by:"
|
||||
msgstr "Gerado por:"
|
||||
|
||||
#: libraries/sql.lib.php:495
|
||||
#, fuzzy
|
||||
#| msgid "Data file grow size"
|
||||
msgid "Detailed profile"
|
||||
msgstr "Tamanho que um arquivo de dados pode atingir"
|
||||
msgstr "Perfil detalhado"
|
||||
|
||||
#: libraries/sql.lib.php:498
|
||||
#, fuzzy
|
||||
#| msgid "Other"
|
||||
msgid "Order"
|
||||
msgstr "Outro"
|
||||
msgstr "Ordem"
|
||||
|
||||
#: libraries/sql.lib.php:500 libraries/sql.lib.php:546
|
||||
#, fuzzy
|
||||
#| msgctxt "Start of recurring event"
|
||||
#| msgid "Start"
|
||||
msgid "State"
|
||||
msgstr "Início"
|
||||
msgstr "Estado"
|
||||
|
||||
#: libraries/sql.lib.php:543
|
||||
msgid "Summary by state"
|
||||
msgstr ""
|
||||
msgstr "Índice por estado"
|
||||
|
||||
#: libraries/sql.lib.php:551
|
||||
#, fuzzy
|
||||
#| msgid "Total time:"
|
||||
msgid "Total Time"
|
||||
msgstr "Tempo total:"
|
||||
msgstr "Tempo Total"
|
||||
|
||||
#: libraries/sql.lib.php:553
|
||||
#, fuzzy
|
||||
#| msgid "Time"
|
||||
msgid "% Time"
|
||||
msgstr "Tempo"
|
||||
msgstr "% Tempo"
|
||||
|
||||
#: libraries/sql.lib.php:555
|
||||
#, fuzzy
|
||||
#| msgid "Close"
|
||||
msgid "Calls"
|
||||
msgstr "Fechar"
|
||||
msgstr "Chamadas"
|
||||
|
||||
#: libraries/sql.lib.php:557
|
||||
#, fuzzy
|
||||
#| msgid "Time"
|
||||
msgid "ø Time"
|
||||
msgstr "Tempo"
|
||||
msgstr "ø Tempo"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:188
|
||||
#, php-format
|
||||
@ -9892,7 +9887,7 @@ msgstr "Limpar"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Marcar essa query SQL:"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Deixar qualquer usuário acessar esse marcador"
|
||||
|
||||
@ -10825,7 +10820,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Assim que tiver reiniciado o servidor MySQL, por favor clique no botão Ir. "
|
||||
"Em seguida, você deveria ver uma mensagem informando você que este servidor "
|
||||
"<b>está</b> configurado como master"
|
||||
"<b>está</b> configurado como master."
|
||||
|
||||
#: server_replication.php:281
|
||||
msgid "Slave SQL Thread not running!"
|
||||
@ -11048,7 +11043,7 @@ msgstr ""
|
||||
"servidor e rastrear consultas com tempos intensos. Para este último, você "
|
||||
"precisará definir log_output na 'TABLE', e ter slow_query_log ou general_log "
|
||||
"habilitado. Note, porém, que general_log produz muitos dados e aumenta a "
|
||||
"carga do servidor em até 15%"
|
||||
"carga do servidor em até 15%."
|
||||
|
||||
#: server_status_monitor.php:467
|
||||
msgid ""
|
||||
@ -11210,12 +11205,14 @@ msgid "Instructions/Setup"
|
||||
msgstr "Instruções/Configurações"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgstr "Terminou a reorganização/edição de gráficos"
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Terminou de arrastar (reorganizar) os gráficos"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Reorganizar/editar gráficos"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Habilita o arraste de gráficos"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12345,24 +12342,24 @@ msgstr "A chave deve conter letras, números, [em]e[/em] caracteres especiais."
|
||||
msgid "Wrong data"
|
||||
msgstr "Dados incorretos"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "Usando marcador \"%s\" como query padrão de navegação."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Marcador não criado"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Exibindo como código PHP"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "SQL validado"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
@ -12370,16 +12367,16 @@ msgstr ""
|
||||
"Esta tabela não contém uma coluna única. As opções editar no Grid, caixa de "
|
||||
"seleção, Editar, Copiar e Apagar não estão disponíveis."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problemas com os índices da tabela `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Marcar essa consulta SQL"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr "Rótulo:"
|
||||
|
||||
@ -14061,6 +14058,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert está com valor 0"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Reorganizar/editar gráficos"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Document"
|
||||
|
||||
|
||||
64
po/ro.po
64
po/ro.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-04-03 09:45+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Romanian <http://l10n.cihar.com/projects/phpmyadmin/master/ro/"
|
||||
@ -237,8 +237,8 @@ msgstr "Comentarii"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Nu"
|
||||
@ -264,7 +264,7 @@ msgstr "Nu"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -678,7 +678,7 @@ msgstr ""
|
||||
"Nu au putut fi încărcate modulele adiționale de import, vă rog verificați "
|
||||
"instalarea!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Semnul de carte %s a fost creat"
|
||||
@ -926,7 +926,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate."
|
||||
|
||||
@ -936,7 +936,7 @@ msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Sigur doriți să "
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Sunteți pe cale să DISTRUGEȚI o întreagă bază de date!"
|
||||
|
||||
@ -2816,7 +2816,7 @@ msgstr "Afișează înregistrări"
|
||||
msgid "total"
|
||||
msgstr "total"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "comanda a durat %01.4f sec"
|
||||
@ -4068,19 +4068,19 @@ msgstr "Metodă de autentificare nevalidă stabilită în configurație:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "cheie numerica detectată"
|
||||
|
||||
@ -7602,7 +7602,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL a dat un set de rezultate gol (zero linii)."
|
||||
|
||||
@ -7730,11 +7730,11 @@ msgstr ""
|
||||
"Folosiți tasta TAB pentru a trece de la o valoare la alta sau CTRL+săgeți "
|
||||
"pentru a merge în oricare direcție"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Afișare interogare SQL"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "ID rînd inserat: %1$d"
|
||||
@ -7789,7 +7789,7 @@ msgstr "Înlocuiește prefixul tabelei"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10516,7 +10516,7 @@ msgstr "Calendar"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Pune semn de carte la această comandă SQL"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte"
|
||||
|
||||
@ -11884,14 +11884,15 @@ msgid "Instructions/Setup"
|
||||
msgstr "Introducere"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
# Activați evidențierea
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Redenumire bază de date în"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Activați highlighting-ul"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12871,28 +12872,28 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Nu sînt baze de date"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Semnul de carte %s a fost creat"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Afișare ca și cod PHP"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "Validează SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "This table does not contain a unique column. Features related to the grid "
|
||||
@ -12905,16 +12906,16 @@ msgstr ""
|
||||
"checkbox, sau link-urile de Editare, Copiere si Ștergere pot să nu "
|
||||
"funcționeze după salvare."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Probleme cu indexul tabelului `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Pune semn de carte la această comandă SQL"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14622,6 +14623,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert este setat cu 0"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Rename database to"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Redenumire bază de date în"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Open Document Text"
|
||||
#~ msgid "Open Document"
|
||||
|
||||
63
po/ru.po
63
po/ru.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-11 21:28+0200\n"
|
||||
"Last-Translator: Victor Volkov <hanut@php-myadmin.ru>\n"
|
||||
"Language-Team: Russian <http://l10n.cihar.com/projects/phpmyadmin/master/ru/"
|
||||
@ -233,8 +233,8 @@ msgstr "Комментарии"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Нет"
|
||||
@ -260,7 +260,7 @@ msgstr "Нет"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -654,7 +654,7 @@ msgstr ""
|
||||
"Отсутствуют модули импорта. Проверьте содержимое установленной копии "
|
||||
"phpMyAdmin!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Закладка "%s" создана"
|
||||
@ -893,7 +893,7 @@ msgstr ""
|
||||
"Сервер использует защитную систему Suhosin. Для решения возможных проблем "
|
||||
"обратитесь к %sдокументации%s."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Команда \"DROP DATABASE\" (удалить базу данных) - отключена."
|
||||
|
||||
@ -902,7 +902,7 @@ msgstr "Команда \"DROP DATABASE\" (удалить базу данных)
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Вы действительно хотите выполнить запрос \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "База данных будет полностью УДАЛЕНА!"
|
||||
|
||||
@ -2637,7 +2637,7 @@ msgstr "Отображает строки"
|
||||
msgid "total"
|
||||
msgstr "всего"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Запрос занял %01.4f сек."
|
||||
@ -3908,19 +3908,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Необходимо обновить %s до версии %s или выше."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Ошибка: Несоответствие Тоукена"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "попытка перезаписи GLOBALS"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "возможная уязвимость"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "определена числовая клавиша"
|
||||
|
||||
@ -7203,7 +7203,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Данные для визуализации GIS не найдены."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL вернула пустой результат (т.е. ноль строк)."
|
||||
|
||||
@ -7321,11 +7321,11 @@ msgstr ""
|
||||
"Для перемещения между полями значения, используйте клавишу TAB, либо CTRL"
|
||||
"+клавиши со стрелками - для свободного перемещения"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Отображает SQL-запрос"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Идентификатор вставленной строки: %1$d"
|
||||
@ -7376,7 +7376,7 @@ msgstr "Добавить префикс таблицы"
|
||||
msgid "Add prefix"
|
||||
msgstr "Добавить префикс"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Вы действительно хотите выполнить данный запрос?"
|
||||
|
||||
@ -9911,7 +9911,7 @@ msgstr "Очистить"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Создание закладки SQL запроса:"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Доступна для всех пользователей"
|
||||
|
||||
@ -11226,12 +11226,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "Инструкции/Настройки"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Завершено редактирование графиков"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Упорядочить/отредактировать графики"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Включить подсветку"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12381,24 +12385,24 @@ msgstr "Ключ должен содержать символы алфавита
|
||||
msgid "Wrong data"
|
||||
msgstr "Ошибочные данные"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "Для обзора данных использован запрос из закладки \"%s\"."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Закладка не создана"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Отображает как PHP-код"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "SQL синтаксис проверен"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
@ -12406,16 +12410,16 @@ msgstr ""
|
||||
"Данная таблица не содержит уникального столбца. Изменение сетки, выставление "
|
||||
"галочки, редактирование, копирование и удаление не доступно."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Проблемы с индексами таблицы `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Создание закладки"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr "Метка:"
|
||||
|
||||
@ -14108,6 +14112,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert установлен в 0"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Упорядочить/отредактировать графики"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Document"
|
||||
|
||||
|
||||
63
po/si.po
63
po/si.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-01-20 17:30+0200\n"
|
||||
"Last-Translator: Madhura Jayaratne <madhura.cj@gmail.com>\n"
|
||||
"Language-Team: Sinhala <http://l10n.cihar.com/projects/phpmyadmin/master/si/"
|
||||
@ -233,8 +233,8 @@ msgstr "විස්තරය"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "නැත"
|
||||
@ -260,7 +260,7 @@ msgstr "නැත"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -663,7 +663,7 @@ msgstr "අක්ෂර කට්ටල හැරවීම් පුස්තක
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "ආනයනය පේනු පූරණය අසමත් විය. ඔබගේ ස්ථාපිතය පරීක්ෂා කරන්න!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "%s පොත් සලකුණ සාදන ලදි"
|
||||
@ -913,7 +913,7 @@ msgstr ""
|
||||
"සේවාදායකය Suhosin සමග ක්රියාත්මකයි. මෙමගින් ඇති විය හැකි ගැටළු සම්බන්ධයෙන් %sලියකියවිලි%s "
|
||||
"බලන්න."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" ප්රකාශ අක්රීය කර ඇත."
|
||||
|
||||
@ -922,7 +922,7 @@ msgstr "\"DROP DATABASE\" ප්රකාශ අක්රීය කර ඇ
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "\"%s\" ක්රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්යද?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "ඔබ සූදානම් වන්නේ සම්පූර්ණ දත්තගබඩාවක් විනාශකර දැමීමටයි!"
|
||||
|
||||
@ -2641,7 +2641,7 @@ msgstr "පේළි පෙන්වමින්"
|
||||
msgid "total"
|
||||
msgstr "මුළු එකතුව"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි"
|
||||
@ -3883,19 +3883,19 @@ msgstr "වින්යසයන්හි වලංගු නැති සත
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "ඔබ %s %s හෝ ඉන්පසු අනුවාදයක් වෙත යාවත්කාලීන කල යුතුය."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "දෝෂය: ටෝකන නොගැලපීම"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "GLOBALS අගයන් උඩින් ලිවීමේ උත්සාහය"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "විය හැකි අයුතු ප්රයෝජන ගැනීමක්"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "සංඛ්යාත්මක යතුරක් අනාවරණය වුණි"
|
||||
|
||||
@ -7043,7 +7043,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "ජ්යාමිතික නිරූපණයට දත්ත කිසිවක් හමු නොවිණි."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL හිස් ප්රතිඵල කුලකයක් (පේළි කිසිවක් අඩංගු නොවන) සපයන ලදි."
|
||||
|
||||
@ -7161,11 +7161,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "SQL විමසුම පෙන්වමින්"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "%1$d පේළිය ඇතුල් කරන ලදි"
|
||||
@ -7216,7 +7216,7 @@ msgstr "වගු නාම මූලයක් එක් කරන්න"
|
||||
msgid "Add prefix"
|
||||
msgstr "නාම මූලයක් එක් කරන්න"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "පහත විමසුම ක්රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්යද?"
|
||||
|
||||
@ -9738,7 +9738,7 @@ msgstr "මකන්න"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න"
|
||||
|
||||
@ -11026,12 +11026,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "උපදෙස්/පිහිටුවීම"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "ප්රස්ථාර වෙනස් කර/අනුපිලිවෙල සකස්කර අවසානයි"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "ප්රස්ථාර වෙනස් කිරීම/අනුපිලිවෙල සකස් කිරීම"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "ඉස්මතු කිරීම සක්රීය කරන්න"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -11994,24 +11998,24 @@ msgstr "මූලයේ අක්ෂර, ඉලක්කම් [em]සහ[/em]
|
||||
msgid "Wrong data"
|
||||
msgstr "වැරදි දත්ත"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳහා වූ පෙරනිමි SQL විමසුම ලෙස යොදා ගනිමින්."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "පොත් සලකුණ නොසාදන ලදි"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "PHP කේත ලෙස පෙන්වමින්"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "තහවුරු කරන ලද SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "This table does not contain a unique column. Features related to the grid "
|
||||
@ -12023,16 +12027,16 @@ msgstr ""
|
||||
"මෙම වගුවෙහි අනුපම තීරුවක් නැත. සුරැකීමෙන් අනතුරුව වෙනස් කිරීමට, පිටපත් කිරීමට, මකා දැමීමට අදාළ "
|
||||
"ඇඳීම් ක්රියා විරහිත වනු ඇත."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -13582,6 +13586,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert ශුන්යයට සිටුවා ඇත"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "ප්රස්ථාර වෙනස් කිරීම/අනුපිලිවෙල සකස් කිරීම"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Document"
|
||||
|
||||
|
||||
58
po/sk.po
58
po/sk.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-11 14:26+0200\n"
|
||||
"Last-Translator: Marek Jakubčík <forusak@gmail.com>\n"
|
||||
"Language-Team: Slovak <http://l10n.cihar.com/projects/phpmyadmin/master/sk/"
|
||||
@ -236,8 +236,8 @@ msgstr "Komentáre"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Nie"
|
||||
@ -263,7 +263,7 @@ msgstr "Nie"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -671,7 +671,7 @@ msgstr ""
|
||||
"Nebolo možné načítať importovacie pluginy, skontrolujte prosím vašu "
|
||||
"inštaláciu!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Príkaz %s bol zaradený medzi obľúbené"
|
||||
@ -918,7 +918,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Príkaz \"DROP DATABASE\" je zakázaný."
|
||||
|
||||
@ -927,7 +927,7 @@ msgstr "Príkaz \"DROP DATABASE\" je zakázaný."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Skutočne chcete vykonať príkaz \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Chystáte sa ZMAZAŤ celú databázu!"
|
||||
|
||||
@ -2667,7 +2667,7 @@ msgstr "Zobrazené riadky"
|
||||
msgid "total"
|
||||
msgstr "celkovo"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Dopyt zabral %01.4f s"
|
||||
@ -3873,19 +3873,19 @@ msgstr "V konfigurácii je nastavená nesprávna autentifikačná metóda:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Mali by ste aktualizovať %s na verziu %s alebo vyššiu."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "možný pokus o exploit"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "zistený číselný kľúč"
|
||||
|
||||
@ -7226,7 +7226,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Neboli nájdené žiadne dáta pre GIS vizualizáciu."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)."
|
||||
|
||||
@ -7346,11 +7346,11 @@ msgstr ""
|
||||
"Pre pohyb medzi hodnotami použite klávesu TAB alebo pre pohyb všetkými "
|
||||
"smermi klávesy CTRL+šípky"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Zobrazujem SQL dotaz"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7401,7 +7401,7 @@ msgstr "Pridať prefix"
|
||||
msgid "Add prefix"
|
||||
msgstr "Pridať prefix"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -9945,7 +9945,7 @@ msgstr "Vyčistiť"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Pridať tento SQL dopyt do obľúbených"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Dovoliť používať túto položku všetkým používateľom"
|
||||
|
||||
@ -11232,12 +11232,14 @@ msgid "Instructions/Setup"
|
||||
msgstr "Pokyny/Nastavenie"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Povoliť zvýrazňovanie"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12299,26 +12301,26 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Nesprávne dáta"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Príkaz %s bol zaradený medzi obľúbené"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Zobrazujem ako PHP kód"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Skontrolované SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "This table does not contain a unique column. Features related to the grid "
|
||||
@ -12331,16 +12333,16 @@ msgstr ""
|
||||
"zaškrtávanie, úprava, kopírovanie a mazanie liniek nemusí fungovať po "
|
||||
"uložení."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problémy s indexami v tabuľke `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Pridať tento SQL dopyt do obľúbených"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
|
||||
106
po/sl.po
106
po/sl.po
@ -3,17 +3,17 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"PO-Revision-Date: 2013-05-24 14:11+0200\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-26 11:58+0200\n"
|
||||
"Last-Translator: Domen <dbc334@gmail.com>\n"
|
||||
"Language-Team: Slovenian <http://l10n.cihar.com/projects/phpmyadmin/master/"
|
||||
"sl/>\n"
|
||||
"Language-Team: Slovenian "
|
||||
"<http://l10n.cihar.com/projects/phpmyadmin/master/sl/>\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"
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 1.6-dev\n"
|
||||
|
||||
#: browse_foreigners.php:36 browse_foreigners.php:60 js/messages.php:335
|
||||
@ -232,8 +232,8 @@ msgstr "Pripombe"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Ne"
|
||||
@ -259,7 +259,7 @@ msgstr "Ne"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -653,7 +653,7 @@ msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
"Ne morem naložiti vtičnikov za uvoz, prosimo, preverite vašo namestitev!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Zaznamek %s je ustvarjen"
|
||||
@ -890,7 +890,7 @@ msgstr ""
|
||||
"Strežnik, ki teče z Suhosin. Prosimo, nanašajte se na %sdokumentacijo%s za "
|
||||
"morebitna vprašanja."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Poizvedbe \"DROP DATABASE\" so izključene."
|
||||
|
||||
@ -899,7 +899,7 @@ msgstr "Poizvedbe \"DROP DATABASE\" so izključene."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Ali res želite izvesti \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!"
|
||||
|
||||
@ -2624,7 +2624,7 @@ msgstr "Prikazujem vrstice"
|
||||
msgid "total"
|
||||
msgstr "skupaj"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Poizvedba je potrebovala %01.4f s"
|
||||
@ -3889,19 +3889,19 @@ msgstr "Neveljaven način overitve določen v konfiguracijski datoteki:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "%s bi morali nadgraditi na različico %s ali novejšo."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Napaka: Neujemanje žetonov"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "poskus prepisa GLOBALS"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "možno izkoriščanje"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "zaznana številska tipka"
|
||||
|
||||
@ -7142,7 +7142,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Za predstavitev GIS ni najdenih podatkov."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)."
|
||||
|
||||
@ -7263,11 +7263,11 @@ msgstr ""
|
||||
"Uporabite tipko TAB za premik od vrednosti do vrednosti ali CTRL+puščice za "
|
||||
"premik kamor koli"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Prikazovanje poizvedbe SQL"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Id vstavljene vrstice: %1$d"
|
||||
@ -7312,7 +7312,7 @@ msgstr "Dodaj predpono tabele:"
|
||||
msgid "Add prefix"
|
||||
msgstr "Dodaj predpono"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Ali res želite izvesti naslednjo poizvedbo?"
|
||||
|
||||
@ -9772,51 +9772,36 @@ msgid "Generated by:"
|
||||
msgstr "Ustvaril:"
|
||||
|
||||
#: libraries/sql.lib.php:495
|
||||
#, fuzzy
|
||||
#| msgid "Data file grow size"
|
||||
msgid "Detailed profile"
|
||||
msgstr "Velikost rasti podatkovnih datotek"
|
||||
msgstr "Podrobni profil"
|
||||
|
||||
#: libraries/sql.lib.php:498
|
||||
#, fuzzy
|
||||
#| msgid "Other"
|
||||
msgid "Order"
|
||||
msgstr "Drugo"
|
||||
msgstr "Vrstni red"
|
||||
|
||||
#: libraries/sql.lib.php:500 libraries/sql.lib.php:546
|
||||
#, fuzzy
|
||||
#| msgctxt "Start of recurring event"
|
||||
#| msgid "Start"
|
||||
msgid "State"
|
||||
msgstr "Začetek"
|
||||
msgstr "Stanje"
|
||||
|
||||
#: libraries/sql.lib.php:543
|
||||
msgid "Summary by state"
|
||||
msgstr ""
|
||||
msgstr "Povzetek po stanju"
|
||||
|
||||
#: libraries/sql.lib.php:551
|
||||
#, fuzzy
|
||||
#| msgid "Total time:"
|
||||
msgid "Total Time"
|
||||
msgstr "Skupni čas:"
|
||||
msgstr "Skupni čas"
|
||||
|
||||
#: libraries/sql.lib.php:553
|
||||
#, fuzzy
|
||||
#| msgid "Time"
|
||||
msgid "% Time"
|
||||
msgstr "Čas"
|
||||
msgstr "% časa"
|
||||
|
||||
#: libraries/sql.lib.php:555
|
||||
#, fuzzy
|
||||
#| msgid "Close"
|
||||
msgid "Calls"
|
||||
msgstr "Zapri"
|
||||
msgstr "Klicev"
|
||||
|
||||
#: libraries/sql.lib.php:557
|
||||
#, fuzzy
|
||||
#| msgid "Time"
|
||||
msgid "ø Time"
|
||||
msgstr "Čas"
|
||||
msgstr "ø časa"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:188
|
||||
#, php-format
|
||||
@ -9836,7 +9821,7 @@ msgstr "Počisti"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Označi to poizvedbo SQL:"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Dovoli dostop do zaznamka vsem uporabnikom"
|
||||
|
||||
@ -11151,12 +11136,14 @@ msgid "Instructions/Setup"
|
||||
msgstr "Navodila/Namestitev"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgstr "Preurejanje/urejanje grafikonov je končano"
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Premikanje (preurejanje) grafikonov je končano"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Preuredi/uredi grafikone"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Omogoči premikanje grafikonov"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12266,24 +12253,24 @@ msgstr "Ključ naj vsebuje črke, številke [em]in[/em] posebne znake."
|
||||
msgid "Wrong data"
|
||||
msgstr "Napačni podatki"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "Uporaba zaznamka \"%s\" kot privzeto poizvedbo med brskanjem."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Zaznamek ni ustvarjen"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Prikazovanje kot koda PHP"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Preverjen SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
@ -12291,16 +12278,16 @@ msgstr ""
|
||||
"Tabela ne vsebuje unikatnega stolpca. Zmožnosti urejanja mreže, potrditvena "
|
||||
"polja, Uredi, Kopiraj in Izbriši niso na voljo."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Težave z indeksi tabele `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Označi to poizvedbo SQL"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr "Oznaka:"
|
||||
|
||||
@ -13958,6 +13945,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert je nastavljeno na 0"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Preuredi/uredi grafikone"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Document"
|
||||
|
||||
|
||||
63
po/sq.po
63
po/sq.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-04 21:12+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Albanian <http://l10n.cihar.com/projects/phpmyadmin/master/sq/"
|
||||
@ -232,8 +232,8 @@ msgstr "Komente"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Jo"
|
||||
@ -259,7 +259,7 @@ msgstr "Jo"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -653,7 +653,7 @@ msgstr ""
|
||||
"Nuk mund të ngarkohen plugin-et e importimit, ju lutem kontrolloni "
|
||||
"instalimin tuaj!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Shenjuesi %s u krijua"
|
||||
@ -893,7 +893,7 @@ msgstr ""
|
||||
"Serveri është në gjendje ekzekutimi Suhosin. Referojuni %sdokumentacionit%s "
|
||||
"për probleme të mundshme."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Komandat \"DROP DATABASE\" nuk janë aktive."
|
||||
|
||||
@ -902,7 +902,7 @@ msgstr "Komandat \"DROP DATABASE\" nuk janë aktive."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Jeni i sigurt që dëshironi të ekzekutoni \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Jeni duke SHKATËRRUAR një databazë komplete!"
|
||||
|
||||
@ -2608,7 +2608,7 @@ msgstr "Shfaqja e regjistrimeve"
|
||||
msgid "total"
|
||||
msgstr "Gjithsej"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Query ka zgjatur %01.4f sec"
|
||||
@ -3835,19 +3835,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Duhet të instaloni %s %s ose superior."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7024,7 +7024,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL ka kthyer një të përbashkët boshe (p.sh. zero rreshta)."
|
||||
|
||||
@ -7146,11 +7146,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7205,7 +7205,7 @@ msgstr "Zëvendëso prefiksin e tabelës"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -9878,7 +9878,7 @@ msgstr "Kalendari"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Shtoja të preferuarve këtë query SQL"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues"
|
||||
|
||||
@ -11227,14 +11227,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Ndysho emrin e databazës në"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12202,41 +12200,41 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Asnjë databazë"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "Vleftëso SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Shtoja të preferuarve këtë query SQL"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -13793,6 +13791,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Rename database to"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Ndysho emrin e databazës në"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Count tables"
|
||||
#~ msgstr "Asnjë tabelë"
|
||||
|
||||
63
po/sr.po
63
po/sr.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-07 17:13+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Serbian <http://l10n.cihar.com/projects/phpmyadmin/master/sr/"
|
||||
@ -235,8 +235,8 @@ msgstr "Коментари"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Не"
|
||||
@ -262,7 +262,7 @@ msgstr "Не"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -692,7 +692,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "Не могу да учитам додатке за увоз, молим проверите своју инсталацију!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Направљен маркер %s"
|
||||
@ -939,7 +939,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" команда је онемогућена."
|
||||
|
||||
@ -949,7 +949,7 @@ msgstr "\"DROP DATABASE\" команда је онемогућена."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Да ли стварно хоћете да "
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Овим ћете УНИШТИТИ комплетну базу података!"
|
||||
|
||||
@ -2894,7 +2894,7 @@ msgstr "Приказ записа"
|
||||
msgid "total"
|
||||
msgstr "укупно"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Упит је трајао %01.4f секунди"
|
||||
@ -4147,19 +4147,19 @@ msgstr "Неисправан метод аутентикације је зада
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7424,7 +7424,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL је вратио празан резултат (нула редова)."
|
||||
|
||||
@ -7550,11 +7550,11 @@ msgstr ""
|
||||
"Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за "
|
||||
"слободно померање"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Приказ као SQL упит"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7611,7 +7611,7 @@ msgstr "Додај ново поље"
|
||||
msgid "Add prefix"
|
||||
msgstr "Додај ново поље"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10306,7 +10306,7 @@ msgstr "Календар"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Запамти SQL-упит"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту"
|
||||
|
||||
@ -11675,14 +11675,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Remove database"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Уклони базу"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12762,43 +12760,43 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "База не постоји"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Направљен маркер %s"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Приказ као PHP код"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "Провери SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Проблем при индексирању табеле `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Запамти SQL-упит"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14425,6 +14423,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "макс. истовремених веза"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Remove database"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Уклони базу"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Open Document Text"
|
||||
#~ msgid "Open Document"
|
||||
|
||||
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-01-10 13:37+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Serbian (latin) <http://l10n.cihar.com/projects/phpmyadmin/"
|
||||
@ -237,8 +237,8 @@ msgstr "Komentari"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Ne"
|
||||
@ -264,7 +264,7 @@ msgstr "Ne"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -674,7 +674,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "Ne mogu da učitam dodatke za uvoz, molim proverite svoju instalaciju!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Napravljen marker %s"
|
||||
@ -912,7 +912,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" komanda je onemogućena."
|
||||
|
||||
@ -921,7 +921,7 @@ msgstr "\"DROP DATABASE\" komanda je onemogućena."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Da li stvarno hoćete da izvršite \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Ovim ćete UNIŠTITI kompletnu bazu podataka!"
|
||||
|
||||
@ -2680,7 +2680,7 @@ msgstr "Prikaz zapisa"
|
||||
msgid "total"
|
||||
msgstr "ukupno"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Upit je trajao %01.4f sekundi"
|
||||
@ -3906,19 +3906,19 @@ msgstr "Neispravan metod autentikacije je zadat u konfiguraciji:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Trebalo bi da unapredite vaš %s server na verziju %s ili noviju."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "moguća zloupotreba"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "otkriven numerički ključ"
|
||||
|
||||
@ -7082,7 +7082,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL je vratio prazan rezultat (nula redova)."
|
||||
|
||||
@ -7202,11 +7202,11 @@ msgstr ""
|
||||
"Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za "
|
||||
"slobodno pomeranje"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Prikaz kao SQL upit"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7257,7 +7257,7 @@ msgstr "Zameni prefix tabele"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -9790,7 +9790,7 @@ msgstr "Obriši"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Zapamti SQL-upit"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu"
|
||||
|
||||
@ -11061,14 +11061,14 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Preset chart"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Unapred podesi grafikon"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Omogući naglašavanje"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12127,26 +12127,26 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Pogrešan podatak"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Napravljen marker %s"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Prikaz kao PHP kod"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Validiran SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "This table does not contain a unique column. Features related to the grid "
|
||||
@ -12159,16 +12159,16 @@ msgstr ""
|
||||
"izmene u gridu, checkbox, Edit, Copy i Delete linkovi može da se desi da ne "
|
||||
"rade nakon snimanja."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problem pri indeksiranju tabele `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Zapamti SQL-upit"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -13697,6 +13697,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert je postavljeno na 0"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Preset chart"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Unapred podesi grafikon"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Otvori dokument"
|
||||
|
||||
|
||||
77
po/sv.po
77
po/sv.po
@ -3,11 +3,11 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"PO-Revision-Date: 2013-05-24 12:37+0200\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-24 15:32+0200\n"
|
||||
"Last-Translator: Anders Jonsson <jonars03@student.umu.se>\n"
|
||||
"Language-Team: Swedish "
|
||||
"<http://l10n.cihar.com/projects/phpmyadmin/master/sv/>\n"
|
||||
"Language-Team: Swedish <http://l10n.cihar.com/projects/phpmyadmin/master/sv/"
|
||||
">\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
@ -232,8 +232,8 @@ msgstr "Kommentarer"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Nej"
|
||||
@ -259,7 +259,7 @@ msgstr "Nej"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -649,7 +649,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "Kunde inte läsa in tillägg för import, kontrollera din installation!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Bokmärket %s har skapats"
|
||||
@ -881,7 +881,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr "Server körs med Suhosin. Se %sdokumentation%s för möjliga problem."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\"-satser är inaktiverade."
|
||||
|
||||
@ -890,7 +890,7 @@ msgstr "\"DROP DATABASE\"-satser är inaktiverade."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Vill du verkligen exekvera \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Du är på väg att RADERA en hel databas!"
|
||||
|
||||
@ -2609,7 +2609,7 @@ msgstr "Visar rader"
|
||||
msgid "total"
|
||||
msgstr "totalt"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Frågan tog %01.4f sek"
|
||||
@ -3865,19 +3865,19 @@ msgstr "Ogiltig metod för verifiering angiven i konfiguration:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Du bör uppgradera till %s %s eller senare."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Fel: Token matchningsfel"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "Överskrivningsförsök av GLOBALS"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "möjlig exploatering"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "numerisk tangent upptäckt"
|
||||
|
||||
@ -4031,13 +4031,11 @@ msgstr "\"%s\" kräver tillägget %s"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:792
|
||||
#, php-format
|
||||
#| msgid "import will not work, missing function (%s)"
|
||||
msgid "Compressed import will not work due to missing function %s."
|
||||
msgstr "Komprimerad import fungerar inte på grund av saknad funktion %s."
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:798
|
||||
#, php-format
|
||||
#| msgid "export will not work, missing function (%s)"
|
||||
msgid "Compressed export will not work due to missing function %s."
|
||||
msgstr "Komprimerad export fungerar inte på grund av saknad funktion %s."
|
||||
|
||||
@ -7116,7 +7114,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Inga data finns för GIS-visualisering."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)."
|
||||
|
||||
@ -7236,11 +7234,11 @@ msgstr ""
|
||||
"Använd TAB-tangenten för att flytta från värde till värde, eller CTRL+pil "
|
||||
"för att flytta vart som helst"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Visar SQL-fråga"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Infogade rad-id: %1$d"
|
||||
@ -7285,7 +7283,7 @@ msgstr "Lägg till tabellprefix:"
|
||||
msgid "Add prefix"
|
||||
msgstr "Lägg till prefix"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Vill du verkligen exekvera följande fråga?"
|
||||
|
||||
@ -9744,10 +9742,8 @@ msgid "Generated by:"
|
||||
msgstr "Genererad av:"
|
||||
|
||||
#: libraries/sql.lib.php:495
|
||||
#, fuzzy
|
||||
#| msgid "Data file grow size"
|
||||
msgid "Detailed profile"
|
||||
msgstr "Växstorlek för datafil"
|
||||
msgstr "Detaljerad profil"
|
||||
|
||||
#: libraries/sql.lib.php:498
|
||||
#, fuzzy
|
||||
@ -9773,8 +9769,6 @@ msgid "Total Time"
|
||||
msgstr "Total tid:"
|
||||
|
||||
#: libraries/sql.lib.php:553
|
||||
#, fuzzy
|
||||
#| msgid "Time"
|
||||
msgid "% Time"
|
||||
msgstr "Tid"
|
||||
|
||||
@ -9808,7 +9802,7 @@ msgstr "Rensa"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Skapa bokmärke för den här SQL-frågan:"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Låt alla användare få tillgång till detta bokmärke"
|
||||
|
||||
@ -11115,12 +11109,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "Instruktioner/Setup"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Klar med ändring/redigering av diagram"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Ordna/redigera diagram"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Aktivera framhävning"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12229,24 +12227,24 @@ msgstr "Nyckeln ska innehålla bokstäver, siffror [em]och[/em] specialtecken."
|
||||
msgid "Wrong data"
|
||||
msgstr "Felaktigt data"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "Använd bokmärket \"%s\" som standard webbläsarfråga."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Bokmärke ej skapat"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Visar som PHP-kod"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Validerad SQL-kod"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
@ -12254,16 +12252,16 @@ msgstr ""
|
||||
"Denna tabell innehåller ingen unik kolumn. Funktionerna rutnätsredigera, "
|
||||
"kryssruta, redigera, kopiera och radera är inte tillgängliga."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Problem med index för tabell `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Skapa bokmärke för den här SQL-frågan"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr "Etikett:"
|
||||
|
||||
@ -13898,6 +13896,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert är satt till 0"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Ordna/redigera diagram"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "OpenDocument-format"
|
||||
|
||||
|
||||
54
po/ta.po
54
po/ta.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-07 09:20+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Tamil <http://l10n.cihar.com/projects/phpmyadmin/4-0/ta/>\n"
|
||||
@ -236,8 +236,8 @@ msgstr "கருத்துரைகள்"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "இல்லை"
|
||||
@ -263,7 +263,7 @@ msgstr "இல்லை"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -668,7 +668,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr ""
|
||||
@ -886,7 +886,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr ""
|
||||
|
||||
@ -895,7 +895,7 @@ msgstr ""
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr ""
|
||||
|
||||
@ -2662,7 +2662,7 @@ msgstr ""
|
||||
msgid "total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr ""
|
||||
@ -3863,19 +3863,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -6894,7 +6894,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
|
||||
@ -7011,11 +7011,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7068,7 +7068,7 @@ msgstr "கருதிட்குள் சேர்க்க"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr ""
|
||||
|
||||
@ -9538,7 +9538,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -10783,11 +10783,11 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
@ -11738,39 +11738,39 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "தரவு இல்லை"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
|
||||
65
po/te.po
65
po/te.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2012-11-06 12:16+0200\n"
|
||||
"Last-Translator: వీవెన్ <veeven@gmail.com>\n"
|
||||
"Language-Team: Telugu <http://l10n.cihar.com/projects/phpmyadmin/master/te/"
|
||||
@ -236,8 +236,8 @@ msgstr "వ్యాఖ్యలు"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "కాదు"
|
||||
@ -263,7 +263,7 @@ msgstr "కాదు"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -664,7 +664,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr ""
|
||||
@ -886,7 +886,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr ""
|
||||
|
||||
@ -895,7 +895,7 @@ msgstr ""
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr ""
|
||||
|
||||
@ -2751,7 +2751,7 @@ msgstr ""
|
||||
msgid "total"
|
||||
msgstr "మొత్తం"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr ""
|
||||
@ -3971,19 +3971,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7039,7 +7039,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
|
||||
@ -7161,11 +7161,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7218,7 +7218,7 @@ msgstr "పట్టిక వ్యాఖ్యలు"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr ""
|
||||
|
||||
@ -9754,7 +9754,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -11052,15 +11052,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
# మొదటి అనువాదము
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Remove database"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "డేటాబేస్ తొలగించండి"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12021,39 +12018,39 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "భోగట్టా"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Data Label"
|
||||
msgid "Label:"
|
||||
@ -13601,6 +13598,12 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
# మొదటి అనువాదము
|
||||
#, fuzzy
|
||||
#~| msgid "Remove database"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "డేటాబేస్ తొలగించండి"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Internal relations"
|
||||
#~ msgid "General relation features:"
|
||||
|
||||
63
po/th.po
63
po/th.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-07 15:03+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Thai <http://l10n.cihar.com/projects/phpmyadmin/master/th/>\n"
|
||||
@ -232,8 +232,8 @@ msgstr "หมายเหตุ"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "ไม่"
|
||||
@ -259,7 +259,7 @@ msgstr "ไม่"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -656,7 +656,7 @@ msgstr "ไม่สามารถแปลงไฟล์ข้อมูลช
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "ไม่สามารถโหลดนำเข้าปลั๊กอินได้ กรุณาตรวจสอบการติดตั้งของคุณ"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "ที่คั่นหน้า %s ได้ถูกสร้างขึ้น"
|
||||
@ -889,7 +889,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "คำสั่ง \"DROP DATABASE\" ถูกปิดไว้"
|
||||
|
||||
@ -898,7 +898,7 @@ msgstr "คำสั่ง \"DROP DATABASE\" ถูกปิดไว้"
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "คุณแน่ใจที่ต้องการจะ \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "คุณกำลังจะทำลายฐานข้อมูลทั้งหมด"
|
||||
|
||||
@ -2652,7 +2652,7 @@ msgstr "แสดงระเบียนที่"
|
||||
msgid "total"
|
||||
msgstr "ทั้งหมด"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "คำค้นใช้เวลา %01.4f วินาที"
|
||||
@ -3889,19 +3889,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "ใช้ประโยชน์ได้"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "ตรวจพบคีย์ตัวเลข"
|
||||
|
||||
@ -7082,7 +7082,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)."
|
||||
|
||||
@ -7205,11 +7205,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7266,7 +7266,7 @@ msgstr "เพิ่มฟิลด์ใหม่"
|
||||
msgid "Add prefix"
|
||||
msgstr "เพิ่มฟิลด์ใหม่"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -9856,7 +9856,7 @@ msgstr "ปฏิทิน"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "จดคำค้นนี้ไว้"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -11198,14 +11198,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Remove database"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "เอาฐานข้อมูลออก"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12168,28 +12166,28 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "ไม่มีฐานข้อมูล"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "ที่คั่นหน้า %s ได้ถูกสร้างขึ้น"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "ตรวจสอบ SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "This table does not contain a unique column. Features related to the grid "
|
||||
@ -12200,16 +12198,16 @@ msgid ""
|
||||
msgstr ""
|
||||
"ตารางนี้ไม่มีสดมภ์ไหนที่เก็บค่าที่แตกต่างกันเสมอ การแก้ไขหรือเพิ่มผ่านตารางจะไม่สามารถบันทึกได้"
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "จดคำค้นนี้ไว้"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -13837,6 +13835,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert ตั้งค่าไว้ที่ 0"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Remove database"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "เอาฐานข้อมูลออก"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Count tables"
|
||||
#~ msgstr "ไม่มีตาราง"
|
||||
|
||||
54
po/tk.po
54
po/tk.po
@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-07 17:12+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Turkmen <http://l10n.cihar.com/projects/phpmyadmin/master/tk/"
|
||||
@ -238,8 +238,8 @@ msgstr ""
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
@ -265,7 +265,7 @@ msgstr ""
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -643,7 +643,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr ""
|
||||
@ -845,7 +845,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr ""
|
||||
|
||||
@ -854,7 +854,7 @@ msgstr ""
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr ""
|
||||
|
||||
@ -2536,7 +2536,7 @@ msgstr ""
|
||||
msgid "total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr ""
|
||||
@ -3716,19 +3716,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -6707,7 +6707,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
|
||||
@ -6823,11 +6823,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -6872,7 +6872,7 @@ msgstr ""
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr ""
|
||||
|
||||
@ -9253,7 +9253,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -10470,11 +10470,11 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
@ -11415,39 +11415,39 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr ""
|
||||
|
||||
|
||||
102
po/tr.po
102
po/tr.po
@ -3,15 +3,15 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"PO-Revision-Date: 2013-05-24 11:51+0200\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-25 15:47+0200\n"
|
||||
"Last-Translator: Burak Yavuz <hitowerdigit@hotmail.com>\n"
|
||||
"Language-Team: Turkish <http://l10n.cihar.com/projects/phpmyadmin/master/tr/"
|
||||
">\n"
|
||||
"Language-Team: Turkish "
|
||||
"<http://l10n.cihar.com/projects/phpmyadmin/master/tr/>\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: Weblate 1.6-dev\n"
|
||||
|
||||
@ -232,8 +232,8 @@ msgstr "Yorumlar"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Hayır"
|
||||
@ -259,7 +259,7 @@ msgstr "Hayır"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -649,7 +649,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "İçe aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Yer imi %s oluşturuldu"
|
||||
@ -887,7 +887,7 @@ msgstr ""
|
||||
"Sunucu Suhosin ile çalışıyor. Lütfen olası sorunlar için %sbelgeden%s "
|
||||
"yararlanın."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi."
|
||||
|
||||
@ -896,7 +896,7 @@ msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "\"%s\" sorgusunu çalıştırmak istediğinize emin misiniz?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!"
|
||||
|
||||
@ -2621,7 +2621,7 @@ msgstr "Gösterilen satırlar"
|
||||
msgid "total"
|
||||
msgstr "toplam"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Sorgu %01.4f san. sürdü"
|
||||
@ -3879,19 +3879,19 @@ msgstr "Yapılandırma içinde geçersiz kimlik doğrulaması yöntemi ayarı:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "%s %s veya sonrasına yükseltmelisiniz."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "Hata: Belirti uyuşmazlığı"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "GLOBALS üzerine yazma girişimi"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "olası kötüye kullanma"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "sayısal tuş algılandı"
|
||||
|
||||
@ -7160,7 +7160,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "GIS görselleştirmesi için bulunan veri yok."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL boş bir sonuç kümesi döndürdü (yani sıfır satır)."
|
||||
|
||||
@ -7280,11 +7280,11 @@ msgstr ""
|
||||
"Değerden değere geçmek için TAB tuşunu veya herhangi bir yere gitmek için "
|
||||
"CTRL+OK TUŞLARI'nı kullanın"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "SQL sorgusu gösteriliyor"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Eklenen satır id: %1$d"
|
||||
@ -7329,7 +7329,7 @@ msgstr "Tablo ön eki ekle:"
|
||||
msgid "Add prefix"
|
||||
msgstr "Ön ek ekle"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "Aşağıdaki sorguya çalıştırmak istiyor musunuz?"
|
||||
|
||||
@ -9789,51 +9789,36 @@ msgid "Generated by:"
|
||||
msgstr "Üreten:"
|
||||
|
||||
#: libraries/sql.lib.php:495
|
||||
#, fuzzy
|
||||
#| msgid "Data file grow size"
|
||||
msgid "Detailed profile"
|
||||
msgstr "Veri dosyası büyüme boyutu"
|
||||
msgstr "Ayrıntılı profil"
|
||||
|
||||
#: libraries/sql.lib.php:498
|
||||
#, fuzzy
|
||||
#| msgid "Other"
|
||||
msgid "Order"
|
||||
msgstr "Diğer"
|
||||
msgstr "Sıra"
|
||||
|
||||
#: libraries/sql.lib.php:500 libraries/sql.lib.php:546
|
||||
#, fuzzy
|
||||
#| msgctxt "Start of recurring event"
|
||||
#| msgid "Start"
|
||||
msgid "State"
|
||||
msgstr "Başlama"
|
||||
msgstr "Durum"
|
||||
|
||||
#: libraries/sql.lib.php:543
|
||||
msgid "Summary by state"
|
||||
msgstr ""
|
||||
msgstr "Duruma göre özet"
|
||||
|
||||
#: libraries/sql.lib.php:551
|
||||
#, fuzzy
|
||||
#| msgid "Total time:"
|
||||
msgid "Total Time"
|
||||
msgstr "Toplam süre:"
|
||||
msgstr "Toplam Süre"
|
||||
|
||||
#: libraries/sql.lib.php:553
|
||||
#, fuzzy
|
||||
#| msgid "Time"
|
||||
msgid "% Time"
|
||||
msgstr "Süre"
|
||||
msgstr "% Süre"
|
||||
|
||||
#: libraries/sql.lib.php:555
|
||||
#, fuzzy
|
||||
#| msgid "Close"
|
||||
msgid "Calls"
|
||||
msgstr "Kapat"
|
||||
msgstr "Çağrılar"
|
||||
|
||||
#: libraries/sql.lib.php:557
|
||||
#, fuzzy
|
||||
#| msgid "Time"
|
||||
msgid "ø Time"
|
||||
msgstr "Süre"
|
||||
msgstr "ø Süre"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:188
|
||||
#, php-format
|
||||
@ -9853,7 +9838,7 @@ msgstr "Temizle"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Bu SQL sorgusunu işaretle:"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Her kullanıcının bu yer imine erişmesine izin ver"
|
||||
|
||||
@ -11161,12 +11146,14 @@ msgid "Instructions/Setup"
|
||||
msgstr "Yönergeler/Ayarlama"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgstr "Çizelgeleri düzenlemeyi/yeniden düzeltmeyi bitir"
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Çizelgeleri sürüklemeyi (yeniden düzenlemeyi) bitir"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Çizelgeleri düzenle/yeniden düzelt"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Çizelgeleri sürüklemeyi etkinleştir"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12283,24 +12270,24 @@ msgstr "Anahtar harf, sayı [em]ve[/em] özel karakterler içermelidir."
|
||||
msgid "Wrong data"
|
||||
msgstr "Yanlış veri"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "Varsayılan gözatma sorgusu olarak \"%s\" yer imi kullanılıyor."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Yer imi oluşturulmadı"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "PHP kodu olarak gösteriliyor"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Oanylı SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
@ -12308,16 +12295,16 @@ msgstr ""
|
||||
"Bu tablo benzersiz bir sütun içermiyor. Izgara düzenleme, işaretleme kutusu, "
|
||||
"Düzenle, Kopyala ve Sil özellikleri kullanılabilir değil."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Bu SQL sorgusunu işaretle"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
msgid "Label:"
|
||||
msgstr "Etiket:"
|
||||
|
||||
@ -13967,6 +13954,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert 0'a ayarlı"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Çizelgeleri düzenle/yeniden düzelt"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Open Belgesi"
|
||||
|
||||
|
||||
63
po/tt.po
63
po/tt.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-07 17:13+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Tatar <http://l10n.cihar.com/projects/phpmyadmin/4-0/tt/>\n"
|
||||
@ -235,8 +235,8 @@ msgstr "Açıqlama"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Yuq"
|
||||
@ -262,7 +262,7 @@ msgstr "Yuq"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -680,7 +680,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "Totaşmalar yökläp bulmadı, quyılışın tikşerep alası!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "%s digän bitbilge yaratıldı"
|
||||
@ -919,7 +919,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" cönläläre sünderelgän."
|
||||
|
||||
@ -929,7 +929,7 @@ msgstr "\"DROP DATABASE\" cönläläre sünderelgän."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Sin çınlap ta bonı eşlärgä teliseñme: "
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr ""
|
||||
|
||||
@ -2873,7 +2873,7 @@ msgstr "Yazma sanı:"
|
||||
msgid "total"
|
||||
msgstr "tulayım"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Soraw eşkärtü %01.4f sek aldı"
|
||||
@ -4109,19 +4109,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7353,7 +7353,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı."
|
||||
|
||||
@ -7478,12 +7478,12 @@ msgstr ""
|
||||
"Ber bäyädän ikençegä küçü öçen TAB töymäsen qullanası, başqa cirgä küçü "
|
||||
"öçen, CTRL+uq töymäläre bar"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
#, fuzzy
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Tulı Sorawlar Kürsät"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7538,7 +7538,7 @@ msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10204,7 +10204,7 @@ msgstr "Täqwim"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Bu SQL-sorawğa tamğa quy"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse"
|
||||
|
||||
@ -11551,14 +11551,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Biremlekne bolay atap quy"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12543,43 +12541,43 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Biremleklär yuq"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "%s digän bitbilge yaratıldı"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "SQL'nı Tikşer"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "`%s` atlı tüşäw tezeşläre belän nidider tiskärlek bar"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Bu SQL-sorawğa tamğa quy"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14183,6 +14181,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Rename database to"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Biremlekne bolay atap quy"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Count tables"
|
||||
#~ msgstr "Berär genä dä tüşämä yuq"
|
||||
|
||||
63
po/ug.po
63
po/ug.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2012-11-05 10:16+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Uighur <http://l10n.cihar.com/projects/phpmyadmin/master/ug/"
|
||||
@ -236,8 +236,8 @@ msgstr "ئىزاھلار"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "يوق"
|
||||
@ -263,7 +263,7 @@ msgstr "يوق"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -670,7 +670,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "قىستۇرمىلار كىرگۈزىشكە ئامالسىز، قاچىلانمىنى تەكشۈرۈپ بىقىڭ!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "قۇرۇلغان خەتكۈچ %s"
|
||||
@ -899,7 +899,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكلەنگەن."
|
||||
|
||||
@ -909,7 +909,7 @@ msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكل
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "راستىنلا ئجرا قىلىمسىز"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "ساندان تولۇق ئۆچۈرۈلدى!"
|
||||
|
||||
@ -2779,7 +2779,7 @@ msgstr ""
|
||||
msgid "total"
|
||||
msgstr "ئۇمۇمىي"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr ""
|
||||
@ -4003,19 +4003,19 @@ msgstr "تەڭشەك ھۆجىتى ئىچىدىكى دەلىللەش ئۇسۇلى
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈتىڭ."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7132,7 +7132,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
|
||||
@ -7252,11 +7252,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7309,7 +7309,7 @@ msgstr "جەدۋەلنى ئوڭشاش"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -9860,7 +9860,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -11146,14 +11146,12 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Remove database"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12108,41 +12106,41 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "قۇرۇلغان خەتكۈچ %s"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label key"
|
||||
msgid "Label:"
|
||||
@ -13724,6 +13722,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Remove database"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Open Document Text"
|
||||
#~ msgid "Open Document"
|
||||
|
||||
63
po/uk.po
63
po/uk.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-02-13 18:54+0200\n"
|
||||
"Last-Translator: Andrey Prokopenko <aprk@ukr.net>\n"
|
||||
"Language-Team: Ukrainian <http://l10n.cihar.com/projects/phpmyadmin/master/"
|
||||
@ -237,8 +237,8 @@ msgstr "Коментарі"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Ні"
|
||||
@ -264,7 +264,7 @@ msgstr "Ні"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -676,7 +676,7 @@ msgstr ""
|
||||
"Неможливо завантажити імпортовані плагіни, будь ласка перевірте ваше "
|
||||
"інсталювання!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "Закладка %s створена"
|
||||
@ -930,7 +930,7 @@ msgstr ""
|
||||
"Сервер, що працює з Suhosin. Щодо можливих проблем звертайтеся до %"
|
||||
"sdocumentation%s."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "Оператори \"DROP DATABASE\" заборонені."
|
||||
|
||||
@ -939,7 +939,7 @@ msgstr "Оператори \"DROP DATABASE\" заборонені."
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Ви дійсно бажаєте виконати \"%s\"?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Ви збираєтесь здійснити ЗНИЩЕННЯ БД!"
|
||||
|
||||
@ -2685,7 +2685,7 @@ msgstr "Показано записи"
|
||||
msgid "total"
|
||||
msgstr "всього"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Запит виконувався %01.4f сек"
|
||||
@ -3902,19 +3902,19 @@ msgstr "Невірний метод аутентифікації встанов
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Вам необхідно оновити до %s %s або пізнішої."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "спроба перезапису GLOBALS"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "можливе використання"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "виявлено цифровий ключ"
|
||||
|
||||
@ -7240,7 +7240,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "Дані для візуалізації GIS не знайдені."
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL повернула пустий результат (тобто нуль рядків)."
|
||||
|
||||
@ -7361,11 +7361,11 @@ msgstr ""
|
||||
"Для переходу від значення до значення використовуйте TAB, або CTRL+стрілки - "
|
||||
"для переміщення куди завгодно"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "Показ SQL-запиту"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Ідентифікатор доданого рядка: %1$d"
|
||||
@ -7416,7 +7416,7 @@ msgstr "Додати префікс таблиці"
|
||||
msgid "Add prefix"
|
||||
msgstr "Додати префікс"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10035,7 +10035,7 @@ msgstr "Очистити"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Закладка на даний SQL запит"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Надати всім користувачам доступ до цієї закладки"
|
||||
|
||||
@ -11372,12 +11372,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "Інструкції/Налаштування"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "Впорядкування/редагування діаграм завершено"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Впорядкувати/редагувати діаграми"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Включити підсвічування"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -12506,26 +12510,26 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "Неправильні дані"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "Як стандартний запит на огляд даних використовується закладка \"%s\"."
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "Закладка %s створена"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "Показ у вигляді коду PHP"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "Перевірений SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "This table does not contain a unique column. Features related to the grid "
|
||||
@ -12538,16 +12542,16 @@ msgstr ""
|
||||
"редагування, прапорцем, посиланнями Редагувати, Копіювати та Видаляти можуть "
|
||||
"не працювати після збереження."
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "Проблеми з індексами таблиці `%s`"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Закладка на даний SQL запит"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -14248,6 +14252,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert встановлений у 0"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Впорядкувати/редагувати діаграми"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "Відкрити Документ"
|
||||
|
||||
|
||||
63
po/ur.po
63
po/ur.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2012-11-05 10:19+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Urdu <http://l10n.cihar.com/projects/phpmyadmin/master/ur/>\n"
|
||||
@ -240,8 +240,8 @@ msgstr "تبصرہ"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "نہیں"
|
||||
@ -267,7 +267,7 @@ msgstr "نہیں"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -684,7 +684,7 @@ msgstr ""
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "درآمد پلگ ان لوڈ نہیں ہوسکے، اپنی تنصیب کا پڑتال کریں!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "نشانی %s بنایا گیا"
|
||||
@ -919,7 +919,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr ""
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔"
|
||||
|
||||
@ -929,7 +929,7 @@ msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔"
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "کیا آپ واقعی چاہتے ہیں"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "آپ ایک مکمل کوائفیہ کو DESTROY کررہے ہیں!"
|
||||
|
||||
@ -2790,7 +2790,7 @@ msgstr ""
|
||||
msgid "total"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr ""
|
||||
@ -4026,19 +4026,19 @@ msgstr "غلط توثیقی طریقہ تشکیل میں دیا گیا ہے:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "آپ اس سے درجہ فزوں کریں %s %s یا بعد۔"
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7295,7 +7295,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "چارٹ سے متعلق کوئی کوائف نہیں ملا۔"
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr ""
|
||||
|
||||
@ -7417,11 +7417,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr ""
|
||||
@ -7474,7 +7474,7 @@ msgstr "جدول کوائف کو مسل سے بدلیں"
|
||||
msgid "Add prefix"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10019,7 +10019,7 @@ msgstr ""
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr ""
|
||||
|
||||
@ -11317,14 +11317,14 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Remove database"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "کوائفیہ ہٹائیں"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "نمایاں کرنے کو فعال کریں"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12288,41 +12288,41 @@ msgstr ""
|
||||
msgid "Wrong data"
|
||||
msgstr "کوائف"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "نشانی %s بنایا گیا"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label key"
|
||||
msgid "Label:"
|
||||
@ -13914,6 +13914,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Remove database"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "کوائفیہ ہٹائیں"
|
||||
|
||||
#~ msgid "Count tables when showing database list"
|
||||
#~ msgstr "جب کوائفیہ فہرست دکھا رہے ہوں تو جداول کی گنتی کریں"
|
||||
|
||||
|
||||
63
po/uz.po
63
po/uz.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-04-25 15:48+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Uzbek <http://l10n.cihar.com/projects/phpmyadmin/master/uz/>\n"
|
||||
@ -234,8 +234,8 @@ msgstr "Изоҳлар"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Йўқ"
|
||||
@ -261,7 +261,7 @@ msgstr "Йўқ"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -679,7 +679,7 @@ msgstr ""
|
||||
"Импорт модуллари мавжуд эмас! Ўрнатилган phpMyAdmin нусхасининг libraries/"
|
||||
"export каталогини текширинг."
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "\"%s\" хатчўпи тузилди"
|
||||
@ -963,7 +963,7 @@ msgstr ""
|
||||
"Сервер \"Suhosin\" ҳимоя тизимадан фойдаланмоқда. Юзага келган муаммолар "
|
||||
"ечими учун \"%s\"документация\"%s\" га қаранг."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) буйруғи ўчирилган."
|
||||
|
||||
@ -973,7 +973,7 @@ msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш)
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Маълумотлар базаси тўлиқ ЎЧИРИЛАДИ!"
|
||||
|
||||
@ -2944,7 +2944,7 @@ msgstr "Ёзувларни кўрсатиш"
|
||||
msgid "total"
|
||||
msgstr "жами"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "Сўров %01.4f секунд вақт олди"
|
||||
@ -4220,19 +4220,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "\"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7781,7 +7781,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL бўш натижа берди (яъни нольта сатр)."
|
||||
|
||||
@ -7915,11 +7915,11 @@ msgid ""
|
||||
msgstr ""
|
||||
"Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "SQL-сўровни кўрсатиш"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Киритилган қатор идентификатори: %1$d"
|
||||
@ -7976,7 +7976,7 @@ msgstr "Индекс(лар)ни сақлаш"
|
||||
msgid "Add prefix"
|
||||
msgstr "Индекс(лар)ни сақлаш"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10747,7 +10747,7 @@ msgstr "Тозалаш"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Ушбу SQL сўровига хатчўп тузиш"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Барча фойдаланувчиларга рухсат бериш"
|
||||
|
||||
@ -12147,14 +12147,14 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Белгилашни ёқиш"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -13357,43 +13357,43 @@ msgstr "Калит ҳарфлар, рақамлар [em]ва[/em] махсус
|
||||
msgid "Wrong data"
|
||||
msgstr "Маълумотлар базаси мавжуд эмас"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "\"%s\" хатчўпи тузилди"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "PHP-код сифатида кўрсатиш"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "SQL тўғрилигини текшириш"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "`\"%s\"` жадвалидаги индексларда муаммо мавжуд"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Ушбу SQL сўровига хатчўп тузиш"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -15054,6 +15054,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "Максимал уланишлар сони "
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Rename database to"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Open Document Text"
|
||||
#~ msgid "Open Document"
|
||||
|
||||
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-07 17:31+0200\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: Uzbek (latin) <http://l10n.cihar.com/projects/phpmyadmin/"
|
||||
@ -236,8 +236,8 @@ msgstr "Izohlar"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "Yo‘q"
|
||||
@ -263,7 +263,7 @@ msgstr "Yo‘q"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -689,7 +689,7 @@ msgstr ""
|
||||
"Import modullari mavjud emas! O‘rnatilgan phpMyAdmin nusxasining libraries/"
|
||||
"export katalogini tekshiring!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "\"%s\" xatcho‘pi tuzildi"
|
||||
@ -974,7 +974,7 @@ msgstr ""
|
||||
"Server \"Suhosin\" himoya tizimadan foydalanmoqda. Yuzaga kelgan muammolar "
|
||||
"yechimi uchun \"%s\"dokumentatsiya\"%s\" ga qarang."
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr ""
|
||||
"\"DROP DATABASE\" (ma`lumotlar bazasini o‘chirish) buyrug‘i o‘chirilgan."
|
||||
@ -985,7 +985,7 @@ msgstr ""
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "Ma`lumotlar bazasi to‘liq O‘CHIRILADI!"
|
||||
|
||||
@ -2976,7 +2976,7 @@ msgstr "Yozuvlarni ko‘rsatish"
|
||||
msgid "total"
|
||||
msgstr "jami"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "So‘rov %01.4f sekund vaqt oldi"
|
||||
@ -4253,19 +4253,19 @@ msgstr ""
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "\"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur."
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr ""
|
||||
|
||||
@ -7827,7 +7827,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)."
|
||||
|
||||
@ -7962,11 +7962,11 @@ msgstr ""
|
||||
"Maydonlararo o‘tish uchun TAB tugmasi yoki CTRL+strelka tugmalaridan "
|
||||
"foydalaning"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "SQL-so‘rovni ko‘rsatish"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "Kiritilgan qator identifikatori: %1$d"
|
||||
@ -8023,7 +8023,7 @@ msgstr "Indеks(lar)ni saqlash"
|
||||
msgid "Add prefix"
|
||||
msgstr "Indеks(lar)ni saqlash"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -10814,7 +10814,7 @@ msgstr "Tozalash"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "Barcha foydalanuvchilarga ruxsat berish"
|
||||
|
||||
@ -12231,14 +12231,14 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Rename database to"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "Belgilashni yoqish"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -13450,43 +13450,43 @@ msgstr "Kalit harflar, raqamlar [em]va[/em] maxsus belgilarni olishi kerak"
|
||||
msgid "Wrong data"
|
||||
msgstr "Ma`lumotlar bazasi mavjud emas"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "\"%s\" xatcho‘pi tuzildi"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "PHP-kod sifatida ko‘rsatish"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
#, fuzzy
|
||||
#| msgid "Validate SQL"
|
||||
msgid "Validated SQL"
|
||||
msgstr "SQL to‘g‘riligini tekshirish"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr ""
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "`\"%s\"` jadvalidagi indekslarda muammo mavjud"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -15150,6 +15150,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "Maksimal ulanishlar soni "
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Rename database to"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Open Document Text"
|
||||
#~ msgid "Open Document"
|
||||
|
||||
63
po/zh_CN.po
63
po/zh_CN.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-14 06:43+0200\n"
|
||||
"Last-Translator: Randall Fan <fanrandall@gmail.com>\n"
|
||||
"Language-Team: Simplified Chinese <http://l10n.cihar.com/projects/phpmyadmin/"
|
||||
@ -229,8 +229,8 @@ msgstr "注释"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "否"
|
||||
@ -256,7 +256,7 @@ msgstr "否"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -641,7 +641,7 @@ msgstr "没有字符集转换库,无法转换文件字符集"
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "无法加载导入插件,请检查你的安装!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "已创建书签 %s"
|
||||
@ -863,7 +863,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr "服务器上运行了 Suhosin。请先查看%s文档%s中是否有类似的情况。"
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。"
|
||||
|
||||
@ -872,7 +872,7 @@ msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。"
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "您真的要执行\"%s\"吗?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "您将要删除一个完整的数据库!"
|
||||
|
||||
@ -2563,7 +2563,7 @@ msgstr "显示行"
|
||||
msgid "total"
|
||||
msgstr "总计"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "查询花费 %01.4f 秒"
|
||||
@ -3767,19 +3767,19 @@ msgstr "配置文件中设置的认证方式无效:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "您应升级到 %s %s 或更高版本。"
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr "错误:Token不符"
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "企图覆盖 GLOBALS"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "可利用"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "监测到数值型键"
|
||||
|
||||
@ -6894,7 +6894,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "未找到用于 GIS 可视化的数据。"
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL 返回的查询结果为空 (即零行)。"
|
||||
|
||||
@ -7012,11 +7012,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "显示 SQL 查询"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "插入的行 id: %1$d"
|
||||
@ -7067,7 +7067,7 @@ msgstr "添加表前缀"
|
||||
msgid "Add prefix"
|
||||
msgstr "添加前缀"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
msgid "Do you really want to execute the following query?"
|
||||
msgstr "您真的要执行下面的查询吗?"
|
||||
|
||||
@ -9575,7 +9575,7 @@ msgstr "清除"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "将此 SQL 查询加为书签"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "让所有用户均可访问此书签"
|
||||
|
||||
@ -10845,12 +10845,16 @@ msgid "Instructions/Setup"
|
||||
msgstr "说明/设置"
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
#, fuzzy
|
||||
#| msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr "完成排列/编辑图表"
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "排列/编辑图表"
|
||||
#, fuzzy
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "启用高亮"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
msgid "Refresh rate"
|
||||
@ -11880,39 +11884,39 @@ msgstr "短语密码应包含字母、数字[em]和[/em]特殊字符。"
|
||||
msgid "Wrong data"
|
||||
msgstr "无效数据"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "使用书签 \"%s\" 作为默认的查询。"
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
msgid "Bookmark not created"
|
||||
msgstr "未创建书签"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "显示为 PHP 代码"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "已校验的 SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
msgid ""
|
||||
"This table does not contain a unique column. Grid edit, checkbox, Edit, Copy "
|
||||
"and Delete features are not available."
|
||||
msgstr "该表没有唯一字段。单元格编辑、复选框、编辑、复制和删除无法正常使用。"
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "数据表 `%s` 的索引存在问题"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "将此 SQL 查询加为书签"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -13433,6 +13437,9 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert 被设为 0"
|
||||
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "排列/编辑图表"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "开放文档"
|
||||
|
||||
|
||||
63
po/zh_TW.po
63
po/zh_TW.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2013-05-24 09:03-0400\n"
|
||||
"POT-Creation-Date: 2013-05-25 07:32-0400\n"
|
||||
"PO-Revision-Date: 2013-05-21 20:04+0200\n"
|
||||
"Last-Translator: Chung-Lun Chiang <benck@benck.tw>\n"
|
||||
"Language-Team: Traditional Chinese <http://l10n.cihar.com/projects/"
|
||||
@ -229,8 +229,8 @@ msgstr "註釋"
|
||||
#: libraries/server_privileges.lib.php:2163
|
||||
#: libraries/server_privileges.lib.php:2483
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:344
|
||||
#: sql.php:439 sql.php:440 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329
|
||||
#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:399 tbl_tracking.php:404
|
||||
msgid "No"
|
||||
msgstr "否"
|
||||
@ -256,7 +256,7 @@ msgstr "否"
|
||||
#: libraries/server_privileges.lib.php:2480
|
||||
#: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268
|
||||
#: libraries/user_preferences.lib.php:280 prefs_manage.php:136
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:437 sql.php:438
|
||||
#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423
|
||||
#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345
|
||||
#: tbl_tracking.php:397 tbl_tracking.php:402
|
||||
msgid "Yes"
|
||||
@ -637,7 +637,7 @@ msgstr "沒有字元集轉換函式庫,無法轉換檔案字元集"
|
||||
msgid "Could not load import plugins, please check your installation!"
|
||||
msgstr "無法載入匯入插件,請檢查您的安裝!"
|
||||
|
||||
#: import.php:519 sql.php:309 sql.php:1123
|
||||
#: import.php:519 sql.php:294 sql.php:1108
|
||||
#, php-format
|
||||
msgid "Bookmark %s created"
|
||||
msgstr "已建立書籤 %s"
|
||||
@ -865,7 +865,7 @@ msgid ""
|
||||
"issues."
|
||||
msgstr "伺服器上運行了 Suhosin。請先查看%s檔案%s中是否有類似的情況。"
|
||||
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:269
|
||||
#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254
|
||||
msgid "\"DROP DATABASE\" statements are disabled."
|
||||
msgstr "刪除資料庫的指令「DROP DATABASE」已經被停用。"
|
||||
|
||||
@ -874,7 +874,7 @@ msgstr "刪除資料庫的指令「DROP DATABASE」已經被停用。"
|
||||
msgid "Do you really want to execute \"%s\"?"
|
||||
msgstr "您確定要執行「%s」?"
|
||||
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:391
|
||||
#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376
|
||||
msgid "You are about to DESTROY a complete database!"
|
||||
msgstr "您將要刪除一個完整的資料庫!"
|
||||
|
||||
@ -2573,7 +2573,7 @@ msgstr "顯示行"
|
||||
msgid "total"
|
||||
msgstr "總計"
|
||||
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:868
|
||||
#: libraries/DisplayResults.class.php:4950 sql.php:853
|
||||
#, php-format
|
||||
msgid "Query took %01.4f sec"
|
||||
msgstr "查詢花費 %01.4f 秒"
|
||||
@ -3767,19 +3767,19 @@ msgstr "設定檔案中設定的認證方式無效:"
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "您應升級到 %s %s 或更高版本。"
|
||||
|
||||
#: libraries/common.inc.php:1077
|
||||
#: libraries/common.inc.php:1079
|
||||
msgid "Error: Token mismatch"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:1121
|
||||
#: libraries/common.inc.php:1123
|
||||
msgid "GLOBALS overwrite attempt"
|
||||
msgstr "嘗試覆寫 GLOBALS (全域變數)"
|
||||
|
||||
#: libraries/common.inc.php:1128
|
||||
#: libraries/common.inc.php:1130
|
||||
msgid "possible exploit"
|
||||
msgstr "$_REQUEST 數量過多(駭客?)"
|
||||
|
||||
#: libraries/common.inc.php:1137
|
||||
#: libraries/common.inc.php:1139
|
||||
msgid "numeric key detected"
|
||||
msgstr "$_GLOBALS 內含非法的數字鍵名"
|
||||
|
||||
@ -6994,7 +6994,7 @@ msgid "No data found for GIS visualization."
|
||||
msgstr "沒有找到 GIS 虛擬所需資料。"
|
||||
|
||||
#: libraries/import.lib.php:187 libraries/insert_edit.lib.php:120
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:863 tbl_get_field.php:55
|
||||
#: libraries/rte/rte_routines.lib.php:1443 sql.php:848 tbl_get_field.php:55
|
||||
msgid "MySQL returned an empty result set (i.e. zero rows)."
|
||||
msgstr "MySQL 返回的查詢結果爲空 (即零行)。"
|
||||
|
||||
@ -7114,11 +7114,11 @@ msgid ""
|
||||
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
|
||||
msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:858
|
||||
#: libraries/insert_edit.lib.php:1912 sql.php:843
|
||||
msgid "Showing SQL query"
|
||||
msgstr "顯示 SQL 查詢"
|
||||
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:838
|
||||
#: libraries/insert_edit.lib.php:1937 sql.php:823
|
||||
#, php-format
|
||||
msgid "Inserted row id: %1$d"
|
||||
msgstr "插入的行 id: %1$d"
|
||||
@ -7169,7 +7169,7 @@ msgstr "新增資料表的前綴文字"
|
||||
msgid "Add prefix"
|
||||
msgstr "新增前綴文字"
|
||||
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:431
|
||||
#: libraries/mult_submits.inc.php:339 sql.php:416
|
||||
#, fuzzy
|
||||
#| msgid "Do you really want to "
|
||||
msgid "Do you really want to execute the following query?"
|
||||
@ -9767,7 +9767,7 @@ msgstr "清除"
|
||||
msgid "Bookmark this SQL query:"
|
||||
msgstr "將此 SQL 查詢加爲書籤"
|
||||
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1211
|
||||
#: libraries/sql_query_form.lib.php:326 sql.php:1196
|
||||
msgid "Let every user access this bookmark"
|
||||
msgstr "讓所有使用者均可訪問此書籤"
|
||||
|
||||
@ -11068,14 +11068,14 @@ msgid "Instructions/Setup"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:685
|
||||
msgid "Done rearranging/editing charts"
|
||||
msgid "Done dragging (rearranging) charts"
|
||||
msgstr ""
|
||||
|
||||
#: server_status_monitor.php:704
|
||||
#, fuzzy
|
||||
#| msgid "Remove database"
|
||||
msgid "Rearrange/edit charts"
|
||||
msgstr "刪除資料庫"
|
||||
#| msgid "Enable highlighting"
|
||||
msgid "Enable charts dragging"
|
||||
msgstr "啓用醒目提示"
|
||||
|
||||
#: server_status_monitor.php:708
|
||||
#, fuzzy
|
||||
@ -12125,26 +12125,26 @@ msgstr "短語密碼應包含字母、數字[em]和[/em]特殊字元"
|
||||
msgid "Wrong data"
|
||||
msgstr "沒有資料庫"
|
||||
|
||||
#: sql.php:231
|
||||
#: sql.php:216
|
||||
#, php-format
|
||||
msgid "Using bookmark \"%s\" as default browse query."
|
||||
msgstr "使用書籤 \"%s\" 作爲預設的查詢"
|
||||
|
||||
#: sql.php:313
|
||||
#: sql.php:298
|
||||
#, fuzzy
|
||||
#| msgid "Bookmark %s created"
|
||||
msgid "Bookmark not created"
|
||||
msgstr "已建立書籤 %s"
|
||||
|
||||
#: sql.php:855
|
||||
#: sql.php:840
|
||||
msgid "Showing as PHP code"
|
||||
msgstr "顯示爲 PHP 程式碼"
|
||||
|
||||
#: sql.php:860
|
||||
#: sql.php:845
|
||||
msgid "Validated SQL"
|
||||
msgstr "已校驗的 SQL"
|
||||
|
||||
#: sql.php:1114
|
||||
#: sql.php:1099
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "This table does not contain a unique column. Features related to the grid "
|
||||
@ -12154,16 +12154,16 @@ msgid ""
|
||||
"and Delete features are not available."
|
||||
msgstr "這個資料表不含唯一的資料欄位,跟修改、複製、刪除有關的功能可能會無效。"
|
||||
|
||||
#: sql.php:1166
|
||||
#: sql.php:1151
|
||||
#, php-format
|
||||
msgid "Problems with indexes of table `%s`"
|
||||
msgstr "資料表 `%s` 的索引存在問題"
|
||||
|
||||
#: sql.php:1199 sql.php:1219
|
||||
#: sql.php:1184 sql.php:1204
|
||||
msgid "Bookmark this SQL query"
|
||||
msgstr "將此 SQL 查詢加爲書籤"
|
||||
|
||||
#: sql.php:1203
|
||||
#: sql.php:1188
|
||||
#, fuzzy
|
||||
#| msgid "Label"
|
||||
msgid "Label:"
|
||||
@ -13824,6 +13824,11 @@ msgstr ""
|
||||
msgid "concurrent_insert is set to 0"
|
||||
msgstr "concurrent_insert 已被設置為 0"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Remove database"
|
||||
#~ msgid "Rearrange/edit charts"
|
||||
#~ msgstr "刪除資料庫"
|
||||
|
||||
#~ msgid "Open Document"
|
||||
#~ msgstr "開啟檔案"
|
||||
|
||||
|
||||
@ -532,7 +532,7 @@ function PMA_getTableProcesslistHtml($ServerStatusData)
|
||||
if (! $show_full_sql && strlen($process['Info']) > $GLOBALS['cfg']['MaxCharactersInDisplayedSQL']) {
|
||||
$retval .= htmlspecialchars(substr($process['Info'], 0, $GLOBALS['cfg']['MaxCharactersInDisplayedSQL'])) . '[...]';
|
||||
} else {
|
||||
$retval .= PMA_SQP_formatHtml(PMA_SQP_parse($process['Info']));
|
||||
$retval .= PMA_SQP_format(PMA_SQP_parse($process['Info']));
|
||||
}
|
||||
}
|
||||
$retval .= '</td>';
|
||||
|
||||
@ -682,7 +682,7 @@ function PMA_getTabLinksHtml()
|
||||
}
|
||||
$retval .= '<a href="#endChartEditMode" style="display:none;">';
|
||||
$retval .= PMA_Util::getImage('s_okay.png');
|
||||
$retval .= __('Done rearranging/editing charts');
|
||||
$retval .= __('Done dragging (rearranging) charts');
|
||||
$retval .= '</a>';
|
||||
$retval .= '</div>';
|
||||
|
||||
@ -701,7 +701,7 @@ function PMA_getPopContentHtml()
|
||||
$retval .= PMA_Util::getImage('b_chart.png') . __('Add chart');
|
||||
$retval .= '</a>';
|
||||
$retval .= '<a href="#rearrangeCharts">';
|
||||
$retval .= PMA_Util::getImage('b_tblops.png') . __('Rearrange/edit charts');
|
||||
$retval .= PMA_Util::getImage('b_tblops.png') . __('Enable charts dragging');
|
||||
$retval .= '</a>';
|
||||
$retval .= '<div class="clearfloat paddingtop"></div>';
|
||||
$retval .= '<div class="floatleft">';
|
||||
|
||||
19
sql.php
19
sql.php
@ -68,21 +68,6 @@ if (isset($_REQUEST['printview'])) {
|
||||
$GLOBALS['printview'] = $_REQUEST['printview'];
|
||||
}
|
||||
|
||||
if (isset($_SESSION['profiling'])) {
|
||||
$response = PMA_Response::getInstance();
|
||||
$header = $response->getHeader();
|
||||
$scripts = $header->getScripts();
|
||||
/* < IE 9 doesn't support canvas natively */
|
||||
if (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER < 9) {
|
||||
$scripts->addFile('canvg/flashcanvas.js');
|
||||
}
|
||||
$scripts->addFile('jqplot/jquery.jqplot.js');
|
||||
$scripts->addFile('jqplot/plugins/jqplot.pieRenderer.js');
|
||||
$scripts->addFile('jqplot/plugins/jqplot.highlighter.js');
|
||||
$scripts->addFile('canvg/canvg.js');
|
||||
$scripts->addFile('jquery/jquery.tablesorter.js');
|
||||
}
|
||||
|
||||
if (!isset($_SESSION['is_multi_query'])) {
|
||||
$_SESSION['is_multi_query'] = false;
|
||||
}
|
||||
@ -714,7 +699,7 @@ if (isset($GLOBALS['show_as_php']) || ! empty($GLOBALS['validatequery'])) {
|
||||
// take the left part, could be:
|
||||
// SELECT
|
||||
// (SELECT
|
||||
$count_query = PMA_SQP_formatHtml(
|
||||
$count_query = PMA_SQP_format(
|
||||
$parsed_sql,
|
||||
'query_only',
|
||||
0,
|
||||
@ -722,7 +707,7 @@ if (isset($GLOBALS['show_as_php']) || ! empty($GLOBALS['validatequery'])) {
|
||||
);
|
||||
$count_query .= ' SQL_CALC_FOUND_ROWS ';
|
||||
// add everything that was after the first SELECT
|
||||
$count_query .= PMA_SQP_formatHtml(
|
||||
$count_query .= PMA_SQP_format(
|
||||
$parsed_sql,
|
||||
'query_only',
|
||||
$analyzed_sql[0]['position_of_first_select'] + 1
|
||||
|
||||
@ -37,14 +37,27 @@ if (! empty($sql_query)) {
|
||||
// Need to generate WHERE clause?
|
||||
if (isset($where_clause)) {
|
||||
|
||||
$temp_sql_array = preg_split("/\bwhere\b/i", $sql_query);
|
||||
// Regular expressions which can appear in sql query,
|
||||
// before the sql segment which remains as it is.
|
||||
$regex_array = array(
|
||||
'/\bwhere\b/i', '/\bgroup by\b/i', '/\bhaving\b/i', '/\border by\b/i'
|
||||
);
|
||||
|
||||
$first_occurring_regex = PMA_Util::getFirstOccurringRegularExpression(
|
||||
$regex_array, $sql_query
|
||||
);
|
||||
unset($regex_array);
|
||||
|
||||
// The part "SELECT `id`, `name` FROM `customers`"
|
||||
// is not modified by the next code segment, when exporting
|
||||
// is not modified by the next code segment, when exporting
|
||||
// the result set from a query such as
|
||||
// "SELECT `id`, `name` FROM `customers` WHERE id NOT IN
|
||||
// ( SELECT id FROM companies WHERE name LIKE '%u%')"
|
||||
$sql_query = $temp_sql_array[0];
|
||||
if (! is_null($first_occurring_regex)) {
|
||||
$temp_sql_array = preg_split($first_occurring_regex, $sql_query);
|
||||
$sql_query = $temp_sql_array[0];
|
||||
}
|
||||
unset($first_occurring_regex, $temp_sql_array);
|
||||
|
||||
// Append the where clause using the primary key of each row
|
||||
if (is_array($where_clause) && (count($where_clause) > 0)) {
|
||||
@ -62,7 +75,8 @@ if (! empty($sql_query)) {
|
||||
}
|
||||
} else {
|
||||
// Just crop LIMIT clause
|
||||
$sql_query = $analyzed_sql[0]['section_before_limit'] . $analyzed_sql[0]['section_after_limit'];
|
||||
$sql_query = $analyzed_sql[0]['section_before_limit']
|
||||
. $analyzed_sql[0]['section_after_limit'];
|
||||
}
|
||||
echo PMA_Util::getMessage(PMA_Message::success());
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user