Merge branch 'master' into integration

This commit is contained in:
Michal Čihař 2011-07-19 14:23:11 +02:00
commit dce30ddee1
91 changed files with 2654 additions and 3071 deletions

View File

@ -48,6 +48,9 @@ phpMyAdmin - ChangeLog
- bug #3350790 [interface] JS error in Table->Structure->Index->Edit
- bug #3353811 [interface] Info message has "error" class
- bug #3357837 [interface] TABbing through a NULL field in the inline mode resets NULL
- remove version number in /setup
- bug #3367993 [usability] Missing "Generate Password" button
- bug #3363221 [display] Missing Server Parameter on inline sql query
3.4.3.1 (2011-07-02)
- [security] Fixed possible session manipulation in swekey authentication, see PMASA-2011-5

View File

@ -28,6 +28,7 @@ require_once './libraries/rte/rte_events.lib.php';
/**
* Do the magic
*/
$_PMA_RTE = 'EVN';
require_once './libraries/rte/rte_main.inc.php';
?>

View File

@ -30,6 +30,7 @@ require_once './libraries/rte/rte_routines.lib.php';
/**
* Do the magic
*/
$_PMA_RTE = 'RTN';
require_once './libraries/rte/rte_main.inc.php';
?>

View File

@ -27,6 +27,7 @@ require_once './libraries/rte/rte_triggers.lib.php';
/**
* Do the magic
*/
$_PMA_RTE = 'TRI';
require_once './libraries/rte/rte_main.inc.php';
?>

View File

@ -1217,6 +1217,7 @@ function changeMIMEType(db, table, reference, mime_type)
*/
$(document).ready(function(){
$(".inline_edit_sql").live('click', function(){
var server = $(this).prev().find("input[name='server']").val();
var db = $(this).prev().find("input[name='db']").val();
var table = $(this).prev().find("input[name='table']").val();
var token = $(this).prev().find("input[name='token']").val();
@ -1232,7 +1233,8 @@ $(document).ready(function(){
$(this).click(function(){
sql_query = $(this).prev().val();
window.location.replace("import.php"
+ "?db=" + encodeURIComponent(db)
+ "?server=" + encodeURIComponent(server)
+ "&db=" + encodeURIComponent(db)
+ "&table=" + encodeURIComponent(table)
+ "&sql_query=" + encodeURIComponent(sql_query)
+ "&show_query=1"
@ -2872,3 +2874,42 @@ $(document).ready(function() {
}; //end noSelect
})(jQuery);
/**
* Create default PMA tooltip for the element specified. The default appearance
* can be overriden by specifying optional "options" parameter (see qTip options).
*/
function PMA_createqTip($elements, content, options) {
var o = {
content: content,
style: {
background: '#333',
border: {
radius: 5
},
fontSize: '0.8em',
padding: '0 0.5em',
name: 'dark'
},
position: {
target: 'mouse',
corner: { target: 'rightMiddle', tooltip: 'leftMiddle' },
adjust: { x: 20 }
},
show: {
delay: 0,
effect: {
type: 'grow',
length: 100
}
},
hide: {
effect: {
type: 'grow',
length: 150
}
}
}
$elements.qtip($.extend(true, o, options));
}

File diff suppressed because one or more lines are too long

View File

@ -10,17 +10,16 @@
colOrder: new Array(), // array of column order
colVisib: new Array(), // array of column visibility
tableCreateTime: null, // table creation time, only available in "Browse tab"
hintShown: false, // true if hint balloon is shown, used by updateHint() method
qtip: null, // qtip API
reorderHint: '', // string, hint for column reordering
sortHint: '', // string, hint for column sorting
markHint: '', // string, hint for column marking
colVisibHint: '', // string, hint for column visibility drop-down
showAllColText: '', // string, text for "show all" button under column visibility list
showReorderHint: false,
showSortHint: false,
showMarkHint: false,
showColVisibHint: false,
hintIsHiding: false, // true when hint is still shown, but hideHint() already called
showAllColText: '', // string, text for "show all" button under column visibility list
visibleHeadersCount: 0, // number of visible data headers
// functions
@ -63,8 +62,8 @@
objTop: objPos.top,
objLeft: objPos.left
};
this.qtip.hide();
$('body').css('cursor', 'move');
this.hideHint();
$('body').noSelect();
},
@ -166,7 +165,7 @@
*/
reposRsz: function() {
$(this.cRsz).find('div').hide();
$firstRowCols = $(this.t).find('tr:first th.draggable:visible');
var $firstRowCols = $(this.t).find('tr:first th.draggable:visible');
for (var n = 0; n < $firstRowCols.length; n++) {
$this = $($firstRowCols[n]);
$cb = $(g.cRsz).find('div:eq(' + n + ')'); // column border
@ -301,9 +300,10 @@
},
/**
* Show hint with the text supplied.
* Update current hint using the boolean values (showReorderHint, showSortHint, etc.).
* It will hide the hint if all the boolean values is false.
*/
showHint: function(e) {
updateHint: function(e) {
if (!this.colRsz && !this.colMov) { // if not resizing or dragging
var text = '';
if (this.showReorderHint && this.reorderHint) {
@ -325,53 +325,14 @@
}
// hide the hint if no text
if (!text) {
this.hideHint();
return;
}
this.qtip.disable(!text && e.type == 'mouseenter');
$(this.dHint).html(text);
if (!this.hintShown || this.hintIsHiding) {
$(this.dHint)
.stop(true, true)
.css({
top: e.clientY,
left: e.clientX + 15
})
.show('fast');
this.hintShown = true;
this.hintIsHiding = false;
}
this.qtip.updateContent(text, false);
} else {
this.qtip.disable(true);
}
},
/**
* Hide the hint.
*/
hideHint: function() {
if (this.hintShown) {
$(this.dHint)
.stop(true, true)
.hide(300, function() {
g.hintShown = false;
g.hintIsHiding = false;
});
this.hintIsHiding = true;
}
},
/**
* Update hint position.
*/
updateHint: function(e) {
if (this.hintShown) {
$(this.dHint).css({
top: e.clientY,
left: e.clientX + 15
});
}
},
/**
* Toggle column's visibility.
* After calling this function and it returns true, afterToggleCol() must be called.
@ -487,7 +448,6 @@
g.cRsz = document.createElement('div'); // column resizer
g.cCpy = document.createElement('div'); // column copy, to store copy of dragged column header
g.cPointer = document.createElement('div'); // column pointer, used when reordering column
g.dHint = document.createElement('div'); // draggable hint
g.cDrop = document.createElement('div'); // column drop-down arrows
g.cList = document.createElement('div'); // column visibility list
@ -499,10 +459,6 @@
g.cPointer.className = 'cPointer';
$(g.cPointer).css('visibility', 'hidden');
// adjust g.dHint
g.dHint.className = 'dHint';
$(g.dHint).hide();
// adjust g.cDrop
g.cDrop.className = 'cDrop';
@ -632,6 +588,14 @@
});
g.reposRsz();
// bind event to update currently hovered qtip API
$(t).find('th').mouseenter(function(e) {
g.qtip = $(this).qtip('api');
});
// create qtip for each <th> with draggable class
PMA_createqTip($(t).find('th.draggable'));
// register events
if (g.reorderHint) { // make sure columns is reorderable
$(t).find('th.draggable')
@ -647,46 +611,47 @@
} else {
$(this).css('cursor', 'inherit');
}
g.showHint(e);
g.updateHint(e);
})
.mouseleave(function(e) {
g.showReorderHint = false;
g.showHint(e);
g.updateHint(e);
});
}
if ($firstRowCols.length > 1) {
$(t).find('th:not(.draggable)')
.mouseenter(function(e) {
var $colVisibTh = $(t).find('th:not(.draggable)');
PMA_createqTip($colVisibTh);
$colVisibTh.mouseenter(function(e) {
g.showColVisibHint = true;
g.showHint(e);
g.updateHint(e);
})
.mouseleave(function(e) {
g.showColVisibHint = false;
g.showHint(e);
g.updateHint(e);
});
}
$(t).find('th.draggable a')
.attr('title', '') // hide default tooltip for sorting
.mouseenter(function(e) {
g.showSortHint = true;
g.showHint(e);
g.updateHint(e);
})
.mouseleave(function(e) {
g.showSortHint = false;
g.showHint(e);
g.updateHint(e);
});
$(t).find('th.marker')
.mouseenter(function(e) {
g.showMarkHint = true;
g.showHint(e);
g.updateHint(e);
})
.mouseleave(function(e) {
g.showMarkHint = false;
g.showHint(e);
g.updateHint(e);
});
$(document).mousemove(function(e) {
g.dragMove(e);
g.updateHint(e);
});
$(document).mouseup(function(e) {
g.dragEnd(e);
@ -708,7 +673,6 @@
$(g.gDiv).append(g.cPointer);
$(g.gDiv).append(g.cDrop);
$(g.gDiv).append(g.cList);
$(g.gDiv).append(g.dHint);
$(g.gDiv).append(g.cCpy);
// some adjustment

View File

@ -527,6 +527,7 @@ $(document).ready(function() {
}
});
displayPasswordGenerateButton();
}, 'top.frame_content'); //end $(document).ready()
/**#@- */

View File

@ -1192,9 +1192,10 @@ function PMA_unInlineEditRow($del_hide, $chg_submit, $this_td, $input_siblings,
}
/**
* Starting from some th, change the class of all td under it
* Starting from some th, change the class of all td under it.
* If isAddClass is specified, it will be used to determine whether to add or remove the class.
*/
function PMA_changeClassForColumn($this_th, newclass) {
function PMA_changeClassForColumn($this_th, newclass, isAddClass) {
// index 0 is the th containing the big T
var th_index = $this_th.index();
var has_big_t = !$this_th.closest('tr').children(':first').hasClass('column_heading');
@ -1203,12 +1204,10 @@ function PMA_changeClassForColumn($this_th, newclass) {
th_index--;
}
var $tds = $this_th.closest('table').find('tbody tr').find('td.data:eq('+th_index+')');
if ($this_th.data('has_class_'+newclass)) {
$tds.removeClass(newclass);
$this_th.data('has_class_'+newclass, false);
if (isAddClass == undefined) {
$tds.toggleClass(newclass);
} else {
$tds.addClass(newclass);
$this_th.data('has_class_'+newclass, true);
$tds.toggleClass(newclass, isAddClass);
}
}
@ -1225,8 +1224,8 @@ $(document).ready(function() {
/**
* vertical column highlighting in horizontal mode when hovering over the column header
*/
$('.column_heading.pointer').live('hover', function() {
PMA_changeClassForColumn($(this), 'hover');
$('.column_heading.pointer').live('hover', function(e) {
PMA_changeClassForColumn($(this), 'hover', e.type == 'mouseenter');
});
/**

View File

@ -350,16 +350,11 @@ class PMA_Config
$cfg = array();
/**
* Parses the configuration file
* Parses the configuration file, the eval is used here to avoid
* problems with trailing whitespace, what is often a problem.
*/
$old_error_reporting = error_reporting(0);
if (function_exists('file_get_contents')) {
$eval_result =
eval('?' . '>' . trim(file_get_contents($this->getSource())));
} else {
$eval_result =
eval('?' . '>' . trim(implode("\n", file($this->getSource()))));
}
$eval_result = eval('?' . '>' . trim(file_get_contents($this->getSource())));
error_reporting($old_error_reporting);
if ($eval_result === false) {

View File

@ -769,7 +769,7 @@ function PMA_DBI_get_columns_full($database = null, $table = null,
$sql = 'SHOW FULL COLUMNS FROM '
. PMA_backquote($database) . '.' . PMA_backquote($table);
if (null !== $column) {
$sql .= " LIKE '" . $column . "'";
$sql .= " LIKE '" . PMA_sqlAddSlashes($column, true) . "'";
}
$columns = PMA_DBI_fetch_result($sql, 'Field', null, $link);

View File

@ -123,12 +123,12 @@ function PMA_exportDBCreate($db)
*/
function PMA_exportData($db, $table, $crlf, $error_url, $sql_query)
{
global $CG_FORMATS, $CG_HANDLERS;
$format = cgGetOption("format");
$index = array_search($format, $CG_FORMATS);
if ($index >= 0)
return PMA_exportOutputHandler($CG_HANDLERS[$index]($db, $table, $crlf));
return PMA_exportOutputHandler(sprintf("%s is not supported.", $format));
global $CG_FORMATS, $CG_HANDLERS;
$format = cgGetOption("format");
if (isset($CG_FORMATS[$format])) {
return PMA_exportOutputHandler($CG_HANDLERS[$format]($db, $table, $crlf));
}
return PMA_exportOutputHandler(sprintf("%s is not supported.", $format));
}
/**
@ -138,162 +138,184 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query)
*/
class TableProperty
{
public $name;
public $type;
public $nullable;
public $key;
public $defaultValue;
public $ext;
function __construct($row)
{
$this->name = trim($row[0]);
$this->type = trim($row[1]);
$this->nullable = trim($row[2]);
$this->key = trim($row[3]);
$this->defaultValue = trim($row[4]);
$this->ext = trim($row[5]);
}
function getPureType()
{
$pos=strpos($this->type, "(");
if ($pos > 0)
return substr($this->type, 0, $pos);
return $this->type;
}
function isNotNull()
{
return $this->nullable == "NO" ? "true" : "false";
}
function isUnique()
{
return $this->key == "PRI" || $this->key == "UNI" ? "true" : "false";
}
function getDotNetPrimitiveType()
{
if (strpos($this->type, "int") === 0) return "int";
if (strpos($this->type, "long") === 0) return "long";
if (strpos($this->type, "char") === 0) return "string";
if (strpos($this->type, "varchar") === 0) return "string";
if (strpos($this->type, "text") === 0) return "string";
if (strpos($this->type, "longtext") === 0) return "string";
if (strpos($this->type, "tinyint") === 0) return "bool";
if (strpos($this->type, "datetime") === 0) return "DateTime";
return "unknown";
}
function getDotNetObjectType()
{
if (strpos($this->type, "int") === 0) return "Int32";
if (strpos($this->type, "long") === 0) return "Long";
if (strpos($this->type, "char") === 0) return "String";
if (strpos($this->type, "varchar") === 0) return "String";
if (strpos($this->type, "text") === 0) return "String";
if (strpos($this->type, "longtext") === 0) return "String";
if (strpos($this->type, "tinyint") === 0) return "Boolean";
if (strpos($this->type, "datetime") === 0) return "DateTime";
return "Unknown";
}
function getIndexName()
{
if (strlen($this->key)>0)
return "index=\"" . $this->name . "\"";
return "";
}
function isPK()
{
return $this->key=="PRI";
}
function format($pattern)
{
$text=$pattern;
$text=str_replace("#name#", $this->name, $text);
$text=str_replace("#type#", $this->getPureType(), $text);
$text=str_replace("#notNull#", $this->isNotNull(), $text);
$text=str_replace("#unique#", $this->isUnique(), $text);
$text=str_replace("#ucfirstName#", ucfirst($this->name), $text);
$text=str_replace("#dotNetPrimitiveType#", $this->getDotNetPrimitiveType(), $text);
$text=str_replace("#dotNetObjectType#", $this->getDotNetObjectType(), $text);
$text=str_replace("#indexName#", $this->getIndexName(), $text);
return $text;
}
public $name;
public $type;
public $nullable;
public $key;
public $defaultValue;
public $ext;
function __construct($row)
{
$this->name = trim($row[0]);
$this->type = trim($row[1]);
$this->nullable = trim($row[2]);
$this->key = trim($row[3]);
$this->defaultValue = trim($row[4]);
$this->ext = trim($row[5]);
}
function getPureType()
{
$pos=strpos($this->type, "(");
if ($pos > 0)
return substr($this->type, 0, $pos);
return $this->type;
}
function isNotNull()
{
return $this->nullable == "NO" ? "true" : "false";
}
function isUnique()
{
return $this->key == "PRI" || $this->key == "UNI" ? "true" : "false";
}
function getDotNetPrimitiveType()
{
if (strpos($this->type, "int") === 0) return "int";
if (strpos($this->type, "long") === 0) return "long";
if (strpos($this->type, "char") === 0) return "string";
if (strpos($this->type, "varchar") === 0) return "string";
if (strpos($this->type, "text") === 0) return "string";
if (strpos($this->type, "longtext") === 0) return "string";
if (strpos($this->type, "tinyint") === 0) return "bool";
if (strpos($this->type, "datetime") === 0) return "DateTime";
return "unknown";
}
function getDotNetObjectType()
{
if (strpos($this->type, "int") === 0) return "Int32";
if (strpos($this->type, "long") === 0) return "Long";
if (strpos($this->type, "char") === 0) return "String";
if (strpos($this->type, "varchar") === 0) return "String";
if (strpos($this->type, "text") === 0) return "String";
if (strpos($this->type, "longtext") === 0) return "String";
if (strpos($this->type, "tinyint") === 0) return "Boolean";
if (strpos($this->type, "datetime") === 0) return "DateTime";
return "Unknown";
}
function getIndexName()
{
if (strlen($this->key)>0)
return "index=\"" . htmlspecialchars($this->name, ENT_COMPAT, 'UTF-8') . "\"";
return "";
}
function isPK()
{
return $this->key=="PRI";
}
function formatCs($text)
{
$text=str_replace("#name#", cgMakeIdentifier($this->name, false), $text);
return $this->format($text);
}
function formatXml($text)
{
$text=str_replace("#name#", htmlspecialchars($this->name, ENT_COMPAT, 'UTF-8'), $text);
$text=str_replace("#indexName#", $this->getIndexName(), $text);
return $this->format($text);
}
function format($text)
{
$text=str_replace("#ucfirstName#", cgMakeIdentifier($this->name), $text);
$text=str_replace("#dotNetPrimitiveType#", $this->getDotNetPrimitiveType(), $text);
$text=str_replace("#dotNetObjectType#", $this->getDotNetObjectType(), $text);
$text=str_replace("#type#", $this->getPureType(), $text);
$text=str_replace("#notNull#", $this->isNotNull(), $text);
$text=str_replace("#unique#", $this->isUnique(), $text);
return $text;
}
}
function handleNHibernateCSBody($db, $table, $crlf)
{
$lines=array();
$result=PMA_DBI_query(sprintf("DESC %s.%s", PMA_backquote($db), PMA_backquote($table)));
if ($result)
{
$tableProperties=array();
while ($row = PMA_DBI_fetch_row($result))
$tableProperties[] = new TableProperty($row);
$lines[] = "using System;";
$lines[] = "using System.Collections;";
$lines[] = "using System.Collections.Generic;";
$lines[] = "using System.Text;";
$lines[] = "namespace ".ucfirst($db);
$lines[] = "{";
$lines[] = " #region ".ucfirst($table);
$lines[] = " public class ".ucfirst($table);
$lines[] = " {";
$lines[] = " #region Member Variables";
foreach ($tableProperties as $tablePropertie)
$lines[] = $tablePropertie->format(" protected #dotNetPrimitiveType# _#name#;");
$lines[] = " #endregion";
$lines[] = " #region Constructors";
$lines[] = " public ".ucfirst($table)."() { }";
$temp = array();
foreach ($tableProperties as $tablePropertie)
if (! $tablePropertie->isPK())
$temp[] = $tablePropertie->format("#dotNetPrimitiveType# #name#");
$lines[] = " public ".ucfirst($table)."(".implode(", ", $temp).")";
$lines[] = " {";
foreach ($tableProperties as $tablePropertie)
if (! $tablePropertie->isPK())
$lines[] = $tablePropertie->format(" this._#name#=#name#;");
$lines[] = " }";
$lines[] = " #endregion";
$lines[] = " #region Public Properties";
foreach ($tableProperties as $tablePropertie)
$lines[] = $tablePropertie->format(" public virtual #dotNetPrimitiveType# _#ucfirstName#\n {\n get {return _#name#;}\n set {_#name#=value;}\n }");
$lines[] = " #endregion";
$lines[] = " }";
$lines[] = " #endregion";
$lines[] = "}";
PMA_DBI_free_result($result);
}
return implode("\n", $lines);
}
function cgMakeIdentifier($str, $ucfirst = true)
{
// remove unsafe characters
$str = preg_replace('/[^\p{L}\p{Nl}_]/u', '', $str);
// make sure first character is a letter or _
if (!preg_match('/^\pL/u', $str)) {
$str = '_' . $str;
}
if ($ucfirst) {
$str = ucfirst($str);
}
return $str;
}
function handleNHibernateXMLBody($db, $table, $crlf)
{
$lines=array();
$lines[] = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>";
$lines[] = "<hibernate-mapping xmlns=\"urn:nhibernate-mapping-2.2\" namespace=\"".ucfirst(htmlspecialchars($db, ENT_COMPAT, 'UTF-8'))."\" assembly=\"".ucfirst(htmlspecialchars($db, ENT_COMPAT, 'UTF-8'))."\">";
$lines[] = " <class name=\"".ucfirst(htmlspecialchars($table, ENT_COMPAT, 'UTF-8'))."\" table=\"".htmlspecialchars($table, ENT_COMPAT, 'UTF-8')."\">";
$result = PMA_DBI_query(sprintf("DESC %s.%s", PMA_backquote($db), PMA_backquote($table)));
if ($result)
{
$tableProperties = array();
while ($row = PMA_DBI_fetch_row($result))
$tableProperties[] = new TableProperty($row);
foreach ($tableProperties as $tablePropertie)
{
if ($tablePropertie->isPK())
$lines[] = $tablePropertie->format(" <id name=\"#ucfirstName#\" type=\"#dotNetObjectType#\" unsaved-value=\"0\">\n <column name=\"#name#\" sql-type=\"#type#\" not-null=\"#notNull#\" unique=\"#unique#\" index=\"PRIMARY\"/>\n <generator class=\"native\" />\n </id>");
else
$lines[] = $tablePropertie->format(" <property name=\"#ucfirstName#\" type=\"#dotNetObjectType#\">\n <column name=\"#name#\" sql-type=\"#type#\" not-null=\"#notNull#\" #indexName#/>\n </property>");
}
PMA_DBI_free_result($result);
}
$lines[]=" </class>";
$lines[]="</hibernate-mapping>";
return implode("\n", $lines);
}
function handleNHibernateCSBody($db, $table, $crlf)
{
$lines=array();
$result=PMA_DBI_query(sprintf("DESC %s.%s", PMA_backquote($db), PMA_backquote($table)));
if ($result)
{
$tableProperties=array();
while ($row = PMA_DBI_fetch_row($result))
$tableProperties[] = new TableProperty($row);
$lines[] = "using System;";
$lines[] = "using System.Collections;";
$lines[] = "using System.Collections.Generic;";
$lines[] = "using System.Text;";
$lines[] = "namespace ".cgMakeIdentifier($db);
$lines[] = "{";
$lines[] = " #region ".cgMakeIdentifier($table);
$lines[] = " public class ".cgMakeIdentifier($table);
$lines[] = " {";
$lines[] = " #region Member Variables";
foreach ($tableProperties as $tablePropertie)
$lines[] = $tablePropertie->formatCs(" protected #dotNetPrimitiveType# _#name#;");
$lines[] = " #endregion";
$lines[] = " #region Constructors";
$lines[] = " public ".cgMakeIdentifier($table)."() { }";
$temp = array();
foreach ($tableProperties as $tablePropertie)
if (! $tablePropertie->isPK())
$temp[] = $tablePropertie->formatCs("#dotNetPrimitiveType# #name#");
$lines[] = " public ".cgMakeIdentifier($table)."(".implode(", ", $temp).")";
$lines[] = " {";
foreach ($tableProperties as $tablePropertie)
if (! $tablePropertie->isPK())
$lines[] = $tablePropertie->formatCs(" this._#name#=#name#;");
$lines[] = " }";
$lines[] = " #endregion";
$lines[] = " #region Public Properties";
foreach ($tableProperties as $tablePropertie)
$lines[] = $tablePropertie->formatCs(" public virtual #dotNetPrimitiveType# #ucfirstName#\n {\n get {return _#name#;}\n set {_#name#=value;}\n }");
$lines[] = " #endregion";
$lines[] = " }";
$lines[] = " #endregion";
$lines[] = "}";
PMA_DBI_free_result($result);
}
return implode("\n", $lines);
}
function cgGetOption($optionName)
{
global $what;
return $GLOBALS[$what . "_" . $optionName];
}
function handleNHibernateXMLBody($db, $table, $crlf)
{
$lines=array();
$lines[] = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>";
$lines[] = "<hibernate-mapping xmlns=\"urn:nhibernate-mapping-2.2\" namespace=\"".cgMakeIdentifier($db)."\" assembly=\"".cgMakeIdentifier($db)."\">";
$lines[] = " <class name=\"".cgMakeIdentifier($table)."\" table=\"".cgMakeIdentifier($table)."\">";
$result = PMA_DBI_query(sprintf("DESC %s.%s", PMA_backquote($db), PMA_backquote($table)));
if ($result)
{
$tableProperties = array();
while ($row = PMA_DBI_fetch_row($result))
$tableProperties[] = new TableProperty($row);
foreach ($tableProperties as $tablePropertie)
{
if ($tablePropertie->isPK())
$lines[] = $tablePropertie->formatXml(" <id name=\"#ucfirstName#\" type=\"#dotNetObjectType#\" unsaved-value=\"0\">\n <column name=\"#name#\" sql-type=\"#type#\" not-null=\"#notNull#\" unique=\"#unique#\" index=\"PRIMARY\"/>\n <generator class=\"native\" />\n </id>");
else
$lines[] = $tablePropertie->formatXml(" <property name=\"#ucfirstName#\" type=\"#dotNetObjectType#\">\n <column name=\"#name#\" sql-type=\"#type#\" not-null=\"#notNull#\" #indexName#/>\n </property>");
}
PMA_DBI_free_result($result);
}
$lines[]=" </class>";
$lines[]="</hibernate-mapping>";
return implode("\n", $lines);
}
function cgGetOption($optionName)
{
global $what;
return $GLOBALS[$what . "_" . $optionName];
}
}
?>

View File

@ -213,9 +213,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
* Gets fields properties
*/
PMA_DBI_select_db($db);
$local_query = 'SHOW FIELDS FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table);
$result = PMA_DBI_query($local_query);
$fields_cnt = PMA_DBI_num_rows($result);
// Check if we can use Relations
if ($do_relation && ! empty($cfgRelation['relation'])) {
@ -272,10 +269,11 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
return false;
}
while ($row = PMA_DBI_fetch_assoc($result)) {
$columns = PMA_DBI_get_columns($db, $table);
foreach ($columns as $column) {
$schema_insert = '<tr class="print-category">';
$type = $row['Type'];
$type = $column['Type'];
// reformat mysql query output
// set or enum types: slashes single quotes inside options
if (preg_match('/^(set|enum)\((.+)\)$/i', $type, $tmp)) {
@ -295,9 +293,9 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
$type = '&nbsp;';
}
$binary = preg_match('/BINARY/i', $row['Type']);
$unsigned = preg_match('/UNSIGNED/i', $row['Type']);
$zerofill = preg_match('/ZEROFILL/i', $row['Type']);
$binary = preg_match('/BINARY/i', $column['Type']);
$unsigned = preg_match('/UNSIGNED/i', $column['Type']);
$zerofill = preg_match('/ZEROFILL/i', $column['Type']);
}
$attribute = '&nbsp;';
if ($binary) {
@ -309,28 +307,28 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
if ($zerofill) {
$attribute = 'UNSIGNED ZEROFILL';
}
if (! isset($row['Default'])) {
if ($row['Null'] != 'NO') {
$row['Default'] = 'NULL';
if (! isset($column['Default'])) {
if ($column['Null'] != 'NO') {
$column['Default'] = 'NULL';
}
}
$fmt_pre = '';
$fmt_post = '';
if (in_array($row['Field'], $unique_keys)) {
if (in_array($column['Field'], $unique_keys)) {
$fmt_pre = '<b>' . $fmt_pre;
$fmt_post = $fmt_post . '</b>';
}
if ($row['Key'] == 'PRI') {
if ($column['Key'] == 'PRI') {
$fmt_pre = '<i>' . $fmt_pre;
$fmt_post = $fmt_post . '</i>';
}
$schema_insert .= '<td class="print">' . $fmt_pre . htmlspecialchars($row['Field']) . $fmt_post . '</td>';
$schema_insert .= '<td class="print">' . $fmt_pre . htmlspecialchars($column['Field']) . $fmt_post . '</td>';
$schema_insert .= '<td class="print">' . htmlspecialchars($type) . '</td>';
$schema_insert .= '<td class="print">' . htmlspecialchars(($row['Null'] == '' || $row['Null'] == 'NO') ? __('No') : __('Yes')) . '</td>';
$schema_insert .= '<td class="print">' . htmlspecialchars(isset($row['Default']) ? $row['Default'] : '') . '</td>';
$schema_insert .= '<td class="print">' . htmlspecialchars(($column['Null'] == '' || $column['Null'] == 'NO') ? __('No') : __('Yes')) . '</td>';
$schema_insert .= '<td class="print">' . htmlspecialchars(isset($column['Default']) ? $column['Default'] : '') . '</td>';
$field_name = $row['Field'];
$field_name = $column['Field'];
if ($do_relation && $have_rel) {
$schema_insert .= '<td class="print">' . (isset($res_rel[$field_name]) ? htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' (' . $res_rel[$field_name]['foreign_field'] . ')') : '') . '</td>';
@ -348,7 +346,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
return false;
}
} // end while
PMA_DBI_free_result($result);
return PMA_exportOutputHandler('</table>');
}

View File

@ -316,9 +316,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
* Gets fields properties
*/
PMA_DBI_select_db($db);
$local_query = 'SHOW FIELDS FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table);
$result = PMA_DBI_query($local_query);
$fields_cnt = PMA_DBI_num_rows($result);
// Check if we can use Relations
if ($do_relation && !empty($cfgRelation['relation'])) {
@ -374,8 +371,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
$mime_map = PMA_getMIME($db, $table, true);
}
$local_buffer = PMA_texEscape($table);
// Table caption for first page and label
if (isset($GLOBALS['latex_caption'])) {
$buffer .= ' \\caption{'. PMA_expandUserString($GLOBALS['latex_structure_caption'], 'PMA_texEscape', array('table' => $table, 'database' => $db))
@ -394,8 +389,8 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
return false;
}
while ($row = PMA_DBI_fetch_assoc($result)) {
$fields = PMA_DBI_get_columns($db, $table);
foreach ($fields as $row) {
$type = $row['Type'];
// reformat mysql query output
// set or enum types: slashes single quotes inside options
@ -424,8 +419,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
if ($row['Null'] != 'NO') {
$row['Default'] = 'NULL';
}
} else {
$row['Default'] = $row['Default'];
}
$field_name = $row['Field'];
@ -468,7 +461,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
return false;
}
} // end while
PMA_DBI_free_result($result);
$buffer = ' \\end{longtable}' . $crlf;
return PMA_exportOutputHandler($buffer);

View File

@ -95,18 +95,16 @@ function PMA_exportDBCreate($db) {
* @access public
*/
function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
global $mediawiki_export_struct;
global $mediawiki_export_data;
$result = PMA_DBI_fetch_result("SHOW COLUMNS FROM `" . $db . "`.`" . $table . "`");
$row_cnt = count($result);
$columns = PMA_DBI_get_columns($db, $table);
$columns = array_values($columns);
$row_cnt = count($columns);
$output = "{| cellpadding=\"10\" cellspacing=\"0\" border=\"1\" style=\"text-align:center;\"\n";
$output .= "|+'''" . $table . "'''\n";
$output .= "|- style=\"background:#ffdead;\"\n";
$output .= "! style=\"background:#ffffff\" | \n";
for ($i = 0; $i < $row_cnt; ++$i) {
$output .= " | " . $result[$i]['Field'];
$output .= " | " . $columns[$i]['Field'];
if (($i + 1) != $row_cnt) {
$output .= "\n";
}
@ -116,7 +114,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
$output .= "|- style=\"background:#f9f9f9;\"\n";
$output .= "! style=\"background:#f2f2f2\" | Type\n";
for ($i = 0; $i < $row_cnt; ++$i) {
$output .= " | " . $result[$i]['Type'];
$output .= " | " . $columns[$i]['Type'];
if (($i + 1) != $row_cnt) {
$output .= "\n";
}
@ -126,7 +124,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
$output .= "|- style=\"background:#f9f9f9;\"\n";
$output .= "! style=\"background:#f2f2f2\" | Null\n";
for ($i = 0; $i < $row_cnt; ++$i) {
$output .= " | " . $result[$i]['Null'];
$output .= " | " . $columns[$i]['Null'];
if (($i + 1) != $row_cnt) {
$output .= "\n";
}
@ -136,7 +134,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
$output .= "|- style=\"background:#f9f9f9;\"\n";
$output .= "! style=\"background:#f2f2f2\" | Default\n";
for ($i = 0; $i < $row_cnt; ++$i) {
$output .= " | " . $result[$i]['Default'];
$output .= " | " . $columns[$i]['Default'];
if (($i + 1) != $row_cnt) {
$output .= "\n";
}
@ -146,7 +144,7 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
$output .= "|- style=\"background:#f9f9f9;\"\n";
$output .= "! style=\"background:#f2f2f2\" | Extra\n";
for ($i = 0; $i < $row_cnt; ++$i) {
$output .= " | " . $result[$i]['Extra'];
$output .= " | " . $columns[$i]['Extra'];
if (($i + 1) != $row_cnt) {
$output .= "\n";
}

View File

@ -251,9 +251,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
* Gets fields properties
*/
PMA_DBI_select_db($db);
$local_query = 'SHOW FIELDS FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table);
$result = PMA_DBI_query($local_query);
$fields_cnt = PMA_DBI_num_rows($result);
// Check if we can use Relations
if ($do_relation && !empty($cfgRelation['relation'])) {
@ -318,16 +315,17 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
}
$GLOBALS['odt_buffer'] .= '</table:table-row>';
while ($row = PMA_DBI_fetch_assoc($result)) {
$columns = PMA_DBI_get_columns($db, $table);
foreach ($columns as $column) {
$field_name = $column['Field'];
$GLOBALS['odt_buffer'] .= '<table:table-row>';
$GLOBALS['odt_buffer'] .= '<table:table-cell office:value-type="string">'
. '<text:p>' . htmlspecialchars($row['Field']) . '</text:p>'
. '<text:p>' . htmlspecialchars($field_name) . '</text:p>'
. '</table:table-cell>';
// reformat mysql query output
// set or enum types: slashes single quotes inside options
$field_name = $row['Field'];
$type = $row['Type'];
$type = $column['Type'];
if (preg_match('/^(set|enum)\((.+)\)$/i', $type, $tmp)) {
$tmp[2] = substr(preg_replace('/([^,])\'\'/', '\\1\\\'', ',' . $tmp[2]), 1);
$type = $tmp[1] . '(' . str_replace(',', ', ', $tmp[2]) . ')';
@ -345,27 +343,27 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
$type = '&nbsp;';
}
$binary = preg_match('/BINARY/i', $row['Type']);
$unsigned = preg_match('/UNSIGNED/i', $row['Type']);
$zerofill = preg_match('/ZEROFILL/i', $row['Type']);
$binary = preg_match('/BINARY/i', $column['Type']);
$unsigned = preg_match('/UNSIGNED/i', $column['Type']);
$zerofill = preg_match('/ZEROFILL/i', $column['Type']);
}
$GLOBALS['odt_buffer'] .= '<table:table-cell office:value-type="string">'
. '<text:p>' . htmlspecialchars($type) . '</text:p>'
. '</table:table-cell>';
if (!isset($row['Default'])) {
if ($row['Null'] != 'NO') {
$row['Default'] = 'NULL';
if (!isset($column['Default'])) {
if ($column['Null'] != 'NO') {
$column['Default'] = 'NULL';
} else {
$row['Default'] = '';
$column['Default'] = '';
}
} else {
$row['Default'] = $row['Default'];
$column['Default'] = $column['Default'];
}
$GLOBALS['odt_buffer'] .= '<table:table-cell office:value-type="string">'
. '<text:p>' . htmlspecialchars(($row['Null'] == '' || $row['Null'] == 'NO') ? __('No') : __('Yes')) . '</text:p>'
. '<text:p>' . htmlspecialchars(($column['Null'] == '' || $column['Null'] == 'NO') ? __('No') : __('Yes')) . '</text:p>'
. '</table:table-cell>';
$GLOBALS['odt_buffer'] .= '<table:table-cell office:value-type="string">'
. '<text:p>' . htmlspecialchars($row['Default']) . '</text:p>'
. '<text:p>' . htmlspecialchars($column['Default']) . '</text:p>'
. '</table:table-cell>';
if ($do_relation && $have_rel) {
@ -399,7 +397,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
}
$GLOBALS['odt_buffer'] .= '</table:table-row>';
} // end while
PMA_DBI_free_result($result);
$GLOBALS['odt_buffer'] .= '</table:table>';
return true;

View File

@ -195,9 +195,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
* Gets fields properties
*/
PMA_DBI_select_db($db);
$local_query = 'SHOW FIELDS FROM ' . PMA_backquote($db) . '.' . PMA_backquote($table);
$result = PMA_DBI_query($local_query);
$fields_cnt = PMA_DBI_num_rows($result);
// Check if we can use Relations
if ($do_relation && ! empty($cfgRelation['relation'])) {
@ -251,10 +248,11 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
return false;
}
while ($row = PMA_DBI_fetch_assoc($result)) {
$columns = PMA_DBI_get_columns($db, $table);
foreach ($columns as $column) {
$text_output = '';
$type = $row['Type'];
$type = $column['Type'];
// reformat mysql query output
// set or enum types: slashes single quotes inside options
if (preg_match('/^(set|enum)\((.+)\)$/i', $type, $tmp)) {
@ -274,9 +272,9 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
$type = '&nbsp;';
}
$binary = preg_match('/BINARY/i', $row['Type']);
$unsigned = preg_match('/UNSIGNED/i', $row['Type']);
$zerofill = preg_match('/ZEROFILL/i', $row['Type']);
$binary = preg_match('/BINARY/i', $column['Type']);
$unsigned = preg_match('/UNSIGNED/i', $column['Type']);
$zerofill = preg_match('/ZEROFILL/i', $column['Type']);
}
$attribute = '&nbsp;';
if ($binary) {
@ -288,30 +286,28 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
if ($zerofill) {
$attribute = 'UNSIGNED ZEROFILL';
}
if (! isset($row['Default'])) {
if ($row['Null'] != 'NO') {
$row['Default'] = 'NULL';
if (! isset($column['Default'])) {
if ($column['Null'] != 'NO') {
$column['Default'] = 'NULL';
}
} else {
$row['Default'] = $row['Default'];
}
$fmt_pre = '';
$fmt_post = '';
if (in_array($row['Field'], $unique_keys)) {
if (in_array($column['Field'], $unique_keys)) {
$fmt_pre = '**' . $fmt_pre;
$fmt_post = $fmt_post . '**';
}
if ($row['Key']=='PRI') {
if ($column['Key']=='PRI') {
$fmt_pre = '//' . $fmt_pre;
$fmt_post = $fmt_post . '//';
}
$text_output .= '|' . $fmt_pre . htmlspecialchars($row['Field']) . $fmt_post;
$text_output .= '|' . $fmt_pre . htmlspecialchars($column['Field']) . $fmt_post;
$text_output .= '|' . htmlspecialchars($type);
$text_output .= '|' . htmlspecialchars(($row['Null'] == '' || $row['Null'] == 'NO') ? __('No') : __('Yes'));
$text_output .= '|' . htmlspecialchars(isset($row['Default']) ? $row['Default'] : '');
$text_output .= '|' . htmlspecialchars(($column['Null'] == '' || $column['Null'] == 'NO') ? __('No') : __('Yes'));
$text_output .= '|' . htmlspecialchars(isset($column['Default']) ? $column['Default'] : '');
$field_name = $row['Field'];
$field_name = $column['Field'];
if ($do_relation && $have_rel) {
$text_output .= '|' . (isset($res_rel[$field_name]) ? htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' (' . $res_rel[$field_name]['foreign_field'] . ')') : '');
@ -329,7 +325,6 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
return false;
}
} // end while
PMA_DBI_free_result($result);
return true;
}

View File

@ -74,7 +74,7 @@ function PMA_exportHeader() {
global $db;
global $table;
global $tables;
$export_struct = isset($GLOBALS['xml_export_functions']) || isset($GLOBALS['xml_export_procedures'])
|| isset($GLOBALS['xml_export_tables']) || isset($GLOBALS['xml_export_triggers'])
|| isset($GLOBALS['xml_export_views']);
@ -114,7 +114,7 @@ function PMA_exportHeader() {
$head .= ' -->' . $crlf;
$head .= ' <pma:structure_schemas>' . $crlf;
$head .= ' <pma:database name="' . htmlspecialchars($db) . '" collation="' . $db_collation . '" charset="' . $db_charset . '">' . $crlf;
if (count($tables) == 0) {
$tables[] = $table;
}
@ -131,23 +131,23 @@ function PMA_exportHeader() {
} else {
$type = 'table';
}
if ($is_view && ! isset($GLOBALS['xml_export_views'])) {
continue;
}
if (! $is_view && ! isset($GLOBALS['xml_export_tables'])) {
continue;
}
$head .= ' <pma:' . $type . ' name="' . $table . '">' . $crlf;
$tbl = " " . htmlspecialchars($tbl);
$tbl = str_replace("\n", "\n ", $tbl);
$head .= $tbl . ';' . $crlf;
$head .= ' </pma:' . $type . '>' . $crlf;
if (isset($GLOBALS['xml_export_triggers']) && $GLOBALS['xml_export_triggers']) {
// Export triggers
$triggers = PMA_DBI_get_triggers($db, $table);
@ -170,7 +170,7 @@ function PMA_exportHeader() {
}
}
}
if (isset($GLOBALS['xml_export_functions']) && $GLOBALS['xml_export_functions']) {
// Export functions
$functions = PMA_DBI_get_procedures_or_functions($db, 'FUNCTION');
@ -193,7 +193,7 @@ function PMA_exportHeader() {
unset($functions);
}
}
if (isset($GLOBALS['xml_export_procedures']) && $GLOBALS['xml_export_procedures']) {
// Export procedures
$procedures = PMA_DBI_get_procedures_or_functions($db, 'PROCEDURE');
@ -240,13 +240,13 @@ function PMA_exportHeader() {
*/
function PMA_exportDBHeader($db) {
global $crlf;
if (isset($GLOBALS['xml_export_contents']) && $GLOBALS['xml_export_contents']) {
$head = ' <!--' . $crlf
. ' - ' . __('Database') . ': ' . (isset($GLOBALS['use_backquotes']) ? PMA_backquote($db) : '\'' . $db . '\''). $crlf
. ' -->' . $crlf
. ' <database name="' . htmlspecialchars($db) . '">' . $crlf;
return PMA_exportOutputHandler($head);
}
else
@ -265,7 +265,7 @@ function PMA_exportDBHeader($db) {
*/
function PMA_exportDBFooter($db) {
global $crlf;
if (isset($GLOBALS['xml_export_contents']) && $GLOBALS['xml_export_contents']) {
return PMA_exportOutputHandler(' </database>' . $crlf);
}
@ -300,6 +300,7 @@ function PMA_exportDBCreate($db) {
* @access public
*/
function PMA_exportData($db, $table, $crlf, $error_url, $sql_query) {
if (isset($GLOBALS['xml_export_contents']) && $GLOBALS['xml_export_contents']) {
$result = PMA_DBI_query($sql_query, null, PMA_DBI_QUERY_UNBUFFERED);

View File

@ -936,7 +936,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
$tempSQLStr .= ", ";
}
}
$tempSQLStr .= ") ENGINE=MyISAM DEFAULT CHARACTER SET " . $charset . " COLLATE " . $collation . ";";
$tempSQLStr .= ") DEFAULT CHARACTER SET " . $charset . " COLLATE " . $collation . ";";
/**
* Each SQL statement is executed immediately

View File

@ -43,34 +43,10 @@ function PMA_EVN_setGlobals()
'MINUTE_SECOND');
}
/**
* This function is defined in: rte_routines.lib.php, rte_triggers.lib.php and
* rte_events.lib.php. It is used to retreive some language strings that are
* used in functionalities that are common to routines, triggers and events.
*
* @param string $index The index of the string to get
*
* @return string The requested string or an empty string, if not available
*/
function PMA_RTE_getWord($index)
{
$words = array(
'add' => __('Add event'),
'docu' => 'EVENTS',
'export' => __('Export of event %s'),
'human' => __('event'),
'no_create' => __('You do not have the necessary privileges to create an event'),
'not_found' => __('No event with name %1$s found in database %2$s'),
'nothing' => __('There are no events to display.'),
'title' => __('Events'),
);
return isset($words[$index]) ? $words[$index] : '';
} // end PMA_RTE_getWord()
/**
* Main function for the events functionality
*/
function PMA_RTE_main()
function PMA_EVN_main()
{
global $db;
@ -95,7 +71,7 @@ function PMA_RTE_main()
* toggle the state of the event scheduler.
*/
echo PMA_EVN_getFooterLinks();
} // end PMA_RTE_main()
} // end PMA_EVN_main()
/**
* Handles editor requests for adding or editing an item

View File

@ -13,6 +13,7 @@ if (! defined('PHPMYADMIN')) {
* Include all other files that are common
* to routines, triggers and events.
*/
require_once './libraries/rte/rte_words.lib.php';
require_once './libraries/rte/rte_export.lib.php';
require_once './libraries/rte/rte_list.lib.php';
require_once './libraries/rte/rte_footer.lib.php';
@ -71,14 +72,21 @@ $titles = PMA_buildActionTitles();
*/
$errors = array();
/**
* The below function is defined in rte_routines.lib.php,
* rte_triggers.lib.php and rte_events.lib.php
*
* The appropriate function will now be called based on which one
* of these files was included earlier in the top-level folder
* Call the appropriate main function
*/
PMA_RTE_main();
switch ($_PMA_RTE) {
case 'RTN':
PMA_RTN_main();
break;
case 'TRI':
PMA_TRI_main();
break;
case 'EVN':
PMA_EVN_main();
break;
}
/**
* Display the footer, if necessary

View File

@ -28,34 +28,10 @@ function PMA_RTN_setGlobals()
'MODIFIES SQL DATA');
}
/**
* This function is defined in: rte_routines.lib.php, rte_triggers.lib.php and
* rte_events.lib.php. It is used to retreive some language strings that are
* used in functionalities that are common to routines, triggers and events.
*
* @param string $index The index of the string to get
*
* @return string The requested string or an empty string, if not available
*/
function PMA_RTE_getWord($index)
{
$words = array(
'add' => __('Add routine'),
'docu' => 'STORED_ROUTINES',
'export' => __('Export of routine %s'),
'human' => __('routine'),
'no_create' => __('You do not have the necessary privileges to create a routine'),
'not_found' => __('No routine with name %1$s found in database %2$s'),
'nothing' => __('There are no routines to display.'),
'title' => __('Routines'),
);
return isset($words[$index]) ? $words[$index] : '';
} // end PMA_RTE_getWord()
/**
* Main function for the routines functionality
*/
function PMA_RTE_main()
function PMA_RTN_main()
{
global $db;
@ -93,7 +69,7 @@ function PMA_RTE_main()
E_USER_WARNING
);
}
} // end PMA_RTE_main()
} // end PMA_RTN_main()
/**
* This function parses a string containing one parameter of a routine,
@ -130,8 +106,7 @@ function PMA_RTN_parseOneParameter($value)
$param_opts = array();
for ($i=$pos; $i<$parsed_param['len']; $i++) {
if (($parsed_param[$i]['type'] == 'alpha_columnType'
|| $parsed_param[$i]['type'] == 'alpha_functionName') // "CHAR" seems to be mistaken for a function by the parser
&& $depth == 0
|| $parsed_param[$i]['type'] == 'alpha_functionName') && $depth == 0 // "CHAR" seems to be mistaken for a function by the parser
) {
$retval[2] = strtoupper($parsed_param[$i]['data']);
} else if ($parsed_param[$i]['type'] == 'punct_bracket_open_round' && $depth == 0) {
@ -452,7 +427,7 @@ function PMA_RTN_getDataFromRequest()
$retval['item_param_length'] = array();
$retval['item_param_opts_num'] = array();
$retval['item_param_opts_text'] = array();
if (isset($_REQUEST['item_param_name'])
if ( isset($_REQUEST['item_param_name'])
&& isset($_REQUEST['item_param_type'])
&& isset($_REQUEST['item_param_length'])
&& isset($_REQUEST['item_param_opts_num'])
@ -464,65 +439,30 @@ function PMA_RTN_getDataFromRequest()
&& is_array($_REQUEST['item_param_opts_text'])
) {
if ($_REQUEST['item_type'] == 'PROCEDURE') {
$temp_num_params = 0;
$retval['item_param_dir'] = $_REQUEST['item_param_dir'];
foreach ($retval['item_param_dir'] as $key => $value) {
if (! in_array($value, $param_directions, true)) {
$retval['item_param_dir'][$key] = '';
}
$retval['item_num_params']++;
}
if ($temp_num_params > $retval['item_num_params']) {
$retval['item_num_params'] = $temp_num_params;
}
}
$temp_num_params = 0;
$retval['item_param_name'] = $_REQUEST['item_param_name'];
foreach ($retval['item_param_name'] as $key => $value) {
$retval['item_param_name'][$key] = $value;
$temp_num_params++;
}
if ($temp_num_params > $retval['item_num_params']) {
$retval['item_num_params'] = $temp_num_params;
}
$temp_num_params = 0;
$retval['item_param_type'] = $_REQUEST['item_param_type'];
foreach ($retval['item_param_type'] as $key => $value) {
if (! in_array($value, PMA_getSupportedDatatypes(), true)) {
$retval['item_param_type'][$key] = '';
}
$temp_num_params++;
}
if ($temp_num_params > $retval['item_num_params']) {
$retval['item_num_params'] = $temp_num_params;
}
$temp_num_params = 0;
$retval['item_param_length'] = $_REQUEST['item_param_length'];
foreach ($retval['item_param_length'] as $key => $value) {
$retval['item_param_length'][$key] = $value;
$temp_num_params++;
}
if ($temp_num_params > $retval['item_num_params']) {
$retval['item_num_params'] = $temp_num_params;
}
$temp_num_params = 0;
$retval['item_param_opts_num'] = $_REQUEST['item_param_opts_num'];
foreach ($retval['item_param_opts_num'] as $key => $value) {
$retval['item_param_opts_num'][$key] = $value;
$temp_num_params++;
}
if ($temp_num_params > $retval['item_num_params']) {
$retval['item_num_params'] = $temp_num_params;
}
$temp_num_params = 0;
$retval['item_param_length'] = $_REQUEST['item_param_length'];
$retval['item_param_opts_num'] = $_REQUEST['item_param_opts_num'];
$retval['item_param_opts_text'] = $_REQUEST['item_param_opts_text'];
foreach ($retval['item_param_opts_text'] as $key => $value) {
$retval['item_param_opts_text'][$key] = $value;
$temp_num_params++;
}
if ($temp_num_params > $retval['item_num_params']) {
$retval['item_num_params'] = $temp_num_params;
}
$retval['item_num_params'] = max(
count($retval['item_param_name']),
count($retval['item_param_type']),
count($retval['item_param_length']),
count($retval['item_param_opts_num']),
count($retval['item_param_opts_text'])
);
}
$retval['item_returntype'] = '';
if (isset($_REQUEST['item_returntype'])
@ -1032,7 +972,9 @@ function PMA_RTN_getEditorForm($mode, $operation, $routine)
*/
function PMA_RTN_getQueryFromRequest()
{
global $_REQUEST, $cfg, $errors, $param_sqldataaccess, $param_opts_num;
global $_REQUEST, $cfg, $errors, $param_sqldataaccess, $param_opts_num, $param_directions;
$_REQUEST['item_type'] = isset($_REQUEST['item_type']) ? $_REQUEST['item_type'] : '';
$query = 'CREATE ';
if (! empty($_REQUEST['item_definer'])) {
@ -1052,7 +994,7 @@ function PMA_RTN_getQueryFromRequest()
$errors[] = sprintf(__('Invalid routine type: "%s"'), htmlspecialchars($_REQUEST['item_type']));
}
if (! empty($_REQUEST['item_name'])) {
$query .= PMA_backquote($_REQUEST['item_name']) . ' ';
$query .= PMA_backquote($_REQUEST['item_name']);
} else {
$errors[] = __('You must provide a routine name');
}
@ -1069,7 +1011,10 @@ function PMA_RTN_getQueryFromRequest()
) {
for ($i=0; $i<count($_REQUEST['item_param_name']); $i++) {
if (! empty($_REQUEST['item_param_name'][$i]) && ! empty($_REQUEST['item_param_type'][$i])) {
if ($_REQUEST['item_type'] == 'PROCEDURE' && ! empty($_REQUEST['item_param_dir'][$i])) {
if ($_REQUEST['item_type'] == 'PROCEDURE'
&& ! empty($_REQUEST['item_param_dir'][$i])
&& in_array($_REQUEST['item_param_dir'][$i], $param_directions)
) {
$params .= $_REQUEST['item_param_dir'][$i] . " " . PMA_backquote($_REQUEST['item_param_name'][$i]) . " "
. $_REQUEST['item_param_type'][$i];
} else if ($_REQUEST['item_type'] == 'FUNCTION') {
@ -1093,19 +1038,13 @@ function PMA_RTN_getQueryFromRequest()
}
}
if (! empty($_REQUEST['item_param_opts_text'][$i])) {
if (isset($cfg['RestrictColumnTypes'][strtoupper($_REQUEST['item_param_type'][$i])])) {
$group = $cfg['RestrictColumnTypes'][strtoupper($_REQUEST['item_param_type'][$i])];
if ($group == 'FUNC_CHAR') {
$params .= ' CHARSET ' . strtolower($_REQUEST['item_param_opts_text'][$i]);
}
if (in_array($_REQUEST['item_param_type'][$i], $cfg['ColumnTypes']['STRING'])) {
$params .= ' CHARSET ' . strtolower($_REQUEST['item_param_opts_text'][$i]);
}
}
if (! empty($_REQUEST['item_param_opts_num'][$i])) {
if (isset($cfg['RestrictColumnTypes'][strtoupper($_REQUEST['item_param_type'][$i])])) {
$group = $cfg['RestrictColumnTypes'][strtoupper($_REQUEST['item_param_type'][$i])];
if ($group == 'FUNC_NUMBER' && in_array($_REQUEST['item_param_opts_num'][$i], $param_opts_num)) {
$params .= ' ' . strtoupper($_REQUEST['item_param_opts_num'][$i]);
}
if (in_array($_REQUEST['item_param_type'][$i], $cfg['ColumnTypes']['NUMERIC'])) {
$params .= ' ' . strtoupper($_REQUEST['item_param_opts_num'][$i]);
}
}
if ($i != count($_REQUEST['item_param_name'])-1) {
@ -1118,7 +1057,7 @@ function PMA_RTN_getQueryFromRequest()
}
}
}
$query .= " (" . $params . ") ";
$query .= "(" . $params . ") ";
if ($_REQUEST['item_type'] == 'FUNCTION') {
if (! empty($_REQUEST['item_returntype']) && in_array($_REQUEST['item_returntype'], PMA_getSupportedDatatypes())) {
$query .= "RETURNS {$_REQUEST['item_returntype']}";
@ -1137,19 +1076,13 @@ function PMA_RTN_getQueryFromRequest()
}
}
if (! empty($_REQUEST['item_returnopts_text'])) {
if (isset($cfg['RestrictColumnTypes'][strtoupper($_REQUEST['item_returntype'])])) {
$group = $cfg['RestrictColumnTypes'][strtoupper($_REQUEST['item_returntype'])];
if ($group == 'FUNC_CHAR') {
$query .= ' CHARSET ' . strtolower($_REQUEST['item_returnopts_text']);
}
if (in_array($_REQUEST['item_returntype'], $cfg['ColumnTypes']['STRING'])) {
$query .= ' CHARSET ' . strtolower($_REQUEST['item_returnopts_text']);
}
}
if (! empty($_REQUEST['item_returnopts_num'])) {
if (isset($cfg['RestrictColumnTypes'][strtoupper($_REQUEST['item_returntype'])])) {
$group = $cfg['RestrictColumnTypes'][strtoupper($_REQUEST['item_returntype'])];
if ($group == 'FUNC_NUMBER' && in_array($_REQUEST['item_returnopts_num'], $param_opts_num)) {
$query .= ' ' . strtoupper($_REQUEST['item_returnopts_num']);
}
if (in_array($_REQUEST['item_returntype'], $cfg['ColumnTypes']['NUMERIC'])) {
$query .= ' ' . strtoupper($_REQUEST['item_returnopts_num']);
}
}
$query .= ' ';

View File

@ -24,34 +24,10 @@ function PMA_TRI_setGlobals()
'DELETE');
}
/**
* This function is defined in: rte_routines.lib.php, rte_triggers.lib.php and
* rte_events.lib.php. It is used to retreive some language strings that are
* used in functionalities that are common to routines, triggers and events.
*
* @param string $index The index of the string to get
*
* @return string The requested string or an empty string, if not available
*/
function PMA_RTE_getWord($index)
{
$words = array(
'add' => __('Add trigger'),
'docu' => 'TRIGGERS',
'export' => __('Export of trigger %s'),
'human' => __('trigger'),
'no_create' => __('You do not have the necessary privileges to create a trigger'),
'not_found' => __('No trigger with name %1$s found in database %2$s'),
'nothing' => __('There are no triggers to display.'),
'title' => __('Triggers'),
);
return isset($words[$index]) ? $words[$index] : '';
} // end PMA_RTE_getWord()
/**
* Main function for the triggers functionality
*/
function PMA_RTE_main()
function PMA_TRI_main()
{
global $db, $table;
@ -71,7 +47,7 @@ function PMA_RTE_main()
* if the user has the necessary privileges
*/
echo PMA_TRI_getFooterLinks();
} // end PMA_RTE_main()
} // end PMA_TRI_main()
/**
* Handles editor requests for adding or editing an item

View File

@ -0,0 +1,60 @@
<?php
/**
* This function is used to retreive some language strings that are used
* in functionalities that are common to routines, triggers and events.
*
* @param string $index The index of the string to get
*
* @return string The requested string or an empty string, if not available
*/
function PMA_RTE_getWord($index)
{
global $_PMA_RTE;
switch ($_PMA_RTE) {
case 'RTN':
$words = array(
'add' => __('Add routine'),
'docu' => 'STORED_ROUTINES',
'export' => __('Export of routine %s'),
'human' => __('routine'),
'no_create' => __('You do not have the necessary privileges to create a routine'),
'not_found' => __('No routine with name %1$s found in database %2$s'),
'nothing' => __('There are no routines to display.'),
'title' => __('Routines'),
);
break;
case 'TRI':
$words = array(
'add' => __('Add trigger'),
'docu' => 'TRIGGERS',
'export' => __('Export of trigger %s'),
'human' => __('trigger'),
'no_create' => __('You do not have the necessary privileges to create a trigger'),
'not_found' => __('No trigger with name %1$s found in database %2$s'),
'nothing' => __('There are no triggers to display.'),
'title' => __('Triggers'),
);
break;
case 'EVN':
$words = array(
'add' => __('Add event'),
'docu' => 'EVENTS',
'export' => __('Export of event %s'),
'human' => __('event'),
'no_create' => __('You do not have the necessary privileges to create an event'),
'not_found' => __('No event with name %1$s found in database %2$s'),
'nothing' => __('There are no events to display.'),
'title' => __('Events'),
);
break;
default:
$words = array();
break;
}
return isset($words[$index]) ? $words[$index] : '';
} // end PMA_RTE_getWord()
?>

View File

@ -9,18 +9,7 @@
* Zip file creation class.
* Makes zip files.
*
* Based on :
*
* http://www.zend.com/codex.php?id=535&single=1
* By Eric Mueller <eric@themepark.com>
*
* http://www.zend.com/codex.php?id=470&single=1
* by Denis125 <webmaster@atlant.ru>
*
* a patch from Peter Listiak <mlady@users.sourceforge.net> for last modified
* date and time of the compressed file
*
* Official ZIP file format: http://www.pkware.com/appnote.txt
* @see Official ZIP file format: http://www.pkware.com/support/zip-app-note
*
* @access public
* @package phpMyAdmin
@ -147,14 +136,6 @@ class zipfile
// "file data" segment
$fr .= $zdata;
// "data descriptor" segment (optional but necessary if archive is not
// served as file)
// this seems not to be needed at all and causes
// problems in some cases (bug #1037737)
//$fr .= pack('V', $crc); // crc32
//$fr .= pack('V', $c_len); // compressed filesize
//$fr .= pack('V', $unc_len); // uncompressed filesize
// echo this entry on the fly, ...
if ( $this -> doWrite) {
echo $fr;
@ -205,7 +186,7 @@ class zipfile
pack('v', sizeof($this -> ctrl_dir)) . // total # of entries "on this disk"
pack('v', sizeof($this -> ctrl_dir)) . // total # of entries overall
pack('V', strlen($ctrldir)) . // size of central dir
pack('V', strlen($data)) . // offset to start of central dir
pack('V', $this -> old_offset) . // offset to start of central dir
"\x00\x00"; // .zip file comment length
if ( $this -> doWrite ) { // Send central directory & end ctrl dir to STDOUT

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: afrikaans <af@li.org>\n"
"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: af\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@ -649,8 +649,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -895,8 +895,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1918,8 +1918,8 @@ msgstr "Welkom by %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@ -4871,8 +4871,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5597,8 +5597,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8396,8 +8396,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-09 03:43+0200\n"
"Last-Translator: Abdullah Al-Saedi <abdullah.10@windowslive.com>\n"
"Language-Team: arabic <ar@li.org>\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
"X-Generator: Pootle 2.0.5\n"
@ -353,8 +353,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
"s."
"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
"%s."
#: db_operations.php:600
msgid "Edit or export relational schema"
@ -634,8 +634,8 @@ msgstr "التتبع غير نشط."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr "هذا العرض له ما لا يقل عدد هذه الصفوف يرجى الرجوع إلى %s الوثيقة %s"
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -871,8 +871,8 @@ msgstr "تم حفظ الـDump إلى الملف %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"يبدو أنك تحاول رفع ملف كبير الحجم , فضلاً راجع المستند %sdocumentation%s لحل "
"المشكلة."
@ -1826,8 +1826,8 @@ msgstr "أهلا بك في %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr "يبدو انك لم تنشئ ملف الإعدادات.إستخدم %1$ssetup script%2$s لإنشائه."
#: libraries/auth/config.auth.lib.php:115
@ -4745,8 +4745,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5478,8 +5478,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -7624,8 +7624,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
"s."
"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
"%s."
#: main.php:314
msgid ""
@ -8370,8 +8370,8 @@ msgstr "احذف قواعد البيانات التي لها نفس أسماء
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL "
"مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا "
@ -10683,8 +10683,8 @@ msgstr "أعد تسمية العرض الـ"
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %"
#~ "sهنا%s."
#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط "
#~ "%sهنا%s."
#~ msgid "Execute bookmarked query"
#~ msgstr "نفذ استعلام محفوظ بعلامة مرجعية"

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@ -648,8 +648,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -897,8 +897,8 @@ msgstr "Sxem %s faylına qeyd edildi."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1939,8 +1939,8 @@ msgstr "%s - e Xoş Gelmişsiniz!"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@ -4929,8 +4929,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5664,8 +5664,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8568,8 +8568,8 @@ msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Qeyd: phpMyAdmin istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler "
"cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin "

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic <be@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@ -647,11 +647,11 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %"
"sдакумэнтацыі%s."
"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да "
"%акумэнтацыі%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@ -903,8 +903,8 @@ msgstr "Дамп захаваны ў файл %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, "
"зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае "
@ -923,8 +923,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%"
"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца "
"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
"канфігурацыі."
#: import.php:335
@ -1976,8 +1976,8 @@ msgstr "Запрашаем у %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго "
"стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s."
@ -5028,8 +5028,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна "
"выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя "
@ -5834,8 +5834,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8831,8 +8831,8 @@ msgstr "Выдаліць базы дадзеных, якія маюць такі
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц "
"прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, "

View File

@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal@cihar.com>\n"
"Language-Team: belarusian_latin <be@latin@li.org>\n"
"Language: be@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: be@latin\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@ -653,11 +653,11 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %"
"sdakumentacyi%s."
"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da "
"%sdakumentacyi%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@ -900,8 +900,8 @@ msgstr "Damp zachavany ŭ fajł %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, "
"źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje "
@ -920,8 +920,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%"
"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca "
"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
"kanfihuracyi."
#: import.php:335
@ -1981,8 +1981,8 @@ msgstr "Zaprašajem u %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab "
"jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s."
@ -5002,8 +5002,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu "
"možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć "
@ -5811,8 +5811,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -7546,8 +7546,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci "
"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %"
"sdakumentacyi%s."
"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ "
"%sdakumentacyi%s."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@ -7747,8 +7747,8 @@ msgstr ""
"dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar "
"vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar "
"vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo "
"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U "
"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). "
"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
"parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), "
"a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()."
@ -8809,8 +8809,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic "
"pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, "

344
po/bg.po

File diff suppressed because it is too large Load Diff

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
"Last-Translator: Nobin নবীন <nobin@cyberbogra.com>\n"
"Language-Team: bangla <bn@li.org>\n"
"Language: bn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: bn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -644,8 +644,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -895,11 +895,11 @@ msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1956,8 +1956,8 @@ msgstr "Welcome to %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার "
"করে একটি তৈরী করতে পারেন "
@ -4992,12 +4992,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:268
msgid "use this for future exports"
@ -5760,8 +5760,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8723,13 +8723,13 @@ msgstr "ব্যাবহারকারীর নামে নাম এমন
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."

264
po/br.po
View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"PO-Revision-Date: 2011-07-11 20:39+0200\n"
"Last-Translator: <fulup.jakez@ofis-bzh.org>\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-17 21:41+0200\n"
"Last-Translator: Fulup <fulup.jakez@ofis-bzh.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: br\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: br\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.0.5\n"
@ -626,11 +626,11 @@ msgstr "N'eo ket oberiant an heuliañ."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an %"
"steulioù titouriñ%s."
"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an "
"%steulioù titouriñ%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@ -867,11 +867,11 @@ msgstr "Enrollet eo bet ar restr ezporzhiañ e%s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an %"
"steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se."
"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an "
"%steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1824,11 +1824,11 @@ msgstr "Degemer mat e %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar %"
"1$sskript kefluniañ%2$s da sevel unan."
"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar "
"%1$sskript kefluniañ%2$s da sevel unan."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@ -2226,10 +2226,9 @@ msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Direizhet eo an arc'hwel %s gant un draen anavezet, sellit ouzh %s"
#: libraries/common.lib.php:2447
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Klikañ evit diuzañ"
msgstr "Klikañ evit gwintañ"
#: libraries/common.lib.php:2718 libraries/common.lib.php:2725
#: libraries/common.lib.php:2912 libraries/config/setup.forms.php:296
@ -2870,76 +2869,79 @@ msgstr "Ensoc'hadennoù gant dale"
#: libraries/config/messages.inc.php:125 libraries/export/sql.php:79
msgid "Disable foreign key checks"
msgstr ""
msgstr "Diweredekaat ar gwiriañ alc'hwezioù estren"
#: libraries/config/messages.inc.php:128
msgid "Use hexadecimal for BLOB"
msgstr ""
msgstr "Implijout an eizhdekvedennad evit BLOB"
#: libraries/config/messages.inc.php:130
msgid "Use ignore inserts"
msgstr ""
msgstr "Arabat ensoc'hañ ul linenn a dalvez kement hag un alc'hwez nemetañ"
#: libraries/config/messages.inc.php:132
msgid "Syntax to use when inserting data"
msgstr ""
msgstr "Ereadur d'ober gantañ pa vez ensoc'het roadennoù"
#: libraries/config/messages.inc.php:133 libraries/export/sql.php:268
msgid "Maximal length of created query"
msgstr ""
msgstr "Ment vrasañ ar reked krouet"
#: libraries/config/messages.inc.php:138
msgid "Export type"
msgstr ""
msgstr "Seurt ezporzhiadenn"
#: libraries/config/messages.inc.php:139 libraries/export/sql.php:71
msgid "Enclose export in a transaction"
msgstr ""
msgstr "Enklozañ an ezporzhiadenn en un treuzgread"
#: libraries/config/messages.inc.php:140
msgid "Export time in UTC"
msgstr ""
msgstr "Ezporzhiañ an eur er furmad UTC"
#: libraries/config/messages.inc.php:148
msgid "Force secured connection while using phpMyAdmin"
msgstr ""
msgstr "Rediañ a ra kevreadennoù https etre ar servijer ha phpMyAdmin"
#: libraries/config/messages.inc.php:149
msgid "Force SSL connection"
msgstr ""
msgstr "Rediañ ar c'hevreadennoù SSL"
#: libraries/config/messages.inc.php:150
msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
"Urzh renkañ evit an elfennoù en ur voest desachañ alc'hwezioù estren; "
"[kbd]content[/kbd] zo evit an roadenn a zaveer dezhi, [kbd]id[/kbd] zo evit "
"talvout an alc'hwez"
#: libraries/config/messages.inc.php:151
msgid "Foreign key dropdown order"
msgstr ""
msgstr "Urzh dispakañ an alc'hwezioù estren"
#: libraries/config/messages.inc.php:152
msgid "A dropdown will be used if fewer items are present"
msgstr ""
msgstr "Ul lañser desachañ a vo implijet ma vez nebeutoc'h a elfennoù"
#: libraries/config/messages.inc.php:153
msgid "Foreign key limit"
msgstr ""
msgstr "Bevenn evit an alc'hwezioù estren"
#: libraries/config/messages.inc.php:154
msgid "Browse mode"
msgstr ""
msgstr "Mod merdeiñ"
#: libraries/config/messages.inc.php:155
msgid "Customize browse mode"
msgstr ""
msgstr "Personelaat ar mod merdeiñ"
#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159
#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187
#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217
#: libraries/config/messages.inc.php:229
msgid "Customize default options"
msgstr ""
msgstr "Personelaat an dibarzhioù dre ziouer"
#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:237
#: libraries/config/setup.forms.php:316
@ -2947,119 +2949,119 @@ msgstr ""
#: libraries/config/user_preferences.forms.php:216 libraries/export/csv.php:19
#: libraries/import/csv.php:22
msgid "CSV"
msgstr ""
msgstr "CSV"
#: libraries/config/messages.inc.php:160
msgid "Developer"
msgstr ""
msgstr "Diorroer"
#: libraries/config/messages.inc.php:161
msgid "Settings for phpMyAdmin developers"
msgstr ""
msgstr "Arventennoù evit diorroerien phpMyAdmin"
#: libraries/config/messages.inc.php:162
msgid "Edit mode"
msgstr ""
msgstr "Mod aozañ"
#: libraries/config/messages.inc.php:163
msgid "Customize edit mode"
msgstr ""
msgstr "Personelaat ar mod aozañ"
#: libraries/config/messages.inc.php:165
msgid "Export defaults"
msgstr ""
msgstr "Talvoudoù dre ziouer evit an ezporzhiañ"
#: libraries/config/messages.inc.php:166
msgid "Customize default export options"
msgstr ""
msgstr "Personelaat an talvoudoù ezporzhiañ implijet dre ziouer"
#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209
#: setup/frames/menu.inc.php:16
msgid "Features"
msgstr ""
msgstr "Dezverkoù"
#: libraries/config/messages.inc.php:168
msgid "General"
msgstr ""
msgstr "Dre-vras"
#: libraries/config/messages.inc.php:169
msgid "Set some commonly used options"
msgstr ""
msgstr "Termeniñ un nebeud dibarzhioù implijet ingal"
#: libraries/config/messages.inc.php:170 libraries/db_links.inc.php:83
#: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89
#: prefs_manage.php:231 setup/frames/menu.inc.php:20
msgid "Import"
msgstr ""
msgstr "Enporzhiañ"
#: libraries/config/messages.inc.php:171
msgid "Import defaults"
msgstr ""
msgstr "Talvoudoù enporzhiañ dre ziouer"
#: libraries/config/messages.inc.php:172
msgid "Customize default common import options"
msgstr ""
msgstr "Personelaat an talvoudoù implijet dre ziouer"
#: libraries/config/messages.inc.php:173
msgid "Import / export"
msgstr ""
msgstr "Enporzhiañ / Ezporzhiañ"
#: libraries/config/messages.inc.php:174
msgid "Set import and export directories and compression options"
msgstr ""
msgstr "Kefluniañ ar c'havlec'hioù enporzhiañ hag an dibarzhioù gwaskañ"
#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27
msgid "LaTeX"
msgstr ""
msgstr "LaTex"
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
msgstr "Dibarzhioù diskwel an diazoù roadennoù"
#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18
msgid "Navigation frame"
msgstr ""
msgstr "Taolenn verdeiñ"
#: libraries/config/messages.inc.php:180
msgid "Customize appearance of the navigation frame"
msgstr ""
msgstr "Personelaat tres an daolenn verdeiñ"
#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:36
#: setup/frames/index.inc.php:110
msgid "Servers"
msgstr ""
msgstr "Servijerioù"
#: libraries/config/messages.inc.php:182
msgid "Servers display options"
msgstr ""
msgstr "Dibarzhioù diskwel ar servijerioù"
#: libraries/config/messages.inc.php:184
msgid "Tables display options"
msgstr ""
msgstr "Dibarzhioù diskwel an taolennoù"
#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19
msgid "Main frame"
msgstr ""
msgstr "Taolenn bennañ"
#: libraries/config/messages.inc.php:186
msgid "Microsoft Office"
msgstr ""
msgstr "Microsoft Office"
#: libraries/config/messages.inc.php:188
msgid "Open Document"
msgstr ""
msgstr "Testenn Open Document"
#: libraries/config/messages.inc.php:190
msgid "Other core settings"
msgstr ""
msgstr "Arventennoù pouezus all"
#: libraries/config/messages.inc.php:191
msgid "Settings that didn't fit enywhere else"
msgstr ""
msgstr "Arventennoù a bep seurt"
#: libraries/config/messages.inc.php:192
msgid "Page titles"
msgstr ""
msgstr "Titloù pajennoù"
#: libraries/config/messages.inc.php:193
msgid ""
@ -3067,57 +3069,64 @@ msgid ""
"html#cfg_TitleTable]documentation[/a] for magic strings that can be used to "
"get special values."
msgstr ""
"Spisaat testenn barrenn ditl ar merdeer. En em zaveiñ d'an "
"[a@Documentation.html#cfg_TitleTable]teuliadur[/a] evit an neudennadoù hud a "
"c'haller ober ganto."
#: libraries/config/messages.inc.php:194
#: libraries/navigation_header.inc.php:83
#: libraries/navigation_header.inc.php:86
#: libraries/navigation_header.inc.php:89
msgid "Query window"
msgstr ""
msgstr "Prenestr klask"
#: libraries/config/messages.inc.php:195
msgid "Customize query window options"
msgstr ""
msgstr "Personelaat dibarzhioù ar prenestr klask"
#: libraries/config/messages.inc.php:196
msgid "Security"
msgstr ""
msgstr "Surentez"
#: libraries/config/messages.inc.php:197
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL"
msgstr ""
"Notennit mat n'eo phpMyAdmin nemet un etrefas ha n'eo ket bevennet e mod "
"ebet MySQL gant an perzhioù anezhi"
#: libraries/config/messages.inc.php:198
msgid "Basic settings"
msgstr ""
msgstr "Arventennoù diazez"
#: libraries/config/messages.inc.php:199
msgid "Authentication"
msgstr ""
msgstr "Dilesadur"
#: libraries/config/messages.inc.php:200
msgid "Authentication settings"
msgstr ""
msgstr "Arventennoù dilesañ"
#: libraries/config/messages.inc.php:201
msgid "Server configuration"
msgstr ""
msgstr "Kefluniadur ar servijer"
#: libraries/config/messages.inc.php:202
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for"
msgstr ""
"Kefluniadur pishoc'h; bezit sur e ouzit ar pezh a rit a-raok mont da gemmañ "
"tra pe dra"
#: libraries/config/messages.inc.php:203
msgid "Enter server connection parameters"
msgstr ""
msgstr "Merkañ arventennoù kevreañ ar servijer"
#: libraries/config/messages.inc.php:204
msgid "Configuration storage"
msgstr ""
msgstr "Mirlec'h ar c'hefluniadurioù"
#: libraries/config/messages.inc.php:205
msgid ""
@ -3125,53 +3134,58 @@ msgid ""
"features, see [a@Documentation.html#linked-tables]phpMyAdmin configuration "
"storage[/a] in documentation"
msgstr ""
"Kefluniañ ar stokañ kefluniadurioùl phpMyAdmin evit gweredekaat perzhioù "
"ouzhpenn, gwelet [a@Documentation.html#linked-tables]phpMyAdmin "
"configuration storage[/a] en teuliadur"
#: libraries/config/messages.inc.php:206
msgid "Changes tracking"
msgstr ""
msgstr "Heuliañ ar c'hemmoù"
#: libraries/config/messages.inc.php:207
msgid ""
"Tracking of changes made in database. Requires the phpMyAdmin configuration "
"storage."
msgstr ""
"Heuliañ ar c'hemmoù graet en diaz roadennoù. Rekis eo kaout ar stokañ "
"kefluniadurioù phpMyAdmin."
#: libraries/config/messages.inc.php:208
msgid "Customize export options"
msgstr ""
msgstr "Personelaat an dibarzhioù ezporzhiañ"
#: libraries/config/messages.inc.php:210
msgid "Customize import defaults"
msgstr ""
msgstr "Personelaat an arventennoù enporzhiañ dre ziouer"
#: libraries/config/messages.inc.php:211
msgid "Customize navigation frame"
msgstr ""
msgstr "Personelaat ar framm merdeiñ"
#: libraries/config/messages.inc.php:212
msgid "Customize main frame"
msgstr ""
msgstr "Personelaat ar framm pennañ"
#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218
#: setup/frames/menu.inc.php:17
msgid "SQL queries"
msgstr ""
msgstr "Rekedoù SQL"
#: libraries/config/messages.inc.php:215
msgid "SQL Query box"
msgstr ""
msgstr "Boest rekedoù SQL"
#: libraries/config/messages.inc.php:216
msgid "Customize links shown in SQL Query boxes"
msgstr ""
msgstr "Personelaat al liammoù diskwelet er boestoù rekedoù SQL"
#: libraries/config/messages.inc.php:219
msgid "SQL queries settings"
msgstr ""
msgstr "Arventennoù ar rekedoù SQL"
#: libraries/config/messages.inc.php:220
msgid "SQL Validator"
msgstr ""
msgstr "Kadarnataer SQL"
#: libraries/config/messages.inc.php:221
msgid ""
@ -3180,66 +3194,75 @@ msgid ""
"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
msgstr ""
"Ma rit gant ar servij SQL Validator, notit mat e vez miret [strong]an "
"disklêriadurioù en un doare dizanv evit sevel "
"stadegoù[/strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL "
"Validator[/a], Copyright 2002 Upright Database Technology. All rights "
"reserved.[/em]"
#: libraries/config/messages.inc.php:222
msgid "Startup"
msgstr ""
msgstr "Pajenn deraouiñ"
#: libraries/config/messages.inc.php:223
msgid "Customize startup page"
msgstr ""
msgstr "Personelaat ar bajenn deraouiñ"
#: libraries/config/messages.inc.php:224
msgid "Tabs"
msgstr ""
msgstr "Ivinelloù"
#: libraries/config/messages.inc.php:225
msgid "Choose how you want tabs to work"
msgstr ""
msgstr "Personelaat an ivinelloù"
#: libraries/config/messages.inc.php:226
msgid "Text fields"
msgstr ""
msgstr "Maeziennoù testenn"
#: libraries/config/messages.inc.php:227
msgid "Customize text input fields"
msgstr ""
msgstr "Personelaat ar maeziennoù ebarzhiñ testenn"
#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18
msgid "Texy! text"
msgstr ""
msgstr "Testenn Texy!"
#: libraries/config/messages.inc.php:230
msgid "Warnings"
msgstr ""
msgstr "Kemennoù diwall"
#: libraries/config/messages.inc.php:231
msgid "Disable some of the warnings shown by phpMyAdmin"
msgstr ""
msgstr "Diweredekaat lod eus ar c'hemennoù diwall diskouezet gant phpMyAdmin"
#: libraries/config/messages.inc.php:232
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations"
msgstr ""
"Gweredekaat ar gwaskañ [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] evit an "
"oberiadennoù enporzhiañ hag ezporzhiañ"
#: libraries/config/messages.inc.php:233
msgid "GZip"
msgstr ""
msgstr "GZip"
#: libraries/config/messages.inc.php:234
msgid "Extra parameters for iconv"
msgstr ""
msgstr "Arventennoù ouzhpenn evit iconv"
#: libraries/config/messages.inc.php:235
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed"
msgstr ""
"Ma vez gweredekaet e kendalc'h phpMyAdmin da blediñ gant ar rekedoù "
"liesfrazennek ha pa vefe ur fazi gant unan anezho."
#: libraries/config/messages.inc.php:236
msgid "Ignore multiple statement errors"
msgstr ""
msgstr "Na ober van ouzh ar fazioù er rekedoù liesfrazennek"
#: libraries/config/messages.inc.php:237
msgid ""
@ -3247,91 +3270,96 @@ msgid ""
"This might be good way to import large files, however it can break "
"transactions."
msgstr ""
"Aotren paouez gant an enporzhiañ m'emeur war-nes tizhout ar vevenn amzer. "
"Gallout a ra sikour da enporzhiañ restroù bras, ha pa c'hallfe terriñ "
"treuzgreadoù zo."
#: libraries/config/messages.inc.php:238
msgid "Partial import: allow interrupt"
msgstr ""
msgstr "Enporzhiañ darnek : aotren paouez"
#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250
#: libraries/import/csv.php:27 libraries/import/ldi.php:40
msgid "Do not abort on INSERT error"
msgstr ""
msgstr "Arabat paouez gant an enporzhiañ pa vez ur fazi gant INSERT"
#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252
#: libraries/import/csv.php:26 libraries/import/ldi.php:39
msgid "Replace table data with file"
msgstr ""
msgstr "Erlec'hiañ roadennoù an daolenn gant re ar restr"
#: libraries/config/messages.inc.php:246
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available"
msgstr ""
"Furmad dre ziouer; bezit emskiantek ez eo ar roll-mañ diouzh al lec'hiadur "
"(diaz roadennoù, taolenn) ha n'eus nemet SQL zo hegerz dalc'hmat"
#: libraries/config/messages.inc.php:247
msgid "Format of imported file"
msgstr ""
msgstr "Furmad ar restr enporzhiañ"
#: libraries/config/messages.inc.php:251 libraries/import/ldi.php:46
msgid "Use LOCAL keyword"
msgstr ""
msgstr "Ober gant ar ger-alc'hwez LOCAL"
#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262
#: libraries/config/messages.inc.php:263
msgid "Column names in first row"
msgstr ""
msgstr "Anvioù bannoù el linenn gentañ"
#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27
msgid "Do not import empty rows"
msgstr ""
msgstr "Arabat enporzhiañ linennoù goullo"
#: libraries/config/messages.inc.php:256
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
msgstr "Enporzhiañ moneizioù ($5.00 a zeu da vezañ 5.00)"
#: libraries/config/messages.inc.php:257
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
msgstr "Enporzhiañ an dregantadoù evel degelennoù (12.00% a zeu da vezañ .12)"
#: libraries/config/messages.inc.php:258
msgid "Number of queries to skip from start"
msgstr ""
msgstr "Niver a rekedoù da lezel a-gostez adalek ar penn-kentañ"
#: libraries/config/messages.inc.php:259
msgid "Partial import: skip queries"
msgstr ""
msgstr "Enporzhiañ darnek : lezel ar rekedoù a gostez"
#: libraries/config/messages.inc.php:261
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr ""
msgstr "Arabat ober gant AUTO_INCREMENT evit an talvoudoù par da mann"
#: libraries/config/messages.inc.php:264
msgid "Initial state for sliders"
msgstr ""
msgstr "Talvoud dre ziouer evit an takadoù riklañ"
#: libraries/config/messages.inc.php:265
msgid "How many rows can be inserted at one time"
msgstr ""
msgstr "An niver a linennoù a c'haller ober ganto war un dro"
#: libraries/config/messages.inc.php:266
msgid "Number of inserted rows"
msgstr ""
msgstr "Niver a linennoù da ensoc'hañ"
#: libraries/config/messages.inc.php:267
msgid "Target for quick access icon"
msgstr ""
msgstr "Bukadenn evit an arlun moned prim"
#: libraries/config/messages.inc.php:268
msgid "Show logo in left frame"
msgstr ""
msgstr "Diskouez al logo er banell verdeiñ gleiz"
#: libraries/config/messages.inc.php:269
msgid "Display logo"
msgstr ""
msgstr "Diskouez al logo"
#: libraries/config/messages.inc.php:270
msgid "Display server choice at the top of the left frame"
msgstr ""
msgstr "Diskouez dibab ar servijerioù e laez ar banell gefluniañ"
#: libraries/config/messages.inc.php:271
msgid "Display servers selection"
@ -4709,8 +4737,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5402,8 +5430,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8053,8 +8081,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@ -648,8 +648,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -897,8 +897,8 @@ msgstr "Sadržaj baze je sačuvan u fajl %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1931,8 +1931,8 @@ msgstr "Dobrodošli na %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@ -4917,8 +4917,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5651,8 +5651,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8553,8 +8553,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela "
"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje "

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-02-23 09:57+0200\n"
"Last-Translator: Xavier Navarro <xvnavarro@gmail.com>\n"
"Language-Team: catalan <ca@li.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -626,8 +626,8 @@ msgstr "El seguiment no està actiu."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s."
@ -872,11 +872,11 @@ msgstr "El bolcat s'ha desat amb el nom d'arxiu %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Probablement has triat d'enviar un arxiu massa gran. Consulta la %"
"sdocumentació%s per trobar formes de modificar aquest límit."
"Probablement has triat d'enviar un arxiu massa gran. Consulta la "
"%sdocumentació%s per trobar formes de modificar aquest límit."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1866,8 +1866,8 @@ msgstr "Benvingut a %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"La raó més probable d'aixó és que no heu creat l'arxiu de configuració. "
"Podreu voler utilitzar %1$ssetup script%2$s per crear-ne un."
@ -4955,12 +4955,12 @@ msgstr ", @TABLE@ serà el nom de la taula"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les "
"cadenes de formateig de temps. A més, es faran aquestes transformacions: %3"
"$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
"cadenes de formateig de temps. A més, es faran aquestes transformacions: "
"%3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
"per a més detalls."
#: libraries/display_export.lib.php:268
@ -5743,8 +5743,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
"Pots trobar la documentació i més informació sobre PBXT a la pàgina "
"principal de %sPrimeBase XT%s."
@ -7471,8 +7471,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu "
"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %"
"sdocumentació%s."
"instal·lats els mòduls de PHP necessaris tal i com s'indica a la "
"%sdocumentació%s."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@ -8637,8 +8637,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de "
"permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels "
@ -10203,8 +10203,8 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store%"
"s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store"
"%s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
"igual a ell."
#: setup/lib/index.lib.php:266
@ -10232,8 +10232,8 @@ msgstr ""
"Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom "
"d'usuari i la contrasenya per connexions automàtiques, que es una opció no "
"recomanable per a servidors actius. Qualsevol que conegui la teva URL de "
"phpMyAdmin pot accedir al teu panel directament. Estableix el %"
"sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
"phpMyAdmin pot accedir al teu panel directament. Estableix el "
"%sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
#: setup/lib/index.lib.php:270
#, php-format

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"PO-Revision-Date: 2011-07-13 14:58+0200\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-17 20:07+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: czech <cs@li.org>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.5\n"
@ -627,8 +627,8 @@ msgstr "Sledování není zapnuté."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s."
@ -867,8 +867,8 @@ msgstr "Výpis byl uložen do souboru %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si "
"prosím %sdokumentaci%s, jak toto omezení obejít."
@ -1821,8 +1821,8 @@ msgstr "Vítejte v %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho "
"vytvoření by se vám mohl hodit %1$snastavovací skript%2$s."
@ -4851,8 +4851,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít "
"libovolné řetězce pro formátování data a času. Dále budou provedena "
@ -5618,8 +5618,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase "
"XT%s."
@ -6515,7 +6515,6 @@ msgid "event"
msgstr "událost"
#: libraries/rte/rte_events.lib.php:62
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new event"
msgid "You do not have the necessary privileges to create an event"
msgstr "Nemáte dostatečná práva pro vytvoření události"
@ -6693,7 +6692,6 @@ msgid "routine"
msgstr "rutina"
#: libraries/rte/rte_routines.lib.php:47
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create a routine"
msgstr "Nemáte dostatečná práva pro vytvoření rutiny"
@ -6865,10 +6863,9 @@ msgid "trigger"
msgstr "spoušť"
#: libraries/rte/rte_triggers.lib.php:43
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new trigger"
msgid "You do not have the necessary privileges to create a trigger"
msgstr "Nemáte dostatečná práva pro vytvoření spouště."
msgstr "Nemáte dostatečná práva pro vytvoření spouště"
#: libraries/rte/rte_triggers.lib.php:44
#, php-format
@ -7300,8 +7297,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %"
"spopisy transformací%s"
"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na "
"%spopisy transformací%s"
#: libraries/tbl_properties.inc.php:147
msgid "Transformation options"
@ -7352,8 +7349,8 @@ msgid ""
"No description is available for this transformation.<br />Please ask the "
"author what %s does."
msgstr ""
"Pro tuto transformaci není dostupný žádný popis.<br />Zeptejte se autora co %"
"s dělá."
"Pro tuto transformaci není dostupný žádný popis.<br />Zeptejte se autora co "
"%s dělá."
#: libraries/tbl_properties.inc.php:609 tbl_structure.php:678
#, php-format
@ -7967,8 +7964,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %"
"sNastavovacího skriptu%s."
"Více věcí můžete nastavit úpravou config.inc.php, např. použitím "
"%sNastavovacího skriptu%s."
#: prefs_manage.php:302
msgid "Save to browser's storage"
@ -8407,8 +8404,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto "
"tabulek se může lišit od oprávnění, která server právě používá, pokud byly "
@ -9926,8 +9923,8 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%"
"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie"
"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
"hodnotu než je tato."
#: setup/lib/index.lib.php:266
@ -9938,8 +9935,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %"
"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
"Pokud to považujete za nutné, použijte další možnosti zabezpečení - "
"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
"založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa "
"dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli."

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-05-19 21:21+0200\n"
"Last-Translator: <ardavies@tiscali.co.uk>\n"
"Language-Team: Welsh <cy@li.org>\n"
"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cy\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.0.5\n"
@ -630,8 +630,8 @@ msgstr "Nid yw tracio'n weithredol"
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s."
@ -872,8 +872,8 @@ msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth"
"%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn."
@ -1888,11 +1888,11 @@ msgstr "Croeso i %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r %1"
"$sgript gosod%2$s er mwyn ei chreu."
"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r "
"%1$sgript gosod%2$s er mwyn ei chreu."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@ -4880,8 +4880,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5617,8 +5617,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8397,8 +8397,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764

280
po/da.po
View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"PO-Revision-Date: 2011-07-11 15:49+0200\n"
"Last-Translator: <jacobkamphansen@gmail.com>\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-19 13:27+0200\n"
"Last-Translator: <opensource@jth.net>\n"
"Language-Team: danish <da@li.org>\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -424,7 +424,7 @@ msgstr "Skift til"
#: db_qbe.php:186
msgid "visual builder"
msgstr ""
msgstr "Visuel Konstruktør"
#: db_qbe.php:222 libraries/db_structure.lib.php:90
#: libraries/display_tbl.lib.php:937
@ -620,8 +620,8 @@ msgstr "Sporing er ikke aktiv."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr "Viewet har mindst dette antal rækker. Se venligst %sdokumentationen%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -686,7 +686,6 @@ msgstr "Vis (udskriftvenlig)"
# By "Empty", if this is an action, it should translate to "Tøm" but if it's a state it should translate to "Tom".
#: db_structure.php:503 libraries/common.lib.php:2915
#: libraries/common.lib.php:2916
#, fuzzy
msgid "Empty"
msgstr "Tøm"
@ -861,11 +860,11 @@ msgstr "Dump er blevet gemt i filen %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst %"
"sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst "
"%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
"begrænsning."
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1817,8 +1816,8 @@ msgstr "Velkommen til %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. "
"Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en."
@ -1914,7 +1913,7 @@ msgstr "Godkendelse af hardware mislykkedes"
#: libraries/auth/swekey/swekey.auth.lib.php:166
msgid "No valid authentication key plugged"
msgstr ""
msgstr "Ingen gyldig autorisations-nøgle indkoblet"
#: libraries/auth/swekey/swekey.auth.lib.php:202
msgid "Authenticating..."
@ -2007,16 +2006,16 @@ msgid "Check Privileges"
msgstr "Check Privilegier"
#: libraries/common.inc.php:588
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Failed to read configuration file"
msgstr "Kunne ikke indlæse standardkonfiguration fra: \"%1$s\""
msgstr "Kunne ikke indlæse konfigurationsfilen"
#: libraries/common.inc.php:589
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
"Dette betyder ofte at der er en eller flere syntaks-mæssige fejl i den, "
"kontrollér venligst for fejlen(e) vist herunder."
#: libraries/common.inc.php:596
#, php-format
@ -2221,10 +2220,8 @@ msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s"
#: libraries/common.lib.php:2447
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Klik for at vælge"
msgstr "Klik for at skifte"
#: libraries/common.lib.php:2718 libraries/common.lib.php:2725
#: libraries/common.lib.php:2912 libraries/config/setup.forms.php:296
@ -2811,7 +2808,6 @@ msgstr "Fortsat tabeloverskrift"
#: libraries/config/messages.inc.php:97 libraries/config/messages.inc.php:103
#: libraries/export/latex.php:54 libraries/export/latex.php:78
#, fuzzy
msgid "Label key"
msgstr "Mærke nøgle"
@ -3149,19 +3145,19 @@ msgstr ""
#: libraries/config/messages.inc.php:208
msgid "Customize export options"
msgstr ""
msgstr "Tilpas eksport-indstillinger"
#: libraries/config/messages.inc.php:210
msgid "Customize import defaults"
msgstr ""
msgstr "Tilpas import-indstillinger"
#: libraries/config/messages.inc.php:211
msgid "Customize navigation frame"
msgstr ""
msgstr "Tilpas navigations-rammen"
#: libraries/config/messages.inc.php:212
msgid "Customize main frame"
msgstr ""
msgstr "Tilpas hoved-rammen"
#: libraries/config/messages.inc.php:213 libraries/config/messages.inc.php:218
#: setup/frames/menu.inc.php:17
@ -3174,19 +3170,15 @@ msgstr "SQL Query-boks"
#: libraries/config/messages.inc.php:216
msgid "Customize links shown in SQL Query boxes"
msgstr ""
msgstr "Tilpas links vist i SQL Query-boksen"
#: libraries/config/messages.inc.php:219
#, fuzzy
#| msgid "Server variables and settings"
msgid "SQL queries settings"
msgstr "Server-variabler og indstillinger"
msgstr "Indstillinger til SQL-forespørgsler"
#: libraries/config/messages.inc.php:220
#, fuzzy
#| msgid "SQL history"
msgid "SQL Validator"
msgstr "SQL-historik"
msgstr "SQL Validator"
#: libraries/config/messages.inc.php:221
msgid ""
@ -3202,7 +3194,7 @@ msgstr "Opstart"
#: libraries/config/messages.inc.php:223
msgid "Customize startup page"
msgstr ""
msgstr "Tilpas opstart-side"
#: libraries/config/messages.inc.php:224
msgid "Tabs"
@ -3210,23 +3202,19 @@ msgstr "Faner"
#: libraries/config/messages.inc.php:225
msgid "Choose how you want tabs to work"
msgstr ""
msgstr "Vælg hvordan du ønsker at fanerne skal fungere"
#: libraries/config/messages.inc.php:226
#, fuzzy
#| msgid "Use text field"
msgid "Text fields"
msgstr "Brug tekstfelt"
msgstr "Tekstfelter"
#: libraries/config/messages.inc.php:227
#, fuzzy
#| msgid "Use text field"
msgid "Customize text input fields"
msgstr "Brug tekstfelt"
msgstr "Tilpas tekstfelter"
#: libraries/config/messages.inc.php:228 libraries/export/texytext.php:18
msgid "Texy! text"
msgstr ""
msgstr "Texy! tekst"
#: libraries/config/messages.inc.php:230
msgid "Warnings"
@ -3234,31 +3222,35 @@ msgstr "Advarsler"
#: libraries/config/messages.inc.php:231
msgid "Disable some of the warnings shown by phpMyAdmin"
msgstr ""
msgstr "Deaktivér nogle af advarslerne som phpMyAdmin viser"
#: libraries/config/messages.inc.php:232
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations"
msgstr ""
"Aktiver [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] komprimering for "
"import og eksport-funktionerne"
#: libraries/config/messages.inc.php:233
msgid "GZip"
msgstr ""
msgstr "GZip"
#: libraries/config/messages.inc.php:234
msgid "Extra parameters for iconv"
msgstr ""
msgstr "Yderligere parametre til iconv"
#: libraries/config/messages.inc.php:235
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed"
msgstr ""
"Hvis aktiveret, vil phpMyAdmin fortsætte med at udføre efterfølgende SQL-"
"forespørgsler selvom et eller flere af dem fejler"
#: libraries/config/messages.inc.php:236
msgid "Ignore multiple statement errors"
msgstr ""
msgstr "Ignorer flere efterfølgende fejl i udtryk"
#: libraries/config/messages.inc.php:237
msgid ""
@ -3266,15 +3258,18 @@ msgid ""
"This might be good way to import large files, however it can break "
"transactions."
msgstr ""
"Tillad afbrydelse af import hvis script opdager at timeout-tiden snart "
"udløber. Dette kan være godt ved store import-filer, men kan afbryde "
"transaktioner."
#: libraries/config/messages.inc.php:238
msgid "Partial import: allow interrupt"
msgstr ""
msgstr "Delvis import: Tillad afbrydelse"
#: libraries/config/messages.inc.php:243 libraries/config/messages.inc.php:250
#: libraries/import/csv.php:27 libraries/import/ldi.php:40
msgid "Do not abort on INSERT error"
msgstr ""
msgstr "Afbryd ikke ved fejl i INSERT"
#: libraries/config/messages.inc.php:244 libraries/config/messages.inc.php:252
#: libraries/import/csv.php:26 libraries/import/ldi.php:39
@ -3297,50 +3292,45 @@ msgstr "Brug LOCAL nøgleord"
#: libraries/config/messages.inc.php:254 libraries/config/messages.inc.php:262
#: libraries/config/messages.inc.php:263
#, fuzzy
#| msgid "Put fields names in the first row"
msgid "Column names in first row"
msgstr "Indsæt feltnavne i første række"
#: libraries/config/messages.inc.php:255 libraries/import/ods.php:27
msgid "Do not import empty rows"
msgstr ""
msgstr "Importer ikke tomme rækker"
#: libraries/config/messages.inc.php:256
msgid "Import currencies ($5.00 to 5.00)"
msgstr ""
msgstr "Importer valutaer ($5.00 til 5.00)"
#: libraries/config/messages.inc.php:257
msgid "Import percentages as proper decimals (12.00% to .12)"
msgstr ""
msgstr "Importer procenter med korrekte decimaler (12.00% bliver til .12)"
#: libraries/config/messages.inc.php:258
#, fuzzy
#| msgid "Number of records (queries) to skip from start"
msgid "Number of queries to skip from start"
msgstr "Antal poster (queries) der skal springes over fra start"
msgstr "Antal SQL-forespørgsler, der skal springes over fra start"
#: libraries/config/messages.inc.php:259
msgid "Partial import: skip queries"
msgstr ""
msgstr "Delvis import: Spring over forespørgsler"
# zero = null?
#: libraries/config/messages.inc.php:261
#, fuzzy
#| msgid "Add AUTO_INCREMENT value"
msgid "Do not use AUTO_INCREMENT for zero values"
msgstr "Tilføj AUTO_INCREMENT værdi"
msgstr "Brug ikke AUTO_INCREMENT for 0-værdier"
#: libraries/config/messages.inc.php:264
msgid "Initial state for sliders"
msgstr ""
msgstr "Skydernes udgangspunkt"
#: libraries/config/messages.inc.php:265
msgid "How many rows can be inserted at one time"
msgstr ""
msgstr "Hvor mange rækker kan der indsættes på een gang"
#: libraries/config/messages.inc.php:266
msgid "Number of inserted rows"
msgstr ""
msgstr "Antal indsatte rækker"
#: libraries/config/messages.inc.php:267
msgid "Target for quick access icon"
@ -3348,103 +3338,102 @@ msgstr ""
#: libraries/config/messages.inc.php:268
msgid "Show logo in left frame"
msgstr ""
msgstr "Vis logoet i venstre ramme"
#: libraries/config/messages.inc.php:269
msgid "Display logo"
msgstr ""
msgstr "Vis logo"
#: libraries/config/messages.inc.php:270
msgid "Display server choice at the top of the left frame"
msgstr ""
msgstr "Vis servervalg øverst i venstre ramme"
#: libraries/config/messages.inc.php:271
msgid "Display servers selection"
msgstr ""
msgstr "Vis servervalg"
#: libraries/config/messages.inc.php:272
#, fuzzy
#| msgid "The number of tables that are open."
msgid "Minimum number of tables to display the table filter box"
msgstr "Antallet af tabeller der er åbne."
msgstr "Mindste antal tabeller der skal vises i tabel-filterboksen"
#: libraries/config/messages.inc.php:273
msgid "String that separates databases into different tree levels"
msgstr ""
msgstr "Streng, der inddeler databaser i træ"
#: libraries/config/messages.inc.php:274
msgid "Database tree separator"
msgstr ""
msgstr "Separator til databaseinddeling"
#: libraries/config/messages.inc.php:275
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
msgstr "Kun i lille version; vis databaser i træ (afgjort vha. separator)"
#: libraries/config/messages.inc.php:276
msgid "Display databases in a tree"
msgstr ""
msgstr "Vis databaser i træ"
#: libraries/config/messages.inc.php:277
msgid "Disable this if you want to see all databases at once"
msgstr ""
msgstr "Deaktiver dette, hvis du ønsker at se alle databaser på een gang"
#: libraries/config/messages.inc.php:278
msgid "Use light version"
msgstr ""
msgstr "Brug lille version"
#: libraries/config/messages.inc.php:279
msgid "Maximum table tree depth"
msgstr ""
msgstr "Maksimal dybde på databasetræ"
#: libraries/config/messages.inc.php:280
msgid "String that separates tables into different tree levels"
msgstr ""
msgstr "Streng, der inddeler tabeller i træ"
#: libraries/config/messages.inc.php:281
msgid "Table tree separator"
msgstr ""
msgstr "Separator til tabelinddeling"
#: libraries/config/messages.inc.php:282
msgid "URL where logo in the navigation frame will point to"
msgstr ""
msgstr "URL som logoet i navigations-rammen vil pege på"
#: libraries/config/messages.inc.php:283
msgid "Logo link URL"
msgstr ""
msgstr "Logo link-URL"
#: libraries/config/messages.inc.php:284
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
"Åbn den linkede side i hovedvinduet ([kbd]main[/kbd]) eller i et nyt ([kbd]"
"new[/kbd])"
#: libraries/config/messages.inc.php:285
msgid "Logo link target"
msgstr ""
msgstr "Logo link target"
#: libraries/config/messages.inc.php:286
msgid "Highlight server under the mouse cursor"
msgstr ""
msgstr "Fremhæv server under musepil"
#: libraries/config/messages.inc.php:287
msgid "Enable highlighting"
msgstr ""
msgstr "Aktiver fremhævning"
#: libraries/config/messages.inc.php:288
msgid "Maximum number of recently used tables; set 0 to disable"
msgstr ""
"Højeste antal af tidligere anvendte tabeller; sæt til 0 for at deaktivere"
#: libraries/config/messages.inc.php:289
#, fuzzy
#| msgid "Analyze table"
msgid "Recently used tables"
msgstr "Analysér tabel"
msgstr "Tidligere anvendte tabeller"
#: libraries/config/messages.inc.php:290
msgid "Use less graphically intense tabs"
msgstr ""
msgstr "Brug faner med mindre grafik"
#: libraries/config/messages.inc.php:291
msgid "Light tabs"
@ -3455,9 +3444,10 @@ msgid ""
"Maximum number of characters shown in any non-numeric column on browse view"
msgstr ""
# karakterer gives i skolen eller er personer i film
#: libraries/config/messages.inc.php:293
msgid "Limit column characters"
msgstr ""
msgstr "Begræns antal tegn i kolonne"
#: libraries/config/messages.inc.php:294
msgid ""
@ -3465,10 +3455,14 @@ msgid ""
"only occurs for the current server. Setting this to FALSE makes it easy to "
"forget to log out from other servers when connected to multiple servers."
msgstr ""
"hvis TRUE vil logout slette cookies for alle servere; når sat til FALSE sker "
"logout kun for den aktuelle server.Sættes denne til FALSE, kan man let "
"glemme at logge ud fra andre servere, når man er forbundet til flere "
"servere."
#: libraries/config/messages.inc.php:295
msgid "Delete all cookies on logout"
msgstr ""
msgstr "Slet alle cookies, når der logges ud"
#: libraries/config/messages.inc.php:296
msgid ""
@ -3490,48 +3484,48 @@ msgstr ""
#: libraries/config/messages.inc.php:299
msgid "Login cookie store"
msgstr ""
msgstr "Fil for login cookiel"
#: libraries/config/messages.inc.php:300
msgid "Define how long (in seconds) a login cookie is valid"
msgstr ""
msgstr "Definerer hvor længe (i sekunder) en login cookie er gyldig"
#: libraries/config/messages.inc.php:301
msgid "Login cookie validity"
msgstr ""
msgstr "Gyldighed for login cookie"
#: libraries/config/messages.inc.php:302
msgid "Double size of textarea for LONGTEXT columns"
msgstr ""
msgstr "Dobbelt størrelse for tekstområde for LONGTEXT kolonner"
#: libraries/config/messages.inc.php:303
msgid "Bigger textarea for LONGTEXT"
msgstr ""
msgstr "Større tekstområde for LONGTEXT"
#: libraries/config/messages.inc.php:304
msgid "Use icons on main page"
msgstr ""
msgstr "Brug ikoner på hovedsiden"
#: libraries/config/messages.inc.php:305
msgid "Maximum number of characters used when a SQL query is displayed"
msgstr ""
msgstr "Maksimalt antal tegn brugt, når en SQL-forespørgsel vises"
#: libraries/config/messages.inc.php:306
msgid "Maximum displayed SQL length"
msgstr ""
msgstr "Maksimal vist SQL-længde"
#: libraries/config/messages.inc.php:307 libraries/config/messages.inc.php:312
#: libraries/config/messages.inc.php:339
msgid "Users cannot set a higher value"
msgstr ""
msgstr "Brugere kan ikke sætte en højere værdi"
#: libraries/config/messages.inc.php:308
msgid "Maximum number of databases displayed in left frame and database list"
msgstr ""
msgstr "Maksimalt antal databaser vist i venstre ramme og databaseliste"
#: libraries/config/messages.inc.php:309
msgid "Maximum databases"
msgstr ""
msgstr "Maksimalt antal databaser"
#: libraries/config/messages.inc.php:310
msgid ""
@ -3539,64 +3533,70 @@ msgid ""
"contains more rows, &quot;Previous&quot; and &quot;Next&quot; links will be "
"shown."
msgstr ""
"Antal rækker vist, når man kigger på et sæt resultater. Hvis resultatet "
"indeholder flere rækker, links til &quot;Forrige&quot; og &quot;Næstet&quot; "
"vil blive vist."
#: libraries/config/messages.inc.php:311
msgid "Maximum number of rows to display"
msgstr ""
msgstr "Maksimalt antal viste rækker"
#: libraries/config/messages.inc.php:313
msgid "Maximum number of tables displayed in table list"
msgstr ""
msgstr "Maksimalt antal tabeller vist i tabellisten"
#: libraries/config/messages.inc.php:314
msgid "Maximum tables"
msgstr ""
msgstr "Maksimalt antal tabeller"
#: libraries/config/messages.inc.php:315
msgid ""
"Disable the default warning that is displayed if mcrypt is missing for "
"cookie authentication"
msgstr ""
"Deaktiver standardadvarslen som vises, hvis mcrypt mangler til cookie "
"autentificering"
#: libraries/config/messages.inc.php:316
msgid "mcrypt warning"
msgstr ""
msgstr "mcrypt advarsel"
#: libraries/config/messages.inc.php:317
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
"Antallet af bytes et script må allokere, fx. [kbd]32M[/kbd] ([kbd]0[/kbd] "
"for ubegrænset)"
#: libraries/config/messages.inc.php:318
msgid "Memory limit"
msgstr ""
msgstr "Hukommelsesgrænse"
#: libraries/config/messages.inc.php:319
msgid "These are Edit, Inline edit, Copy and Delete links"
msgstr ""
msgstr "Dette er Rediger, Inline rediger, Kopier og Slet links"
#: libraries/config/messages.inc.php:320
msgid "Where to show the table row links"
msgstr ""
msgstr "Hvor links til tablerækker skal vises"
#: libraries/config/messages.inc.php:321
msgid "Use natural order for sorting table and database names"
msgstr ""
msgstr "Brug naturlig rækkefølge ved sortering af tabeller og databasenavne"
#: libraries/config/messages.inc.php:322
#, fuzzy
#| msgid "Alter table order by"
msgid "Natural order"
msgstr "Arrangér tabelrækkefølge efter"
msgstr "Naturlig rækkefølge"
#: libraries/config/messages.inc.php:323 libraries/config/messages.inc.php:333
msgid "Use only icons, only text or both"
msgstr ""
msgstr "Brug kun ikoner, kun tekst eller begge"
#: libraries/config/messages.inc.php:324
msgid "Iconic navigation bar"
msgstr ""
msgstr "Navigationsbjælke med ikoner"
#: libraries/config/messages.inc.php:325
msgid "use GZip output buffering for increased speed in HTTP transfers"
@ -3611,18 +3611,20 @@ msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
"[kbd]SMART[/kbd] - dvs faldende orden for kolonner af type TIME, DATE, "
"DATETIME og TIMESTAMP ellers stigende orden"
#: libraries/config/messages.inc.php:328
msgid "Default sorting order"
msgstr ""
msgstr "Standard sorteringsrækkefølge"
#: libraries/config/messages.inc.php:329
msgid "Use persistent connections to MySQL databases"
msgstr ""
msgstr "Brug vedvarende forbindelser til MySQL databaser"
#: libraries/config/messages.inc.php:330
msgid "Persistent connections"
msgstr ""
msgstr "Vedvarende forbindelser"
#: libraries/config/messages.inc.php:331
msgid ""
@ -3637,7 +3639,7 @@ msgstr ""
#: libraries/config/messages.inc.php:334
msgid "Iconic table operations"
msgstr ""
msgstr "Tabeloperationer med ikoner"
#: libraries/config/messages.inc.php:335
msgid "Disallow BLOB and BINARY columns from editing"
@ -3645,7 +3647,7 @@ msgstr ""
#: libraries/config/messages.inc.php:336
msgid "Protect binary columns"
msgstr ""
msgstr "Beskyt binære kolonner"
#: libraries/config/messages.inc.php:337
msgid ""
@ -3656,49 +3658,46 @@ msgstr ""
#: libraries/config/messages.inc.php:338
msgid "Permanent query history"
msgstr ""
msgstr "Permanent forespørgselshistorie"
#: libraries/config/messages.inc.php:340
msgid "How many queries are kept in history"
msgstr ""
msgstr "Hvor mange forespørgsler er gemt i historikken"
#: libraries/config/messages.inc.php:341
msgid "Query history length"
msgstr ""
msgstr "Længde på forespørgselshistorik"
#: libraries/config/messages.inc.php:342
msgid "Tab displayed when opening a new query window"
msgstr ""
msgstr "Fane vist, når et nyt forespørgselsvindue åbnes"
#: libraries/config/messages.inc.php:343
msgid "Default query window tab"
msgstr ""
msgstr "Standardfane for forespørgselsvindue"
#: libraries/config/messages.inc.php:344
msgid "Query window height (in pixels)"
msgstr ""
msgstr "Højde (i pixels) af forespørgselsvindue"
#: libraries/config/messages.inc.php:345
#, fuzzy
#| msgid "Query window"
msgid "Query window height"
msgstr "Foresp. vindue"
msgstr "Højde af forspørgselsvindue"
#: libraries/config/messages.inc.php:346
#, fuzzy
#| msgid "Query window"
msgid "Query window width (in pixels)"
msgstr "Foresp. vindue"
msgstr "Bredde (i pixels) af forspørgselsvindue"
#: libraries/config/messages.inc.php:347
#, fuzzy
#| msgid "Query window"
msgid "Query window width"
msgstr "Foresp. vindue"
msgstr "Bredde af forspørgselsvindue"
#: libraries/config/messages.inc.php:348
msgid "Select which functions will be used for character set conversion"
msgstr ""
msgstr "Vælg hvilke funktioner, der vil blive brugt for tegnsætskonvertering"
#: libraries/config/messages.inc.php:349
msgid "Recoding engine"
@ -3709,10 +3708,9 @@ msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
#: libraries/config/messages.inc.php:351
#, fuzzy
#| msgid "Rename table to"
msgid "Remember table's sorting"
msgstr "Omdøb tabel til"
msgstr "Husk tabellens sortering"
#: libraries/config/messages.inc.php:352
msgid "Repeat the headers every X cells, [kbd]0[/kbd] deactivates this feature"
@ -4802,8 +4800,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Denne værdi fortolkes via %1$sstrftime%2$s, så du kan bruge tidsformatterede "
"strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst "
@ -5566,8 +5564,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8540,14 +8538,14 @@ msgstr "Drop databaser der har samme navne som brugernes."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs "
"privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra "
"privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle "
"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%"
"s før du fortsætter."
"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne"
"%s før du fortsætter."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."

252
po/de.po
View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"PO-Revision-Date: 2011-07-12 23:07+0200\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-16 02:40+0200\n"
"Last-Translator: <mrbendig@mrbendig.com>\n"
"Language-Team: german <de@li.org>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -353,8 +353,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier%"
"s um herauszufinden warum."
"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier"
"%s um herauszufinden warum."
#: db_operations.php:600
msgid "Edit or export relational schema"
@ -622,8 +622,8 @@ msgstr "Tracking ist nicht aktiviert."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Dieser Ansicht hat mindestens diese Anzahl von Datensätzen. Bitte lesen Sie "
"die %sDokumentation%s."
@ -866,11 +866,11 @@ msgstr "Dump wurde in Datei %s gespeichert."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %"
"sDokumentation%s zur Lösung diese Problems."
"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die "
"%sDokumentation%s zur Lösung diese Problems."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1830,8 +1830,8 @@ msgstr "Willkommen bei %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Eine mögliche Ursache wäre, dass Sie noch keine Konfigurationsdatei angelegt "
"haben. Verwenden Sie in diesem Fall doch das %1$sSetup-Skript%2$s, um eine "
@ -2238,10 +2238,8 @@ msgstr ""
"Die Funktion %s wird durch einen bekannten Fehler beeinträchtigt, siehe %s"
#: libraries/common.lib.php:2447
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Zur Auswahl anklicken"
msgstr "Zum Umschalten anklicken"
#: libraries/common.lib.php:2718 libraries/common.lib.php:2725
#: libraries/common.lib.php:2912 libraries/config/setup.forms.php:296
@ -4900,8 +4898,8 @@ msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Dieser Wert wird mit %1$sstrftime%2$s geparst. Sie können also Platzhalter "
"für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen "
@ -5680,8 +5678,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase "
"XT-Website%s verfügbar."
@ -6578,8 +6576,6 @@ msgid "Generate Password"
msgstr "Passwort generieren"
#: libraries/rte/rte_events.lib.php:58
#, fuzzy
#| msgid "Add an event"
msgid "Add event"
msgstr "Ein Ereignis hinzufügen"
@ -6589,20 +6585,18 @@ msgid "Export of event %s"
msgstr "Export des Ereignisses %s"
#: libraries/rte/rte_events.lib.php:61
#, fuzzy
#| msgid "Event"
msgid "event"
msgstr "Ereignis"
#: libraries/rte/rte_events.lib.php:62
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create an event"
msgstr "Sie haben nicht genug Rechte um eine neue Routine zu erstellen"
msgstr ""
"Sie haben nicht die erforderlichen Rechte, um ein neues Ereignis zu "
"erstellen"
#: libraries/rte/rte_events.lib.php:63
#, fuzzy, php-format
#| msgid "No event with name %s found in database %s"
#, php-format
msgid "No event with name %1$s found in database %2$s"
msgstr "Es wurde kein Ereignis mit dem Namen %s in Datenbank %s gefunden"
@ -6623,10 +6617,8 @@ msgid "The following query has failed: \"%s\""
msgstr "Die folgende Abfrage ist fehlgeschlagen: \"%s\""
#: libraries/rte/rte_events.lib.php:140
#, fuzzy
#| msgid "Sorry, we failed to restore the dropped routine."
msgid "Sorry, we failed to restore the dropped event."
msgstr "Das wiederherstellen der gelöschten Routine schlug fehl."
msgstr "Das wiederherstellen des gelöschten Ereignisses schlug fehl."
#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294
#: libraries/rte/rte_triggers.lib.php:114
@ -6634,16 +6626,14 @@ msgid "The backed up query was:"
msgstr "Die gesicherte Abfrage war:"
#: libraries/rte/rte_events.lib.php:145
#, fuzzy, php-format
#| msgid "Routine %1$s has been modified."
#, php-format
msgid "Event %1$s has been modified."
msgstr "Routine %1$s wurde geändert."
msgstr "Ereignis %1$s wurde geändert."
#: libraries/rte/rte_events.lib.php:157
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
#, php-format
msgid "Event %1$s has been created."
msgstr "Die Tabelle %1$s wurde erzeugt."
msgstr "Ereignis %1$s wurde erzeugt."
#: libraries/rte/rte_events.lib.php:165 libraries/rte/rte_routines.lib.php:319
#: libraries/rte/rte_triggers.lib.php:138
@ -6653,16 +6643,12 @@ msgstr ""
"wurde:</b>"
#: libraries/rte/rte_events.lib.php:205
#, fuzzy
#| msgid "Create view"
msgid "Create event"
msgstr "Erzeuge View"
msgstr "Erzeuge Ereignis"
#: libraries/rte/rte_events.lib.php:209
#, fuzzy
#| msgid "Edit server"
msgid "Edit event"
msgstr "Server bearbeiten"
msgstr "Event bearbeiten"
#: libraries/rte/rte_events.lib.php:236 libraries/rte/rte_routines.lib.php:395
#: libraries/rte/rte_routines.lib.php:1331
@ -6677,10 +6663,8 @@ msgid "Details"
msgstr "Details"
#: libraries/rte/rte_events.lib.php:398
#, fuzzy
#| msgid "Event type"
msgid "Event name"
msgstr "Ereignistyp"
msgstr "Ereignis-Name"
#: libraries/rte/rte_events.lib.php:419 server_binlog.php:182
msgid "Event type"
@ -6692,22 +6676,16 @@ msgid "Change to %s"
msgstr "Wechseln zu %s"
#: libraries/rte/rte_events.lib.php:446
#, fuzzy
#| msgid "Execute"
msgid "Execute at"
msgstr "Ausführen"
msgstr "Ausführen um"
#: libraries/rte/rte_events.lib.php:454
#, fuzzy
#| msgid "Execute"
msgid "Execute every"
msgstr "Ausführen"
msgstr "Abfrage ausführen"
#: libraries/rte/rte_events.lib.php:473
#, fuzzy
#| msgid "Startup"
msgid "Start"
msgstr "Start"
msgstr "Anfang"
#: libraries/rte/rte_events.lib.php:489 libraries/rte/rte_routines.lib.php:972
#: libraries/rte/rte_triggers.lib.php:372
@ -6715,10 +6693,8 @@ msgid "Definition"
msgstr "Beschreibung"
#: libraries/rte/rte_events.lib.php:495
#, fuzzy
#| msgid "complete inserts"
msgid "On completion preserve"
msgstr "Vollständige 'INSERT's"
msgstr "Nach Abschluss erhalten"
#: libraries/rte/rte_events.lib.php:499 libraries/rte/rte_routines.lib.php:982
#: libraries/rte/rte_triggers.lib.php:378
@ -6729,68 +6705,52 @@ msgstr "Ersteller"
#: libraries/rte/rte_routines.lib.php:1044
#: libraries/rte/rte_triggers.lib.php:416
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
msgstr "Der Ersteller muss im \"benutzername@hostname\" Format sein"
#: libraries/rte/rte_events.lib.php:549
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide an event name"
msgstr "Sie müssen einen Routinen-Namen angeben"
msgstr "Sie müssen einen Ereignis-Namen angeben"
#: libraries/rte/rte_events.lib.php:561
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid interval value for the event."
msgstr ""
"Sie müssen einen Namen und einen Typ für jeden Routinen-Paramter angeben."
msgstr "Sie müssen einen gültigen Intervall für dieses Ereignis angeben."
#: libraries/rte/rte_events.lib.php:573
#, fuzzy
#| msgid "You must provide a routine definition."
msgid "You must provide a valid execution time for the event."
msgstr "Sie müssen die Definition der Routine angeben."
msgstr "Sie müssen eine gültige Ausführungszeit für dieses Ereignis angeben."
#: libraries/rte/rte_events.lib.php:577
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid type for the event."
msgstr ""
"Sie müssen einen Namen und einen Typ für jeden Routinen-Paramter angeben."
msgstr "Sie müssen einen gültigen Typ für dieses Event angeben."
#: libraries/rte/rte_events.lib.php:596
#, fuzzy
#| msgid "You must provide a routine definition."
msgid "You must provide an event definition."
msgstr "Sie müssen die Definition der Routine angeben."
msgstr "Sie müssen die Definition des Ereignisses angeben."
#: libraries/rte/rte_footer.lib.php:29
msgid "New"
msgstr ""
msgstr "Neu"
#: libraries/rte/rte_footer.lib.php:91
msgid "OFF"
msgstr ""
msgstr "AUS"
#: libraries/rte/rte_footer.lib.php:96
msgid "ON"
msgstr ""
msgstr "AN"
#: libraries/rte/rte_footer.lib.php:108
#, fuzzy
#| msgid "The event scheduler is enabled"
msgid "Event scheduler status"
msgstr "Der Ereignisplaner ist aktiviert"
msgstr "Ereignis-Planer-Statistiken"
#: libraries/rte/rte_list.lib.php:52
#, fuzzy
#| msgid "Return type"
msgid "Returns"
msgstr "Rückgabe-Typ"
msgstr "Rückgabe-Wert"
#: libraries/rte/rte_list.lib.php:58 libraries/rte/rte_triggers.lib.php:344
#: server_status.php:800 sql.php:943
msgid "Time"
msgstr "Dauer"
msgstr "Zeit"
#: libraries/rte/rte_list.lib.php:59 libraries/rte/rte_triggers.lib.php:358
msgid "Event"
@ -6798,33 +6758,32 @@ msgstr "Ereignis"
#: libraries/rte/rte_routines.lib.php:43
msgid "Add routine"
msgstr "Routine hinzufügen"
msgstr "Prozedur hinzufügen"
#: libraries/rte/rte_routines.lib.php:45
#, php-format
msgid "Export of routine %s"
msgstr "Exportieren der Routine %s"
msgstr "Exportieren der Prozedur %s"
#: libraries/rte/rte_routines.lib.php:46
#, fuzzy
#| msgid "Routines"
msgid "routine"
msgstr "Routinen"
msgstr "Prozedur"
#: libraries/rte/rte_routines.lib.php:47
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create a routine"
msgstr "Sie haben nicht genug Rechte um eine neue Routine zu erstellen"
msgstr ""
"Sie haben nicht die erforderlichen Rechte, um eine neue Prozedur zu "
"erstellen"
#: libraries/rte/rte_routines.lib.php:48
#, php-format
msgid "No routine with name %1$s found in database %2$s"
msgstr "Keine Routine namens %1$s in der Datenbank %2$s gefunden"
msgstr "Keine Prozedur mit dem Namen %1$s in der Datenbank %2$s gefunden"
#: libraries/rte/rte_routines.lib.php:49
msgid "There are no routines to display."
msgstr "Es sind keine Routinen zum Anzeigen vorhanden."
msgstr "Es sind keine Prozeduren zum Anzeigen vorhanden."
#: libraries/rte/rte_routines.lib.php:88
msgid ""
@ -6833,42 +6792,42 @@ msgid ""
"b> Please use the improved 'mysqli' extension to avoid any problems."
msgstr ""
"Sie verwenden die von PHP als 'veraltet' gekennzeichnete 'mysql'-"
"Erweiterung, die nicht in der Lage ist mehrere Abfrage zu verarbeiten. "
"Erweiterung, die nicht in der Lage ist, mehrere Abfragen zu verarbeiten. "
"<b>Die Ausführung von einigen gespeicherten Prozeduren könnte fehlschlagen!</"
"b> Bitte verwenden Sie die verbesserte 'mysqli'-Erweiterung um Probleme zu "
"b> Bitte verwenden Sie die neuere 'mysqli'-Erweiterung um Probleme zu "
"vermeiden."
#: libraries/rte/rte_routines.lib.php:272
#: libraries/rte/rte_routines.lib.php:1052
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Ungültiger Routinen-Typ: \"%s\""
msgstr "Ungültiger Prozeduren-Typ: \"%s\""
#: libraries/rte/rte_routines.lib.php:293
msgid "Sorry, we failed to restore the dropped routine."
msgstr "Das wiederherstellen der gelöschten Routine schlug fehl."
msgstr "Das wiederherstellen der gelöschten Prozedur schlug fehl."
#: libraries/rte/rte_routines.lib.php:298
#, php-format
msgid "Routine %1$s has been modified."
msgstr "Routine %1$s wurde geändert."
msgstr "Prozedur %1$s wurde geändert."
#: libraries/rte/rte_routines.lib.php:311
#, php-format
msgid "Routine %1$s has been created."
msgstr "Die Routine %1$s wurde erstellt."
msgstr "Die Prozedur %1$s wurde erstellt."
#: libraries/rte/rte_routines.lib.php:365
msgid "Create routine"
msgstr "Erzeuge Routine"
msgstr "Erzeuge Prozedur"
#: libraries/rte/rte_routines.lib.php:369
msgid "Edit routine"
msgstr "Bearbeite Routine"
msgstr "Bearbeite Prozedur"
#: libraries/rte/rte_routines.lib.php:880
msgid "Routine name"
msgstr "Routinen Name"
msgstr "Prozeduren-Name"
#: libraries/rte/rte_routines.lib.php:903
msgid "Parameters"
@ -6916,7 +6875,7 @@ msgstr "SQL-Daten Zugriff"
#: libraries/rte/rte_routines.lib.php:1057
msgid "You must provide a routine name"
msgstr "Sie müssen einen Routinen-Namen angeben"
msgstr "Sie müssen einen Prozeduren-Namen angeben"
#: libraries/rte/rte_routines.lib.php:1080
#, php-format
@ -6929,24 +6888,22 @@ msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
"Sie müssen Länge/Werte Angaben für Routinen Parameter des Typs ENUM, SET, "
"Sie müssen Länge/Werte Angaben für Prozeduren Parameter des Typs ENUM, SET, "
"VARCHAR und VARBINARY angeben."
#: libraries/rte/rte_routines.lib.php:1116
msgid "You must provide a name and a type for each routine parameter."
msgstr ""
"Sie müssen einen Namen und einen Typ für jeden Routinen-Paramter angeben."
"Sie müssen einen Namen und einen Typ für jeden Prozeduren-Parameter angeben."
#: libraries/rte/rte_routines.lib.php:1126
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid return type for the routine."
msgstr ""
"Sie müssen einen Namen und einen Typ für jeden Routinen-Paramter angeben."
"Sie müssen einen Namen und einen Typ für jeden Prozeduren-Parameter angeben."
#: libraries/rte/rte_routines.lib.php:1176
msgid "You must provide a routine definition."
msgstr "Sie müssen die Definition der Routine angeben."
msgstr "Sie müssen die Definition der Prozedur angeben."
#: libraries/rte/rte_routines.lib.php:1265
#, php-format
@ -6960,17 +6917,17 @@ msgstr[1] ""
#: libraries/rte/rte_routines.lib.php:1281
#, php-format
msgid "Execution results of routine %s"
msgstr "Ergebnisse der ausgeführten Routine %s"
msgstr "Ergebnisse der ausgeführten Prozedur %s"
#: libraries/rte/rte_routines.lib.php:1355
#: libraries/rte/rte_routines.lib.php:1361
msgid "Execute routine"
msgstr "Führe Routine aus"
msgstr "Führe Prozedur aus"
#: libraries/rte/rte_routines.lib.php:1412
#: libraries/rte/rte_routines.lib.php:1415
msgid "Routine parameters"
msgstr "Routinen Parameter"
msgstr "Prozeduren-Parameter"
#: libraries/rte/rte_routines.lib.php:1422 tbl_change.php:287
#: tbl_change.php:325
@ -6978,8 +6935,6 @@ msgid "Function"
msgstr "Funktion"
#: libraries/rte/rte_triggers.lib.php:39
#, fuzzy
#| msgid "Add a trigger"
msgid "Add trigger"
msgstr "Einen Trigger hinzufügen"
@ -6989,93 +6944,70 @@ msgid "Export of trigger %s"
msgstr "Export des Triggers %s"
#: libraries/rte/rte_triggers.lib.php:42
#, fuzzy
#| msgid "Triggers"
msgid "trigger"
msgstr "Trigger"
#: libraries/rte/rte_triggers.lib.php:43
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create a trigger"
msgstr "Sie haben nicht genug Rechte um eine neue Routine zu erstellen"
msgstr ""
"Sie haben nicht die notwendigen Rechte um einen neuen Trigger zu erstellen"
#: libraries/rte/rte_triggers.lib.php:44
#, fuzzy, php-format
#| msgid "No routine with name %1$s found in database %2$s"
#, php-format
msgid "No trigger with name %1$s found in database %2$s"
msgstr "Keine Routine namens %1$s in der Datenbank %2$s gefunden"
msgstr "Keine Trigger namens %1$s in der Datenbank %2$s gefunden"
#: libraries/rte/rte_triggers.lib.php:45
msgid "There are no triggers to display."
msgstr "Es sind keine Trigger zum Anzeigen vorhanden."
#: libraries/rte/rte_triggers.lib.php:113
#, fuzzy
#| msgid "Sorry, we failed to restore the dropped routine."
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Das wiederherstellen der gelöschten Routine schlug fehl."
msgstr "Das Wiederherstellen der gelöschten Trigger schlug fehl."
#: libraries/rte/rte_triggers.lib.php:118
#, fuzzy, php-format
#| msgid "Routine %1$s has been modified."
#, php-format
msgid "Trigger %1$s has been modified."
msgstr "Routine %1$s wurde geändert."
msgstr "Trigger %1$s wurde geändert."
#: libraries/rte/rte_triggers.lib.php:130
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
#, php-format
msgid "Trigger %1$s has been created."
msgstr "Die Tabelle %1$s wurde erzeugt."
msgstr "Trigger %1$s wurde erzeugt."
#: libraries/rte/rte_triggers.lib.php:181
#, fuzzy
#| msgid "Create view"
msgid "Create trigger"
msgstr "Erzeuge View"
msgstr "Erzeuge Trigger"
#: libraries/rte/rte_triggers.lib.php:185
#, fuzzy
#| msgid "Add a trigger"
msgid "Edit trigger"
msgstr "Einen Trigger hinzufügen"
msgstr "Einen Trigger bearbeiten"
#: libraries/rte/rte_triggers.lib.php:325
#, fuzzy
#| msgid "Triggers"
msgid "Trigger name"
msgstr "Trigger"
msgstr "Trigger-Name"
#: libraries/rte/rte_triggers.lib.php:423
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide a trigger name"
msgstr "Sie müssen einen Routinen-Namen angeben"
msgstr "Sie müssen einen Trigger-Namen angeben"
#: libraries/rte/rte_triggers.lib.php:428
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide a valid timing for the trigger"
msgstr "Sie müssen einen Routinen-Namen angeben"
msgstr "Sie müssen einen Trigger-Namen angeben"
#: libraries/rte/rte_triggers.lib.php:433
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid event for the trigger"
msgstr ""
"Sie müssen einen Namen und einen Typ für jeden Routinen-Paramter angeben."
"Sie müssen einen Namen und einen Typ für jeden Trugger-Parameter angeben."
#: libraries/rte/rte_triggers.lib.php:439
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide a valid table name"
msgstr "Sie müssen einen Routinen-Namen angeben"
msgstr "Sie müssen einen gültigen Tabellen-Namen angeben"
#: libraries/rte/rte_triggers.lib.php:445
#, fuzzy
#| msgid "You must provide a routine definition."
msgid "You must provide a trigger definition."
msgstr "Sie müssen die Definition der Routine angeben."
msgstr "Sie müssen die Definition des Triggers angeben."
#: libraries/schema/Dia_Relation_Schema.class.php:222
#: libraries/schema/Eps_Relation_Schema.class.php:395
@ -8593,8 +8525,8 @@ msgstr "Die gleichnamigen Datenbanken löschen."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden MySQL-"
"Tabellen aus. Der Inhalt dieser Tabellen kann sich von den Benutzerprofilen, "
@ -10199,8 +10131,8 @@ msgstr ""
"Sie haben die [kbd]config[/kbd] Authentifizierung gewählt und einen "
"Benutzernamen und Passwort für Auto-Login eingegeben, was für Server im "
"Internet nicht wünschenswert ist. Jeder, der Ihre phpMyAdmin-URL kennt oder "
"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den %"
"sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]."
"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den "
"%sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]."
#: setup/lib/index.lib.php:270
#, php-format

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-13 09:17+0200\n"
"Last-Translator: Panagiotis Papazoglou <papaz_p@yahoo.com>\n"
"Language-Team: greek <el@li.org>\n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -622,11 +622,11 @@ msgstr "Η παρακολούθηση δεν είναι ενεργοποιημέ
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %"
"sτεκμηρίωση%s."
"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην "
"%sτεκμηρίωση%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@ -864,11 +864,11 @@ msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %"
"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην "
"%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1823,8 +1823,8 @@ msgstr "Καλωσήρθατε στο %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Πιθανή αιτία για αυτό είναι η μη δημιουργία αρχείου προσαρμογής. Ίσως θέλετε "
"να χρησιμοποιήσετε τον %1$sκώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα."
@ -4916,8 +4916,8 @@ msgstr ", το @TABLE@ θα γίνει το όνομα του πίνακα"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι "
"μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν "
@ -5530,8 +5530,8 @@ msgid ""
"Documentation and further information about PBMS can be found on %sThe "
"PrimeBase Media Streaming home page%s."
msgstr ""
"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην %"
"sΙστοσελίδα του PrimeBase Media Streaming%s."
"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην "
"%sΙστοσελίδα του PrimeBase Media Streaming%s."
#: libraries/engines/pbms.lib.php:96 libraries/engines/pbxt.lib.php:127
msgid "Related Links"
@ -5700,11 +5700,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην %"
"sΙστοσελίδα του PrimeBase XT%s."
"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην "
"%sΙστοσελίδα του PrimeBase XT%s."
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@ -7864,8 +7864,8 @@ msgid ""
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά "
"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε %"
"sεδώ%s."
"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε "
"%sεδώ%s."
#: main.php:314
msgid ""
@ -8604,8 +8604,8 @@ msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδ
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από "
"τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί "
@ -10182,8 +10182,8 @@ msgid ""
"(currently %d)."
msgstr ""
"Αν η %sεγκυρότητα Σύνδεσης cookie%s είναι μεγαλύτερη από 1440 δευτερόλεπτα "
"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime%"
"s είναι μικρότερο από την τιμή της (τρέχουσα: %d)."
"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime"
"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)."
#: setup/lib/index.lib.php:262
#, php-format

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"PO-Revision-Date: 2011-07-09 16:40+0200\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-16 14:33+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: english-gb <en_GB@li.org>\n"
"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -622,11 +622,11 @@ msgstr "Tracking is not active."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@ -862,11 +862,11 @@ msgstr "Dump has been saved to file %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1813,11 +1813,11 @@ msgstr "Welcome to %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@ -2212,10 +2212,8 @@ msgid "The %s functionality is affected by a known bug, see %s"
msgstr "The %s functionality is affected by a known bug, see %s"
#: libraries/common.lib.php:2447
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Click to select"
msgstr "Click to toggle"
#: libraries/common.lib.php:2718 libraries/common.lib.php:2725
#: libraries/common.lib.php:2912 libraries/config/setup.forms.php:296
@ -4840,12 +4838,12 @@ msgstr ", @TABLE@ will become the table name"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
#: libraries/display_export.lib.php:268
msgid "use this for future exports"
@ -5607,11 +5605,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@ -6492,10 +6490,8 @@ msgid "Generate Password"
msgstr "Generate Password"
#: libraries/rte/rte_events.lib.php:58
#, fuzzy
#| msgid "Add an event"
msgid "Add event"
msgstr "Add an event"
msgstr "Add event"
#: libraries/rte/rte_events.lib.php:60
#, php-format
@ -6503,22 +6499,18 @@ msgid "Export of event %s"
msgstr "Export of event %s"
#: libraries/rte/rte_events.lib.php:61
#, fuzzy
#| msgid "Event"
msgid "event"
msgstr "Event"
msgstr "event"
#: libraries/rte/rte_events.lib.php:62
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create an event"
msgstr "You do not have the necessary privileges to create a new routine"
msgstr "You do not have the necessary privileges to create an event"
#: libraries/rte/rte_events.lib.php:63
#, fuzzy, php-format
#| msgid "No event with name %s found in database %s"
#, php-format
msgid "No event with name %1$s found in database %2$s"
msgstr "No event with name %s found in database %s"
msgstr "No event with name %1$s found in database %2$s"
#: libraries/rte/rte_events.lib.php:64
msgid "There are no events to display."
@ -6537,10 +6529,8 @@ msgid "The following query has failed: \"%s\""
msgstr "The following query has failed: \"%s\""
#: libraries/rte/rte_events.lib.php:140
#, fuzzy
#| msgid "Sorry, we failed to restore the dropped routine."
msgid "Sorry, we failed to restore the dropped event."
msgstr "Sorry, we failed to restore the dropped routine."
msgstr "Sorry, we failed to restore the dropped event."
#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294
#: libraries/rte/rte_triggers.lib.php:114
@ -6548,16 +6538,14 @@ msgid "The backed up query was:"
msgstr "The backed up query was:"
#: libraries/rte/rte_events.lib.php:145
#, fuzzy, php-format
#| msgid "Routine %1$s has been modified."
#, php-format
msgid "Event %1$s has been modified."
msgstr "Routine %1$s has been modified."
msgstr "Event %1$s has been modified."
#: libraries/rte/rte_events.lib.php:157
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
#, php-format
msgid "Event %1$s has been created."
msgstr "Table %1$s has been created."
msgstr "Event %1$s has been created."
#: libraries/rte/rte_events.lib.php:165 libraries/rte/rte_routines.lib.php:319
#: libraries/rte/rte_triggers.lib.php:138
@ -6565,16 +6553,12 @@ msgid "<b>One or more errors have occured while processing your request:</b>"
msgstr "<b>One or more errors have occurred while processing your request:</b>"
#: libraries/rte/rte_events.lib.php:205
#, fuzzy
#| msgid "Create view"
msgid "Create event"
msgstr "Create view"
msgstr "Create event"
#: libraries/rte/rte_events.lib.php:209
#, fuzzy
#| msgid "Edit server"
msgid "Edit event"
msgstr "Edit server"
msgstr "Edit event"
#: libraries/rte/rte_events.lib.php:236 libraries/rte/rte_routines.lib.php:395
#: libraries/rte/rte_routines.lib.php:1331
@ -6589,10 +6573,8 @@ msgid "Details"
msgstr "Details"
#: libraries/rte/rte_events.lib.php:398
#, fuzzy
#| msgid "Event type"
msgid "Event name"
msgstr "Event type"
msgstr "Event name"
#: libraries/rte/rte_events.lib.php:419 server_binlog.php:182
msgid "Event type"
@ -6604,22 +6586,16 @@ msgid "Change to %s"
msgstr "Change to %s"
#: libraries/rte/rte_events.lib.php:446
#, fuzzy
#| msgid "Execute"
msgid "Execute at"
msgstr "Execute"
msgstr "Execute at"
#: libraries/rte/rte_events.lib.php:454
#, fuzzy
#| msgid "Execute"
msgid "Execute every"
msgstr "Execute"
msgstr "Execute every"
#: libraries/rte/rte_events.lib.php:473
#, fuzzy
#| msgid "Startup"
msgid "Start"
msgstr "Startup"
msgstr "Start"
#: libraries/rte/rte_events.lib.php:489 libraries/rte/rte_routines.lib.php:972
#: libraries/rte/rte_triggers.lib.php:372
@ -6627,10 +6603,8 @@ msgid "Definition"
msgstr "Definition"
#: libraries/rte/rte_events.lib.php:495
#, fuzzy
#| msgid "complete inserts"
msgid "On completion preserve"
msgstr "complete inserts"
msgstr "On completion preserve"
#: libraries/rte/rte_events.lib.php:499 libraries/rte/rte_routines.lib.php:982
#: libraries/rte/rte_triggers.lib.php:378
@ -6641,61 +6615,47 @@ msgstr "Definer"
#: libraries/rte/rte_routines.lib.php:1044
#: libraries/rte/rte_triggers.lib.php:416
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
msgstr "The definer must be in the \"username@hostname\" format"
#: libraries/rte/rte_events.lib.php:549
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide an event name"
msgstr "You must provide a routine name"
msgstr "You must provide an event name"
#: libraries/rte/rte_events.lib.php:561
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid interval value for the event."
msgstr "You must provide a name and a type for each routine parameter."
msgstr "You must provide a valid interval value for the event."
#: libraries/rte/rte_events.lib.php:573
#, fuzzy
#| msgid "You must provide a routine definition."
msgid "You must provide a valid execution time for the event."
msgstr "You must provide a routine definition."
msgstr "You must provide a valid execution time for the event."
#: libraries/rte/rte_events.lib.php:577
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid type for the event."
msgstr "You must provide a name and a type for each routine parameter."
msgstr "You must provide a valid type for the event."
#: libraries/rte/rte_events.lib.php:596
#, fuzzy
#| msgid "You must provide a routine definition."
msgid "You must provide an event definition."
msgstr "You must provide a routine definition."
msgstr "You must provide an event definition."
#: libraries/rte/rte_footer.lib.php:29
msgid "New"
msgstr ""
msgstr "New"
#: libraries/rte/rte_footer.lib.php:91
msgid "OFF"
msgstr ""
msgstr "OFF"
#: libraries/rte/rte_footer.lib.php:96
msgid "ON"
msgstr ""
msgstr "ON"
#: libraries/rte/rte_footer.lib.php:108
#, fuzzy
#| msgid "The event scheduler is enabled"
msgid "Event scheduler status"
msgstr "The event scheduler is enabled"
msgstr "Event scheduler status"
#: libraries/rte/rte_list.lib.php:52
#, fuzzy
#| msgid "Return type"
msgid "Returns"
msgstr "Return type"
msgstr "Returns"
#: libraries/rte/rte_list.lib.php:58 libraries/rte/rte_triggers.lib.php:344
#: server_status.php:800 sql.php:943
@ -6716,16 +6676,13 @@ msgid "Export of routine %s"
msgstr "Export of routine %s"
#: libraries/rte/rte_routines.lib.php:46
#, fuzzy
#| msgid "Routines"
msgid "routine"
msgstr "Routines"
msgstr "routine"
#: libraries/rte/rte_routines.lib.php:47
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create a routine"
msgstr "You do not have the necessary privileges to create a new routine"
msgstr "You do not have the necessary privileges to create a routine"
#: libraries/rte/rte_routines.lib.php:48
#, php-format
@ -6845,10 +6802,8 @@ msgid "You must provide a name and a type for each routine parameter."
msgstr "You must provide a name and a type for each routine parameter."
#: libraries/rte/rte_routines.lib.php:1126
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid return type for the routine."
msgstr "You must provide a name and a type for each routine parameter."
msgstr "You must provide a valid return type for the routine.."
#: libraries/rte/rte_routines.lib.php:1176
msgid "You must provide a routine definition."
@ -6882,10 +6837,8 @@ msgid "Function"
msgstr "Function"
#: libraries/rte/rte_triggers.lib.php:39
#, fuzzy
#| msgid "Add a trigger"
msgid "Add trigger"
msgstr "Add a trigger"
msgstr "Add trigger"
#: libraries/rte/rte_triggers.lib.php:41
#, php-format
@ -6893,92 +6846,68 @@ msgid "Export of trigger %s"
msgstr "Export of trigger %s"
#: libraries/rte/rte_triggers.lib.php:42
#, fuzzy
#| msgid "Triggers"
msgid "trigger"
msgstr "Triggers"
msgstr "trigger"
#: libraries/rte/rte_triggers.lib.php:43
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create a trigger"
msgstr "You do not have the necessary privileges to create a new routine"
msgstr "You do not have the necessary privileges to create a trigger"
#: libraries/rte/rte_triggers.lib.php:44
#, fuzzy, php-format
#| msgid "No routine with name %1$s found in database %2$s"
#, php-format
msgid "No trigger with name %1$s found in database %2$s"
msgstr "No routine with name %1$s found in database %2$s"
msgstr "No trigger with name %1$s found in database %2$s"
#: libraries/rte/rte_triggers.lib.php:45
msgid "There are no triggers to display."
msgstr "There are no triggers to display."
#: libraries/rte/rte_triggers.lib.php:113
#, fuzzy
#| msgid "Sorry, we failed to restore the dropped routine."
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Sorry, we failed to restore the dropped routine."
msgstr "Sorry, we failed to restore the dropped trigger."
#: libraries/rte/rte_triggers.lib.php:118
#, fuzzy, php-format
#| msgid "Routine %1$s has been modified."
#, php-format
msgid "Trigger %1$s has been modified."
msgstr "Routine %1$s has been modified."
msgstr "Trigger %1$s has been modified."
#: libraries/rte/rte_triggers.lib.php:130
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
#, php-format
msgid "Trigger %1$s has been created."
msgstr "Table %1$s has been created."
msgstr "Trigger %1$s has been created."
#: libraries/rte/rte_triggers.lib.php:181
#, fuzzy
#| msgid "Create view"
msgid "Create trigger"
msgstr "Create view"
msgstr "Create trigger"
#: libraries/rte/rte_triggers.lib.php:185
#, fuzzy
#| msgid "Add a trigger"
msgid "Edit trigger"
msgstr "Add a trigger"
msgstr "Edit trigger"
#: libraries/rte/rte_triggers.lib.php:325
#, fuzzy
#| msgid "Triggers"
msgid "Trigger name"
msgstr "Triggers"
msgstr "Trigger name"
#: libraries/rte/rte_triggers.lib.php:423
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide a trigger name"
msgstr "You must provide a routine name"
msgstr "You must provide a trigger name"
#: libraries/rte/rte_triggers.lib.php:428
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide a valid timing for the trigger"
msgstr "You must provide a routine name"
msgstr "You must provide a valid timing for the trigger"
#: libraries/rte/rte_triggers.lib.php:433
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid event for the trigger"
msgstr "You must provide a name and a type for each routine parameter."
msgstr "You must provide a valid event for the trigger"
#: libraries/rte/rte_triggers.lib.php:439
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide a valid table name"
msgstr "You must provide a routine name"
msgstr "You must provide a valid table name"
#: libraries/rte/rte_triggers.lib.php:445
#, fuzzy
#| msgid "You must provide a routine definition."
msgid "You must provide a trigger definition."
msgstr "You must provide a routine definition."
msgstr "You must provide a trigger definition."
#: libraries/schema/Dia_Relation_Schema.class.php:222
#: libraries/schema/Eps_Relation_Schema.class.php:395
@ -8464,13 +8393,13 @@ msgstr "Drop the databases that have the same names as the users."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."

212
po/es.po
View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"PO-Revision-Date: 2011-07-07 16:22+0200\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-15 14:09+0200\n"
"Last-Translator: Matías Bellone <matiasbellone@gmail.com>\n"
"Language-Team: spanish <es@li.org>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -626,11 +626,11 @@ msgstr "El seguimiento no está activo."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Esta vista tiene al menos este número de filas. Por favor refiérase a la %"
"sdocumentation%s."
"Esta vista tiene al menos este número de filas. Por favor refiérase a la "
"%sdocumentation%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@ -868,8 +868,8 @@ msgstr "El volcado ha sido guardado al archivo %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Usted probablemente intentó cargar un archivo demasiado grande. Por favor, "
"refiérase a %sla documentation%s para hallar modos de superar esta "
@ -1830,8 +1830,8 @@ msgstr "Bienvenido a %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"La razón más probable es que usted no haya creado un archivo de "
"configuración. Utilice el %1$sscript de configuración%2$s para crear uno."
@ -2237,10 +2237,8 @@ msgid "The %s functionality is affected by a known bug, see %s"
msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s"
#: libraries/common.lib.php:2447
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Clic para seleccionar"
msgstr "Pulse para conmutar"
#: libraries/common.lib.php:2718 libraries/common.lib.php:2725
#: libraries/common.lib.php:2912 libraries/config/setup.forms.php:296
@ -4938,8 +4936,8 @@ msgstr ", @TABLE@ se convertirá en el nombre de la tabla"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Este valor es interpretado usando %1$sstrftime%2$s por lo que se pueden usar "
"cadenas para formatear el tiempo. Además sucederán las siguientes "
@ -5732,8 +5730,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
"Se puede encontrar documentación y más información sobre PBXT en la %spágina "
"inicial de PrimeBase XT%s."
@ -6632,10 +6630,8 @@ msgid "Generate Password"
msgstr "Generar la contraseña"
#: libraries/rte/rte_events.lib.php:58
#, fuzzy
#| msgid "Add an event"
msgid "Add event"
msgstr "Añadir un evento"
msgstr "Añadir evento"
#: libraries/rte/rte_events.lib.php:60
#, php-format
@ -6643,22 +6639,18 @@ msgid "Export of event %s"
msgstr "Exportar evento %s"
#: libraries/rte/rte_events.lib.php:61
#, fuzzy
#| msgid "Event"
msgid "event"
msgstr "Evento"
msgstr "evento"
#: libraries/rte/rte_events.lib.php:62
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create an event"
msgstr "No posee los privilegios necesarios para crear una nueva rutina"
msgstr "No posee los privilegios necesarios para crear un evento"
#: libraries/rte/rte_events.lib.php:63
#, fuzzy, php-format
#| msgid "No event with name %s found in database %s"
#, php-format
msgid "No event with name %1$s found in database %2$s"
msgstr "No se encontró evento con nombre %s en la base de datos %s"
msgstr "No se encontró evento con nombre %1$s en la base de datos %2$s"
#: libraries/rte/rte_events.lib.php:64
msgid "There are no events to display."
@ -6677,10 +6669,8 @@ msgid "The following query has failed: \"%s\""
msgstr "Falló la siguiente consulta: \"%s\""
#: libraries/rte/rte_events.lib.php:140
#, fuzzy
#| msgid "Sorry, we failed to restore the dropped routine."
msgid "Sorry, we failed to restore the dropped event."
msgstr "Pedimos disculpas por no haber podido recuperar la rutina eliminada."
msgstr "Pedimos disculpas por no haber podido recuperar el evento eliminado."
#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294
#: libraries/rte/rte_triggers.lib.php:114
@ -6688,16 +6678,14 @@ msgid "The backed up query was:"
msgstr "La consulta respaldada era:"
#: libraries/rte/rte_events.lib.php:145
#, fuzzy, php-format
#| msgid "Routine %1$s has been modified."
#, php-format
msgid "Event %1$s has been modified."
msgstr "Se modificó la rutina %1$s."
msgstr "Se modificó el evento %1$s."
#: libraries/rte/rte_events.lib.php:157
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
#, php-format
msgid "Event %1$s has been created."
msgstr "La Tabla %1$s se creó."
msgstr "Se creó el evento %1$s."
#: libraries/rte/rte_events.lib.php:165 libraries/rte/rte_routines.lib.php:319
#: libraries/rte/rte_triggers.lib.php:138
@ -6705,16 +6693,12 @@ msgid "<b>One or more errors have occured while processing your request:</b>"
msgstr "<b>Ocurrieron uno o más errores al procesar el pedido:</n>"
#: libraries/rte/rte_events.lib.php:205
#, fuzzy
#| msgid "Create view"
msgid "Create event"
msgstr "Crear vista"
msgstr "Crear evento"
#: libraries/rte/rte_events.lib.php:209
#, fuzzy
#| msgid "Edit server"
msgid "Edit event"
msgstr "Editar los parámetros del servidor"
msgstr "Editar evento"
#: libraries/rte/rte_events.lib.php:236 libraries/rte/rte_routines.lib.php:395
#: libraries/rte/rte_routines.lib.php:1331
@ -6729,10 +6713,8 @@ msgid "Details"
msgstr "Detalles"
#: libraries/rte/rte_events.lib.php:398
#, fuzzy
#| msgid "Event type"
msgid "Event name"
msgstr "Tipo de evento"
msgstr "Nombre del evento"
#: libraries/rte/rte_events.lib.php:419 server_binlog.php:182
msgid "Event type"
@ -6744,22 +6726,16 @@ msgid "Change to %s"
msgstr "Cambiar a %s"
#: libraries/rte/rte_events.lib.php:446
#, fuzzy
#| msgid "Execute"
msgid "Execute at"
msgstr "Ejecutar"
msgstr "Ejecutar en"
#: libraries/rte/rte_events.lib.php:454
#, fuzzy
#| msgid "Execute"
msgid "Execute every"
msgstr "Ejecutar"
msgstr "Ejecutar cada"
#: libraries/rte/rte_events.lib.php:473
#, fuzzy
#| msgid "Startup"
msgid "Start"
msgstr "Inicio"
msgstr "Iniciar"
#: libraries/rte/rte_events.lib.php:489 libraries/rte/rte_routines.lib.php:972
#: libraries/rte/rte_triggers.lib.php:372
@ -6767,10 +6743,8 @@ msgid "Definition"
msgstr "Definición"
#: libraries/rte/rte_events.lib.php:495
#, fuzzy
#| msgid "complete inserts"
msgid "On completion preserve"
msgstr "INSERTs completos"
msgstr "Preservar al completar"
#: libraries/rte/rte_events.lib.php:499 libraries/rte/rte_routines.lib.php:982
#: libraries/rte/rte_triggers.lib.php:378
@ -6781,61 +6755,47 @@ msgstr "Definidor"
#: libraries/rte/rte_routines.lib.php:1044
#: libraries/rte/rte_triggers.lib.php:416
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
msgstr "El definidor tiene que ser en el formato \"usuario@sistema\""
#: libraries/rte/rte_events.lib.php:549
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide an event name"
msgstr "Debe proveer un nombre de rutina"
msgstr "Debe proveer un nombre de evento"
#: libraries/rte/rte_events.lib.php:561
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid interval value for the event."
msgstr "Debe proveer en nombre y tipo para cada parámetro de rutina."
msgstr "Debe proveer un valor de intervalo válido para el evento."
#: libraries/rte/rte_events.lib.php:573
#, fuzzy
#| msgid "You must provide a routine definition."
msgid "You must provide a valid execution time for the event."
msgstr "Debe proveer una definición de rutina."
msgstr "Debe proveer un tiempo de ejecución válido para el evento."
#: libraries/rte/rte_events.lib.php:577
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid type for the event."
msgstr "Debe proveer en nombre y tipo para cada parámetro de rutina."
msgstr "Debe proveer un tipo válido para el evento."
#: libraries/rte/rte_events.lib.php:596
#, fuzzy
#| msgid "You must provide a routine definition."
msgid "You must provide an event definition."
msgstr "Debe proveer una definición de rutina."
msgstr "Debe proveer una definición de evento."
#: libraries/rte/rte_footer.lib.php:29
msgid "New"
msgstr ""
msgstr "Nuevo"
#: libraries/rte/rte_footer.lib.php:91
msgid "OFF"
msgstr ""
msgstr "Apagado"
#: libraries/rte/rte_footer.lib.php:96
msgid "ON"
msgstr ""
msgstr "Encendido"
#: libraries/rte/rte_footer.lib.php:108
#, fuzzy
#| msgid "The event scheduler is enabled"
msgid "Event scheduler status"
msgstr "El planificador de eventos está activado"
msgstr "Estado del planificador de eventos"
#: libraries/rte/rte_list.lib.php:52
#, fuzzy
#| msgid "Return type"
msgid "Returns"
msgstr "Retornar el tipo"
msgstr "Retorna"
#: libraries/rte/rte_list.lib.php:58 libraries/rte/rte_triggers.lib.php:344
#: server_status.php:800 sql.php:943
@ -6856,16 +6816,13 @@ msgid "Export of routine %s"
msgstr "Exportar la rutina %s"
#: libraries/rte/rte_routines.lib.php:46
#, fuzzy
#| msgid "Routines"
msgid "routine"
msgstr "Rutinas"
msgstr "rutina"
#: libraries/rte/rte_routines.lib.php:47
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create a routine"
msgstr "No posee los privilegios necesarios para crear una nueva rutina"
msgstr "No posee los privilegios necesarios para crear una rutina"
#: libraries/rte/rte_routines.lib.php:48
#, php-format
@ -6983,13 +6940,11 @@ msgstr ""
#: libraries/rte/rte_routines.lib.php:1116
msgid "You must provide a name and a type for each routine parameter."
msgstr "Debe proveer en nombre y tipo para cada parámetro de rutina."
msgstr "Debe proveer un nombre y tipo para cada parámetro de rutina."
#: libraries/rte/rte_routines.lib.php:1126
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid return type for the routine."
msgstr "Debe proveer en nombre y tipo para cada parámetro de rutina."
msgstr "Debe proveer un tipo de retorno válido para la rutina."
#: libraries/rte/rte_routines.lib.php:1176
msgid "You must provide a routine definition."
@ -7023,10 +6978,8 @@ msgid "Function"
msgstr "Función"
#: libraries/rte/rte_triggers.lib.php:39
#, fuzzy
#| msgid "Add a trigger"
msgid "Add trigger"
msgstr "Agregar un disparador"
msgstr "Agregar disparador"
#: libraries/rte/rte_triggers.lib.php:41
#, php-format
@ -7034,92 +6987,69 @@ msgid "Export of trigger %s"
msgstr "Exportar disparador %s"
#: libraries/rte/rte_triggers.lib.php:42
#, fuzzy
#| msgid "Triggers"
msgid "trigger"
msgstr "Disparadores"
msgstr "disparador"
#: libraries/rte/rte_triggers.lib.php:43
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create a trigger"
msgstr "No posee los privilegios necesarios para crear una nueva rutina"
msgstr "No posee los privilegios necesarios para crear un disparador"
#: libraries/rte/rte_triggers.lib.php:44
#, fuzzy, php-format
#| msgid "No routine with name %1$s found in database %2$s"
#, php-format
msgid "No trigger with name %1$s found in database %2$s"
msgstr "No se encontró rutina con nombre %1$s en la base de datos %2$s"
msgstr "No se encontró disparador con nombre %1$s en la base de datos %2$s"
#: libraries/rte/rte_triggers.lib.php:45
msgid "There are no triggers to display."
msgstr "No hay disparadores para mostrar."
#: libraries/rte/rte_triggers.lib.php:113
#, fuzzy
#| msgid "Sorry, we failed to restore the dropped routine."
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Pedimos disculpas por no haber podido recuperar la rutina eliminada."
msgstr ""
"Pedimos disculpas por no haber podido recuperar el disparador eliminado."
#: libraries/rte/rte_triggers.lib.php:118
#, fuzzy, php-format
#| msgid "Routine %1$s has been modified."
#, php-format
msgid "Trigger %1$s has been modified."
msgstr "Se modificó la rutina %1$s."
msgstr "Se modificó el disparador %1$s."
#: libraries/rte/rte_triggers.lib.php:130
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
#, php-format
msgid "Trigger %1$s has been created."
msgstr "La Tabla %1$s se creó."
msgstr "Disparador %1$s creado."
#: libraries/rte/rte_triggers.lib.php:181
#, fuzzy
#| msgid "Create view"
msgid "Create trigger"
msgstr "Crear vista"
msgstr "Crear disparador"
#: libraries/rte/rte_triggers.lib.php:185
#, fuzzy
#| msgid "Add a trigger"
msgid "Edit trigger"
msgstr "Agregar un disparador"
msgstr "Editar disparador"
#: libraries/rte/rte_triggers.lib.php:325
#, fuzzy
#| msgid "Triggers"
msgid "Trigger name"
msgstr "Disparadores"
msgstr "Nombre del disparador"
#: libraries/rte/rte_triggers.lib.php:423
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide a trigger name"
msgstr "Debe proveer un nombre de rutina"
msgstr "Debe proveer un nombre de disparador"
#: libraries/rte/rte_triggers.lib.php:428
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide a valid timing for the trigger"
msgstr "Debe proveer un nombre de rutina"
msgstr "Debe proveer una sincronización válida para el disparador"
#: libraries/rte/rte_triggers.lib.php:433
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid event for the trigger"
msgstr "Debe proveer en nombre y tipo para cada parámetro de rutina."
msgstr "Debe proveer un evento válido para el disparador"
#: libraries/rte/rte_triggers.lib.php:439
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide a valid table name"
msgstr "Debe proveer un nombre de rutina"
msgstr "Debe proveer un nombre de tabla válido"
#: libraries/rte/rte_triggers.lib.php:445
#, fuzzy
#| msgid "You must provide a routine definition."
msgid "You must provide a trigger definition."
msgstr "Debe proveer una definición de rutina."
msgstr "Debe proveer una definición del disparador."
#: libraries/schema/Dia_Relation_Schema.class.php:222
#: libraries/schema/Eps_Relation_Schema.class.php:395
@ -7898,8 +7828,8 @@ msgid ""
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"El almacenamiento de configuración phpMyAdmin no está completamente "
"configurado, algunas funcionalidades extendidas fueron deshabilitadas. %"
"sPulsa aquí para averiguar por qué%s."
"configurado, algunas funcionalidades extendidas fueron deshabilitadas. "
"%sPulsa aquí para averiguar por qué%s."
#: main.php:314
msgid ""
@ -8645,8 +8575,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de "
"las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir "

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian <et@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@ -645,8 +645,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -897,8 +897,8 @@ msgstr "Väljavõte salvestati faili %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Te kindlasti proovisite laadida liiga suurt faili. Palun uuri "
"dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks."
@ -1959,8 +1959,8 @@ msgstr "Tere tulemast %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Arvatav põhjus on te pole veel loonud seadete faili. Soovitavalt võid "
"kasutada %1$ssetup script%2$s et seadistada."
@ -4994,8 +4994,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Seda väärtust on tõlgendatud kasutades %1$sstrftime%2$s, sa võid kasutada "
"sama aja(time) formaati. Lisaks tulevad ka järgnevad muudatused: %3$s. "
@ -5761,8 +5761,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8721,8 +8721,8 @@ msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Märkus: phpMyAdmin võtab kasutajate privileegid otse MySQL privileges "
"tabelist. Tabeli sisu võib erineda sellest, mida server hetkel kasutab, seda "

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-07-21 14:53+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: basque <eu@li.org>\n"
"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@ -649,8 +649,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -898,8 +898,8 @@ msgstr "Iraulketa %s fitxategian gorde da."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1935,8 +1935,8 @@ msgstr "Ongietorriak %s(e)ra"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@ -4922,8 +4922,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5656,8 +5656,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8575,8 +8575,8 @@ msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Oharra: phpMyAdmin-ek erabiltzaileen pribilegioak' zuzenean MySQL-ren "
"pribilegioen taulatik' eskuratzen ditu. Taula hauen edukiak, tartean eskuz "

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
"Last-Translator: <ahmad_usa2007@yahoo.com>\n"
"Language-Team: persian <fa@li.org>\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fa\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@ -625,8 +625,8 @@ msgstr "پیگردی فعال نمی باشد."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"در این نما حداقل این تعداد از سطرها موجود می باشد. لطفاً به %sنوشتار%s مراجعه "
"نمایید."
@ -872,8 +872,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1898,8 +1898,8 @@ msgstr "به %s خوش‌آمديد"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@ -4857,8 +4857,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5581,8 +5581,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -7266,9 +7266,9 @@ msgid ""
msgstr ""
"اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب "
"استفاده نماييد : 'a','b','c'...<br /> اگر احتياج داشتيد كه از علامت مميز "
"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد "
"، قبل از آنها علامت (\" \\ \") را بگذاريد<br /> (براي مثال'\\\\xyz' يا 'a"
"\\'b')"
"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده "
"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد<br /> (براي مثال'\\\\xyz' "
"يا 'a\\'b')"
#: libraries/tbl_properties.inc.php:109
msgid ""
@ -7303,9 +7303,9 @@ msgid ""
msgstr ""
"اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب "
"استفاده نماييد : 'a','b','c'...<br /> اگر احتياج داشتيد كه از علامت مميز "
"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد "
"، قبل از آنها علامت (\" \\ \") را بگذاريد<br /> (براي مثال'\\\\xyz' يا 'a"
"\\'b')"
"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده "
"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد<br /> (براي مثال'\\\\xyz' "
"يا 'a\\'b')"
#: libraries/tbl_properties.inc.php:355
msgid "ENUM or SET data too long?"
@ -7570,8 +7570,8 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
"پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با "
"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز مي‌شود "
"، و شما بايد اين حفره امنيتي را ذرست كنيد."
"حساب پيش‌فرض MySQL مي‌باشد. اجراي MySQL با اين پيش‌فرض باعث ورود غيرمجاز "
"مي‌شود ، و شما بايد اين حفره امنيتي را ذرست كنيد."
#: main.php:251
msgid ""
@ -8362,8 +8362,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-11-26 21:29+0200\n"
"Last-Translator: <asdfsdf@asdfasdfasdf.com>\n"
"Language-Team: finnish <fi@li.org>\n"
"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -626,11 +626,11 @@ msgstr "Seuranta ei ole käytössä."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %"
"sohjeista%s."
"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja "
"%sohjeista%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@ -873,8 +873,8 @@ msgstr "Vedos tallennettiin tiedostoon %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso "
"tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s."
@ -1858,11 +1858,11 @@ msgstr "Tervetuloa, toivottaa %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston %1"
"$sasetusskriptillä%2$s."
"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston "
"%1$sasetusskriptillä%2$s."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@ -5053,8 +5053,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Tämä arvo on %1$sstrftime%2$s-funktion mukainen, joten "
"ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat "
@ -5853,8 +5853,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8872,8 +8872,8 @@ msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Huom: PhpMyAdmin hakee käyttäjien käyttöoikeudet suoraan MySQL-palvelimen "
"käyttöoikeustauluista. Näiden taulujen sisältö saattaa poiketa palvelimen "
@ -10515,9 +10515,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id=%1"
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
#| "kbd]."
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id="
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "

190
po/fr.po
View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"PO-Revision-Date: 2011-07-09 20:07+0200\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-16 14:57+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: french <fr@li.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -623,11 +623,11 @@ msgstr "Le suivi n'est pas activé."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Cette vue contient au moins ce nombre de lignes. Veuillez référer à %"
"sdocumentation%s."
"Cette vue contient au moins ce nombre de lignes. Veuillez référer à "
"%sdocumentation%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@ -866,8 +866,8 @@ msgstr "Le fichier d'exportation a été sauvegardé sous %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Vous avez probablement tenté de télécharger un fichier trop volumineux. "
"Veuillez vous référer à la %sdocumentation%s pour des façons de contourner "
@ -1827,8 +1827,8 @@ msgstr "Bienvenue dans %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"La raison probable est que vous n'avez pas créé de fichier de configuration. "
"Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but."
@ -2233,10 +2233,9 @@ msgid "The %s functionality is affected by a known bug, see %s"
msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s"
#: libraries/common.lib.php:2447
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Cliquer pour sélectionner"
msgstr "Cliquer pour basculer"
#: libraries/common.lib.php:2718 libraries/common.lib.php:2725
#: libraries/common.lib.php:2912 libraries/config/setup.forms.php:296
@ -4894,8 +4893,8 @@ msgstr ", @TABLE@ sera remplacé par le nom de la table"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Cette valeur est interprétée avec %1$sstrftime%2$s, vous pouvez donc "
"utiliser des chaînes de format d'heure. Ces transformations additionnelles "
@ -5677,8 +5676,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
"La documentation de PBXT et des informations additionnelles sont disponibles "
"sur %sle site de PrimeBase XT%s."
@ -5828,7 +5827,8 @@ msgstr ""
#: libraries/export/sql.php:43
msgid "Additional custom header comment (\\n splits lines):"
msgstr "Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :"
msgstr ""
"Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :"
#: libraries/export/sql.php:48
msgid ""
@ -6571,10 +6571,9 @@ msgid "Generate Password"
msgstr "Générer un mot de passe"
#: libraries/rte/rte_events.lib.php:58
#, fuzzy
#| msgid "Add an event"
msgid "Add event"
msgstr "Ajouter un évènement."
msgstr "Ajouter un événement."
#: libraries/rte/rte_events.lib.php:60
#, php-format
@ -6582,22 +6581,20 @@ msgid "Export of event %s"
msgstr "Exporter l'évènement %s"
#: libraries/rte/rte_events.lib.php:61
#, fuzzy
#| msgid "Event"
msgid "event"
msgstr "Événement"
msgstr "événement"
#: libraries/rte/rte_events.lib.php:62
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create an event"
msgstr "Vous n'avez pas les privilèges nécessaires pour créer une procédure"
msgstr "Vous n'avez pas les privilèges nécessaires pour créer un événement"
#: libraries/rte/rte_events.lib.php:63
#, fuzzy, php-format
#, php-format
#| msgid "No event with name %s found in database %s"
msgid "No event with name %1$s found in database %2$s"
msgstr "Aucun évènement nommé %s n'a été trouvé dans la base de données %s"
msgstr "Aucun événement nommé %1$s n'a été trouvé dans la base de données %2$s"
#: libraries/rte/rte_events.lib.php:64
msgid "There are no events to display."
@ -6616,10 +6613,9 @@ msgid "The following query has failed: \"%s\""
msgstr "La requête «%s» a échoué"
#: libraries/rte/rte_events.lib.php:140
#, fuzzy
#| msgid "Sorry, we failed to restore the dropped routine."
msgid "Sorry, we failed to restore the dropped event."
msgstr "Désolé, il a été impossible de restaurer la procédure."
msgstr "Désolé, il a été impossible de restaurer l'événement."
#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294
#: libraries/rte/rte_triggers.lib.php:114
@ -6627,16 +6623,16 @@ msgid "The backed up query was:"
msgstr "La requête conservée est :"
#: libraries/rte/rte_events.lib.php:145
#, fuzzy, php-format
#, php-format
#| msgid "Routine %1$s has been modified."
msgid "Event %1$s has been modified."
msgstr "La procédure %1$s a été modifiée."
msgstr "L'événement %1$s a été modifié."
#: libraries/rte/rte_events.lib.php:157
#, fuzzy, php-format
#, php-format
#| msgid "Table %1$s has been created."
msgid "Event %1$s has been created."
msgstr "La table %1$s a été créée."
msgstr "L'événement %1$s a été créé."
#: libraries/rte/rte_events.lib.php:165 libraries/rte/rte_routines.lib.php:319
#: libraries/rte/rte_triggers.lib.php:138
@ -6645,16 +6641,14 @@ msgstr ""
"<b>Au moins une erreur s'est produite lors du traitement de la requête :</b>"
#: libraries/rte/rte_events.lib.php:205
#, fuzzy
#| msgid "Create view"
msgid "Create event"
msgstr "Créer une vue"
msgstr "Créer un événement"
#: libraries/rte/rte_events.lib.php:209
#, fuzzy
#| msgid "Edit server"
msgid "Edit event"
msgstr "Modifier serveur"
msgstr "Modifier l'événement"
#: libraries/rte/rte_events.lib.php:236 libraries/rte/rte_routines.lib.php:395
#: libraries/rte/rte_routines.lib.php:1331
@ -6669,10 +6663,9 @@ msgid "Details"
msgstr "Détails"
#: libraries/rte/rte_events.lib.php:398
#, fuzzy
#| msgid "Event type"
msgid "Event name"
msgstr "Type d'évènement"
msgstr "Nom de l'événement"
#: libraries/rte/rte_events.lib.php:419 server_binlog.php:182
msgid "Event type"
@ -6684,22 +6677,19 @@ msgid "Change to %s"
msgstr "Changer pour %s"
#: libraries/rte/rte_events.lib.php:446
#, fuzzy
#| msgid "Execute"
msgid "Execute at"
msgstr "Exécuter"
msgstr "Exécuter à"
#: libraries/rte/rte_events.lib.php:454
#, fuzzy
#| msgid "Execute"
msgid "Execute every"
msgstr "Exécuter"
msgstr "Exécuter chaque"
#: libraries/rte/rte_events.lib.php:473
#, fuzzy
#| msgid "Startup"
msgid "Start"
msgstr "Page de départ"
msgstr "Départ"
#: libraries/rte/rte_events.lib.php:489 libraries/rte/rte_routines.lib.php:972
#: libraries/rte/rte_triggers.lib.php:372
@ -6707,10 +6697,9 @@ msgid "Definition"
msgstr "Définition"
#: libraries/rte/rte_events.lib.php:495
#, fuzzy
#| msgid "complete inserts"
msgid "On completion preserve"
msgstr "Insertions complètes"
msgstr "À la fin, préserver"
#: libraries/rte/rte_events.lib.php:499 libraries/rte/rte_routines.lib.php:982
#: libraries/rte/rte_triggers.lib.php:378
@ -6721,66 +6710,59 @@ msgstr "Créateur"
#: libraries/rte/rte_routines.lib.php:1044
#: libraries/rte/rte_triggers.lib.php:416
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
msgstr "Le définisseur doit suivre le format «utilisateur@machine»"
#: libraries/rte/rte_events.lib.php:549
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide an event name"
msgstr "Vous devez fournir un nom pour la procédure"
msgstr "Vous devez fournir un nom pour l'événement"
#: libraries/rte/rte_events.lib.php:561
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid interval value for the event."
msgstr "Vous devez fournir un nom et un type pour chacun des paramètres."
msgstr "Vous devez fournir un intervalle valable pour l'événement."
#: libraries/rte/rte_events.lib.php:573
#, fuzzy
#| msgid "You must provide a routine definition."
msgid "You must provide a valid execution time for the event."
msgstr "Vous devez fournir une définition pour la procédure."
msgstr "Vous devez fournir un moment d'exécution valable pour l'événement."
#: libraries/rte/rte_events.lib.php:577
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid type for the event."
msgstr "Vous devez fournir un nom et un type pour chacun des paramètres."
msgstr "Vous devez fournir un type valable pour l'événement."
#: libraries/rte/rte_events.lib.php:596
#, fuzzy
#| msgid "You must provide a routine definition."
msgid "You must provide an event definition."
msgstr "Vous devez fournir une définition pour la procédure."
msgstr "Vous devez fournir une définition pour l'événement."
#: libraries/rte/rte_footer.lib.php:29
msgid "New"
msgstr ""
msgstr "Nouveau"
#: libraries/rte/rte_footer.lib.php:91
msgid "OFF"
msgstr ""
msgstr "Désactivé"
#: libraries/rte/rte_footer.lib.php:96
msgid "ON"
msgstr ""
msgstr "Activé"
#: libraries/rte/rte_footer.lib.php:108
#, fuzzy
#| msgid "The event scheduler is enabled"
msgid "Event scheduler status"
msgstr "Le planificateur d'évènements est activé"
msgstr "État du planificateur d'événements"
#: libraries/rte/rte_list.lib.php:52
#, fuzzy
#| msgid "Return type"
msgid "Returns"
msgstr "Type retourné"
msgstr "Retourne"
#: libraries/rte/rte_list.lib.php:58 libraries/rte/rte_triggers.lib.php:344
#: server_status.php:800 sql.php:943
msgid "Time"
msgstr "Durée"
msgstr "Moment"
#: libraries/rte/rte_list.lib.php:59 libraries/rte/rte_triggers.lib.php:358
msgid "Event"
@ -6796,13 +6778,11 @@ msgid "Export of routine %s"
msgstr "Exporter la procédure %s"
#: libraries/rte/rte_routines.lib.php:46
#, fuzzy
#| msgid "Routines"
msgid "routine"
msgstr "Procédures stockées"
msgstr "Procédure stockée"
#: libraries/rte/rte_routines.lib.php:47
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create a routine"
msgstr "Vous n'avez pas les privilèges nécessaires pour créer une procédure"
@ -6927,10 +6907,9 @@ msgid "You must provide a name and a type for each routine parameter."
msgstr "Vous devez fournir un nom et un type pour chacun des paramètres."
#: libraries/rte/rte_routines.lib.php:1126
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid return type for the routine."
msgstr "Vous devez fournir un nom et un type pour chacun des paramètres."
msgstr "Vous devez fournir un type de retour valable pour la procédure."
#: libraries/rte/rte_routines.lib.php:1176
msgid "You must provide a routine definition."
@ -6964,7 +6943,6 @@ msgid "Function"
msgstr "Fonction"
#: libraries/rte/rte_triggers.lib.php:39
#, fuzzy
#| msgid "Add a trigger"
msgid "Add trigger"
msgstr "Ajouter un déclencheur"
@ -6975,94 +6953,82 @@ msgid "Export of trigger %s"
msgstr "Exporter le déclencheur %s"
#: libraries/rte/rte_triggers.lib.php:42
#, fuzzy
#| msgid "Triggers"
msgid "trigger"
msgstr "Déclencheurs"
msgstr "déclencheur"
#: libraries/rte/rte_triggers.lib.php:43
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create a trigger"
msgstr "Vous n'avez pas les privilèges nécessaires pour créer une procédure"
msgstr "Vous n'avez pas les privilèges nécessaires pour créer un déclencheur"
#: libraries/rte/rte_triggers.lib.php:44
#, fuzzy, php-format
#, php-format
#| msgid "No routine with name %1$s found in database %2$s"
msgid "No trigger with name %1$s found in database %2$s"
msgstr ""
"Aucune procédure portant le nom %1$s n'a été trouvée dans la base de données "
"%2$s"
"Aucun déclencheur nommé %1$s n'a été trouvé dans la base de données %2$s"
#: libraries/rte/rte_triggers.lib.php:45
msgid "There are no triggers to display."
msgstr "Aucun déclencheur à afficher."
#: libraries/rte/rte_triggers.lib.php:113
#, fuzzy
#| msgid "Sorry, we failed to restore the dropped routine."
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Désolé, il a été impossible de restaurer la procédure."
msgstr "Désolé, il a été impossible de restaurer le déclencheur."
#: libraries/rte/rte_triggers.lib.php:118
#, fuzzy, php-format
#, php-format
#| msgid "Routine %1$s has been modified."
msgid "Trigger %1$s has been modified."
msgstr "La procédure %1$s a été modifiée."
msgstr "Le déclencheur %1$s a été modifié."
#: libraries/rte/rte_triggers.lib.php:130
#, fuzzy, php-format
#, php-format
#| msgid "Table %1$s has been created."
msgid "Trigger %1$s has been created."
msgstr "La table %1$s a été créée."
msgstr "Le déclencheur %1$s a été créé."
#: libraries/rte/rte_triggers.lib.php:181
#, fuzzy
#| msgid "Create view"
msgid "Create trigger"
msgstr "Créer une vue"
msgstr "Créer un déclencheur"
#: libraries/rte/rte_triggers.lib.php:185
#, fuzzy
#| msgid "Add a trigger"
msgid "Edit trigger"
msgstr "Ajouter un déclencheur"
msgstr "Modifier le déclencheur"
#: libraries/rte/rte_triggers.lib.php:325
#, fuzzy
#| msgid "Triggers"
msgid "Trigger name"
msgstr "Déclencheurs"
msgstr "Nom du déclencheur"
#: libraries/rte/rte_triggers.lib.php:423
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide a trigger name"
msgstr "Vous devez fournir un nom pour la procédure"
msgstr "Vous devez fournir un nom valable pour le déclencheur"
#: libraries/rte/rte_triggers.lib.php:428
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide a valid timing for the trigger"
msgstr "Vous devez fournir un nom pour la procédure"
msgstr "Vous devez fournir une temporisation valable pour le déclencheur"
#: libraries/rte/rte_triggers.lib.php:433
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid event for the trigger"
msgstr "Vous devez fournir un nom et un type pour chacun des paramètres."
msgstr "Vous devez fournir un événement valable pour le déclencheur"
#: libraries/rte/rte_triggers.lib.php:439
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide a valid table name"
msgstr "Vous devez fournir un nom pour la procédure"
msgstr "Vous devez fournir un nom de table valable"
#: libraries/rte/rte_triggers.lib.php:445
#, fuzzy
#| msgid "You must provide a routine definition."
msgid "You must provide a trigger definition."
msgstr "Vous devez fournir une définition pour la procédure."
msgstr "Vous devez fournir une définition pour le déclencheur."
#: libraries/schema/Dia_Relation_Schema.class.php:222
#: libraries/schema/Eps_Relation_Schema.class.php:395
@ -7396,8 +7362,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions "
"PHP nécessaires ont bien été installées tel que décrit dans la %"
"sdocumentation%s."
"PHP nécessaires ont bien été installées tel que décrit dans la "
"%sdocumentation%s."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@ -8580,8 +8546,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin obtient la liste des privilèges directement à partir des "
"tables MySQL. Le contenu de ces tables peut être différent des privilèges "
@ -10058,8 +10024,8 @@ msgid ""
msgstr ""
"Cette %soption%s ne devrait pas être activée car elle permet à un attaquant "
"de tenter de forcer l'entrée sur tout serveur MySQL. Si vous en avez "
"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance%"
"s."
"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance"
"%s."
#: setup/lib/index.lib.php:252
msgid ""
@ -10111,8 +10077,8 @@ msgid ""
msgstr ""
"Le paramètre %sLogin cookie validity%s avec une valeur de plus de 1440 "
"secondes peut causer des interruptions de la session de travail si le "
"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement %"
"d)."
"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement "
"%d)."
#: setup/lib/index.lib.php:262
#, php-format
@ -10131,8 +10097,8 @@ msgid ""
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
"Si vous utilisez l'authentification cookie et que le paramètre %sLogin "
"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity%"
"s doit avoir une valeur plus petite ou égale à celui-ci."
"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity"
"%s doit avoir une valeur plus petite ou égale à celui-ci."
#: setup/lib/index.lib.php:266
#, php-format
@ -10142,8 +10108,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
"Si vous l'estimez nécessaire, utilisez des paramètres de protection - %"
"sauthentification du serveur%s et %sserveurs mandataires de confiance%s. "
"Si vous l'estimez nécessaire, utilisez des paramètres de protection - "
"%sauthentification du serveur%s et %sserveurs mandataires de confiance%s. "
"Cependant, la protection par adresse IP peut ne pas être fiable si votre IP "
"appartient à un fournisseur via lequel des milliers d'utilisateurs, vous y "
"compris, sont connectés."

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-07-21 14:50+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: galician <gl@li.org>\n"
"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@ -650,11 +650,11 @@ msgstr "O seguemento non está activado."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%"
"s."
"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation"
"%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@ -897,11 +897,11 @@ msgstr "Gardouse o volcado no ficheiro %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %"
"sdocumentación%s para averiguar como evitar este límite."
"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a "
"%sdocumentación%s para averiguar como evitar este límite."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1987,8 +1987,8 @@ msgstr "Reciba a benvida a %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Isto débese, posibelmente, a que non se creou un ficheiro de configuración. "
"Tal vez queira utilizar %1$ssetup script%2$s para crear un."
@ -5257,8 +5257,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode "
"utilizar cadeas de formato de hora. Produciranse transformacións en "
@ -6073,8 +6073,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8362,8 +8362,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na %"
"sdocumentation%s."
"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na "
"%sdocumentation%s."
#: navigation.php:183 server_databases.php:281 server_synchronize.php:1202
msgid "No databases"
@ -9109,8 +9109,8 @@ msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin recolle os privilexios dos usuarios directamente das táboas "
"de privilexios do MySQL. O contido destas táboas pode diferir dos "
@ -10765,9 +10765,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id=%1"
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
#| "kbd]."
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id="
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-03-02 20:17+0200\n"
"Last-Translator: <zippoxer@gmail.com>\n"
"Language-Team: hebrew <he@li.org>\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: he\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -641,8 +641,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -888,8 +888,8 @@ msgstr "הוצאה נשמרה אל קובץ %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1931,8 +1931,8 @@ msgstr "ברוך הבא אל %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@ -4923,8 +4923,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5654,8 +5654,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8497,8 +8497,8 @@ msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמ
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"הערה: phpMyAdmin מקבל הרשאות משתמש ישירות מטבלאות הרשאות של MySQL. התוכן של "
"הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן "

131
po/hi.po
View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"PO-Revision-Date: 2011-05-06 09:13+0200\n"
"Last-Translator: <manojonemail@gmail.com>\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-18 18:20+0200\n"
"Last-Translator: <deadefy@nepalimail.com>\n"
"Language-Team: hindi <hi@li.org>\n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -18,7 +18,7 @@ msgstr ""
#: libraries/display_tbl.lib.php:354 libraries/display_tbl.lib.php:421
#: server_privileges.php:1583
msgid "Show all"
msgstr "सभी दिखा"
msgstr "सभी दिखाएँ"
#: browse_foreigners.php:70 libraries/common.lib.php:2173
#: libraries/export/pdf.php:135
@ -35,8 +35,9 @@ msgid ""
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
msgstr ""
"लक्ष्य ब्राउज़र विंडो को अद्यतन नहीं किया जा सकता है. शायद आपने मूल विंडो बंद कर दिया है,"
"या अपनी ब्राउसर की सिक्यूरिटी सेट्टिंग को क्रोस-विंडो अद्यतन के लिए कांफिगुर कर रखा है."
"लक्ष्य ब्राउज़र विंडो को अद्यतन नहीं किया जा सकता है. शायद आपने मूल विंडो "
"बंद कर दिया है,या अपनी ब्राउसर की सिक्यूरिटी सेट्टिंग को क्रोस-विंडो अद्यतन "
"के लिए कांफिगुर कर रखा है."
#: browse_foreigners.php:151 libraries/common.lib.php:2720
#: libraries/common.lib.php:2727 libraries/common.lib.php:2908
@ -96,7 +97,7 @@ msgstr "वर्णन"
#: browse_foreigners.php:248 browse_foreigners.php:257
#: browse_foreigners.php:269 browse_foreigners.php:277
msgid "Use this value"
msgstr "इस मूल्य का उपयोग करें"
msgstr "इस मान का उपयोग करें"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
#: libraries/blobstreaming.lib.php:326
@ -117,8 +118,8 @@ msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
msgstr ""
"ये %s फ़ाइल तंत्र में उपलब्ध नहीं है, कृपया अधिक जानकारी के लिए www.phpmyadmin.net "
"वेबसाईट पर जाएँ "
"ये %s फ़ाइल तंत्र में उपलब्ध नहीं है, कृपया अधिक जानकारी के लिए "
"www.phpmyadmin.net वेबसाईट पर जाएँ "
#: db_create.php:58
#, php-format
@ -159,6 +160,7 @@ msgstr "कोलम"
#: tbl_change.php:292 tbl_change.php:319 tbl_printview.php:140
#: tbl_printview.php:310 tbl_select.php:114 tbl_structure.php:205
#: tbl_structure.php:792 tbl_tracking.php:267 tbl_tracking.php:314
#, fuzzy
msgid "Type"
msgstr "टाइप"
@ -170,6 +172,7 @@ msgstr "टाइप"
#: libraries/tbl_properties.inc.php:112 tbl_change.php:328
#: tbl_printview.php:142 tbl_structure.php:208 tbl_tracking.php:269
#: tbl_tracking.php:320
#, fuzzy
msgid "Null"
msgstr "अशक्त"
@ -181,7 +184,7 @@ msgstr "अशक्त"
#: libraries/tbl_properties.inc.php:109 tbl_printview.php:143
#: tbl_structure.php:209 tbl_tracking.php:270
msgid "Default"
msgstr "डिफ़ॉल्ट"
msgstr "तयशुदा"
#: db_datadict.php:174 libraries/export/htmlword.php:259
#: libraries/export/latex.php:366 libraries/export/odt.php:304
@ -246,7 +249,7 @@ msgstr "छापें"
#: db_export.php:26
msgid "View dump (schema) of database"
msgstr "डेटाबेस का डंप (स्कीमा) दिखाएं"
msgstr "डेटाबेस का डंप (स्कीमा) नजारा"
#: db_export.php:30 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
#: export.php:370 navigation.php:299
@ -263,12 +266,12 @@ msgstr "सभी को रद्द करें"
#: db_operations.php:41 tbl_create.php:22
msgid "The database name is empty!"
msgstr "डेटाबेस नाम खाली है"
msgstr "डेटाबेस का नाम खाली है"
#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr " डेटाबेस का नाम %s बदल कर %s रखा गया है"
msgstr " डेटाबेस %s का नाम बदल कर %s रखा गया है"
#: db_operations.php:276
#, php-format
@ -290,11 +293,11 @@ msgstr "डेटाबेस को हटा दे"
#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "डाटाबेस %s को ड्रोप कर दिया ।"
msgstr "डाटाबेस %s को ड्रोप कर दिया गया है।"
#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "ड्रॉप डेटाबेस (छोड़ें)"
msgstr "डेटाबेस को ड्रप करे "
#: db_operations.php:487
msgid "Copy database to"
@ -352,8 +355,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए %"
"shere%s पर क्लिक करें."
"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, "
"जानने के लिए %sयहाँ%s पर क्लिक करें."
#: db_operations.php:600
msgid "Edit or export relational schema"
@ -385,7 +388,7 @@ msgstr "आकार"
#: db_printview.php:160 db_structure.php:410 libraries/export/sql.php:743
#: libraries/export/sql.php:1058
msgid "in use"
msgstr "उपयोग में"
msgstr "उपयोग में है"
#: db_printview.php:185 libraries/db_info.inc.php:61
#: libraries/export/sql.php:698
@ -412,8 +415,8 @@ msgstr "पिछली जाँच"
#, php-format
msgid "%s table"
msgid_plural "%s tables"
msgstr[0] " %s टेबल(s)"
msgstr[1] " %s टेबल(s)"
msgstr[0] " %s टेबलें"
msgstr[1] " %s टेबल"
#: db_qbe.php:41
msgid "You have to choose at least one column to display"
@ -421,11 +424,11 @@ msgstr "आपको कम से कम एक स्तंभ प्रदर
#: db_qbe.php:186
msgid "Switch to"
msgstr "के लिए स्विच"
msgstr "में चले"
#: db_qbe.php:186
msgid "visual builder"
msgstr "दृश्य बिल्डर"
msgstr "दृश्य निर्माता"
#: db_qbe.php:222 libraries/db_structure.lib.php:90
#: libraries/display_tbl.lib.php:937
@ -457,7 +460,7 @@ msgstr "मापदंड"
#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
msgstr "इन्सर्ट"
msgstr "घुसाएं"
#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
@ -475,7 +478,7 @@ msgstr "अथवा"
#: db_qbe.php:529
msgid "Modify"
msgstr "संशोधित"
msgstr "संशोध"
#: db_qbe.php:606
msgid "Add/Delete criteria rows"
@ -500,14 +503,14 @@ msgstr "डेटाबेस <b>%s<b> पर SQL क्वरी:"
#: db_qbe.php:955 libraries/common.lib.php:1116
msgid "Submit Query"
msgstr "क्वरी प्रस्तुत करें"
msgstr "क्वरी भेजें"
#: db_search.php:30 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
#: libraries/auth/cookie.auth.lib.php:566 libraries/auth/http.auth.lib.php:51
#: libraries/auth/signon.auth.lib.php:236
msgid "Access denied"
msgstr "प्रवेश निषेध"
msgstr "पहुँच निषेधित"
#: db_search.php:42 db_search.php:284
msgid "at least one of the words"
@ -572,7 +575,6 @@ msgid "Search in database"
msgstr "डाटाबेस में खोजें"
#: db_search.php:275
#, fuzzy
#| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgid "Words or values to search for (wildcard: \"%\"):"
msgstr "शब्द अथवा वेल्यु जिसे सर्च करना है (wildcard: \"%\"):"
@ -586,7 +588,6 @@ msgid "Words are separated by a space character (\" \")."
msgstr "शब्द स्पेस(\" \") करक्टेर से अलग किये गए हैं."
#: db_search.php:298
#, fuzzy
#| msgid "Inside table(s):"
msgid "Inside tables:"
msgstr " टेबल में:"
@ -607,7 +608,7 @@ msgstr " टेबल %s को खाली किया गया है."
#: db_structure.php:280 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "द्रश्य %s रद्द िया गया है."
msgstr "द्रश्य %s रद्द िया गया है."
#: db_structure.php:280 tbl_operations.php:705
#, php-format
@ -625,9 +626,10 @@ msgstr "ट्रैकिंग सक्रिय नहीं है."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दोक्युमेंताशन%s पढ़ें."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दस्तावेज़%s पढ़ें."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@ -647,7 +649,7 @@ msgstr "जोड"
#: db_structure.php:449 libraries/StorageEngine.class.php:313
#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr "%s इस MySQL सर्वर पर डिफ़ॉल्ट भंडारण इंजन है."
msgstr "%s इस MySQL सर्वर पर तयशुदा भंडारण इंजन है."
#: db_structure.php:477 db_structure.php:494 db_structure.php:495
#: libraries/display_tbl.lib.php:2339 libraries/display_tbl.lib.php:2344
@ -667,7 +669,7 @@ msgstr "सभी को चेक करें"
#: libraries/replication_gui.lib.php:35 server_databases.php:264
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:594
msgid "Uncheck All"
msgstr " सभी को अनचेक करें"
msgstr "सभी को अनचेक करें"
#: db_structure.php:489
msgid "Check tables having overhead"
@ -686,23 +688,23 @@ msgstr "निर्यात"
#: libraries/display_tbl.lib.php:2439 tbl_structure.php:628
#: tbl_structure.php:630
msgid "Print view"
msgstr "छापने वाला द्रश्य."
msgstr "छपाई द्रश्य."
#: db_structure.php:503 libraries/common.lib.php:2915
#: libraries/common.lib.php:2916
msgid "Empty"
msgstr "खाली करें"
msgstr "खाली"
#: db_structure.php:505 db_tracking.php:104 libraries/Index.class.php:482
#: libraries/common.lib.php:2913 libraries/common.lib.php:2914
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
msgstr "छोड़ें"
msgstr "रद्द"
#: db_structure.php:507 tbl_operations.php:604
msgid "Check table"
msgstr " टेबल को चेक करें"
msgstr "टेबल को चेक करें"
#: db_structure.php:509 tbl_operations.php:653 tbl_structure.php:842
#: tbl_structure.php:844
@ -711,29 +713,26 @@ msgstr "टेबल को अनुकूलित करें"
#: db_structure.php:511 tbl_operations.php:640
msgid "Repair table"
msgstr "टेबल को टीक करें"
msgstr "टेबल को मरम्मत करें"
#: db_structure.php:513 tbl_operations.php:627
msgid "Analyze table"
msgstr "टेबल का विश्लेषण करें"
#: db_structure.php:515
#, fuzzy
#| msgid "Go to table"
msgid "Add prefix to table"
msgstr "टेबल पर जायें"
msgstr "टेबल पर उपसर्ग जोड़ें"
#: db_structure.php:517 libraries/mult_submits.inc.php:251
#, fuzzy
#| msgid "Replace table data with file"
msgid "Replace table prefix"
msgstr "फाइल, टेबल डेटा की जगह"
msgstr "टेबल के उपसर्ग को पुनर्स्थापना करें"
#: db_structure.php:519 libraries/mult_submits.inc.php:251
#, fuzzy
#| msgid "Replace table data with file"
msgid "Copy table with prefix"
msgstr "फाइल, टेबल डेटा की जगह"
msgstr "टेबल को इस उपसर्ग के साथ प्रतिलिपि बनाएँ"
#: db_structure.php:561 libraries/schema/User_Schema.class.php:383
msgid "Data Dictionary"
@ -804,7 +803,7 @@ msgstr "ट्रैकिंग रिपोर्ट"
#: db_tracking.php:136 tbl_tracking.php:244 tbl_tracking.php:676
msgid "Structure snapshot"
msgstr "संरचना स्नैपशॉट"
msgstr "संरचना क्षणचित्र"
#: db_tracking.php:181
msgid "Untracked tables"
@ -817,7 +816,7 @@ msgstr "टेबलओं को ट्रैक करें"
#: db_tracking.php:229
msgid "Database Log"
msgstr "डेटाबेस लॉग"
msgstr "डेटाबेस का रोजनामचा"
#: enum_editor.php:21 libraries/tbl_properties.inc.php:776
#, php-format
@ -826,7 +825,7 @@ msgstr "\"%s\" काँलम के लिए मान "
#: enum_editor.php:22 libraries/tbl_properties.inc.php:777
msgid "Enter each value in a separate field."
msgstr "एक मान अलग क्षेत्र में दर्ज करें."
msgstr "हर एक मान अलग क्षेत्र में दर्ज करें."
#: enum_editor.php:57
msgid "+ Restart insertion and add a new value"
@ -838,11 +837,11 @@ msgstr "उत्पादन"
#: enum_editor.php:68
msgid "Copy and paste the joined values into the \"Length/Values\" field"
msgstr "\"लंबाई / मूल्य\" क्षेत्र में शामिल हो गए मान कॉपी और पेस्ट"
msgstr "\"लंबाई / मान\" क्षेत्र में शामिल हो गए मान कॉपी और पेस्ट"
#: export.php:73
msgid "Selected export type has to be saved in file!"
msgstr "चयनित निर्यात टाइप को फाइल में सेव करने की आवश्यकता है!"
msgstr "चयनित निर्यात प्रकार को फाइल में संचित करने की आवश्यकता है!"
#: export.php:163 export.php:188 export.php:670
#, php-format
@ -869,8 +868,8 @@ msgstr "डंप को %s फाइल में सेव किया गय
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s "
"दोकुमेंताशन%s पढ़ें."
@ -978,10 +977,9 @@ msgid "You are about to DESTROY a complete database!"
msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं! "
#: js/messages.php:32
#, fuzzy
#| msgid "You are about to DESTROY a complete database!"
msgid "You are about to DESTROY a complete table!"
msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं! "
msgstr "आप एक पूराटेबल नष्ट कर रहे हैं! "
#: js/messages.php:33
#, fuzzy
@ -1020,10 +1018,9 @@ msgstr "यह नंबर नहीं है!"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:49
#, fuzzy
#| msgid "Total"
msgid "Total count"
msgstr "कुल"
msgstr "कुल गिनती"
#: js/messages.php:52
msgid "The host name is empty!"
@ -1847,11 +1844,11 @@ msgstr " %s मे स्वागत है"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script%2"
"$s का उपयोग करें."
"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script"
"%2$s का उपयोग करें."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@ -4782,8 +4779,8 @@ msgstr ", @टेबल@ टेबल का नाम बन जायेगा
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5489,8 +5486,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8303,8 +8300,8 @@ msgstr "Drop the databases that have the same names as the users."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764

View File

@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: croatian <hr@li.org>\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hr\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@ -649,8 +649,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s."
@ -902,11 +902,11 @@ msgstr "Izbacivanje je spremljeno u datoteku %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %"
"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja."
"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte "
"%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1973,8 +1973,8 @@ msgstr "Dobro došli u %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Vjerojatan razlog je nepostojeća konfiguracijska datoteka. Za izradu možete "
"upotrijebiti naredbu %1$ssetup script%2$s"
@ -5012,8 +5012,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti "
"naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća "
@ -5817,8 +5817,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8798,8 +8798,8 @@ msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin preuzima korisničke privilegije izravno iz MySQL "
"tablica privilegija. U slučaju da su ručno mijenjane, sadržaj ovih tablica "
@ -11395,8 +11395,8 @@ msgstr "Preimenuj prikaz u"
#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
#~ "extension. Please check your PHP configuration."
#~ msgstr ""
#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation][em]%1"
#~ "$s[/em][/a] . Provjerite svoju PHP konfiguraciju."
#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation]"
#~ "[em]%1$s[/em][/a] . Provjerite svoju PHP konfiguraciju."
#~ msgid ""
#~ "Couldn't load the iconv or recode extension needed for charset "

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-05-27 18:52+0200\n"
"Last-Translator: <slygyor@gmail.com>\n"
"Language-Team: hungarian <hu@li.org>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -626,11 +626,11 @@ msgstr "Nyomkövetés inaktív."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a %"
"sdokumentációban%s."
"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a "
"%sdokumentációban%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@ -868,11 +868,11 @@ msgstr "A kiíratás mentése a(z) %s fájlba megtörtént."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a %"
"sdokumentációban%s a korlátozás feloldása végett."
"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a "
"%sdokumentációban%s a korlátozás feloldása végett."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1858,11 +1858,11 @@ msgstr "Üdvözli a %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A %1"
"$stelepítőszkripttel%2$s el tudja készíteni."
"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A "
"%1$stelepítőszkripttel%2$s el tudja készíteni."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@ -4948,8 +4948,8 @@ msgstr ", @TABLE@ lesz a tábla neve"
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ennek az értéknek az értelmezése az %1$sstrftime%2$s használatával történik, "
"vagyis időformázó karakterláncokat használhat. A következő átalakításokra "
@ -5741,8 +5741,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -7487,8 +7487,8 @@ msgid ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a %"
"sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-"
"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a "
"%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-"
"kiterjesztést."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
@ -8775,13 +8775,13 @@ msgstr "A felhasználókéval azonos nevű adatbázisok eldobása."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Megjegyzés: a phpMyAdmin a felhasználók jogait közvetlenül a MySQL "
"privilégium táblákból veszi. Ezen táblák tartalma eltérhet a szerver által "
"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben %"
"stöltse be újra a jogokat%s a folytatás előtt."
"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben "
"%stöltse be újra a jogokat%s a folytatás előtt."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
@ -10387,9 +10387,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id=%1"
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
#| "kbd]."
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id="
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-06-18 11:34+0200\n"
"Last-Translator: <udin.mx@gmail.com>\n"
"Language-Team: indonesian <id@li.org>\n"
"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
@ -623,11 +623,11 @@ msgstr "Pelacakan tidak aktif."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat %"
"sdokumentasi%s"
"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat "
"%sdokumentasi%s"
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@ -868,11 +868,11 @@ msgstr "Dump (Skema) disimpan pada file %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat %"
"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat "
"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1834,8 +1834,8 @@ msgstr "Selamat Datang di %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Anda mungkin belum membuat file konfigurasi. Anda bisa menggunakan %1$ssetup "
"script%2$s untuk membuatnya."
@ -4839,8 +4839,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5592,8 +5592,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8567,8 +8567,8 @@ msgstr "Hapus database yang memiliki nama yang sama dengan pengguna."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari "
"tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil "

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-13 13:55+0200\n"
"Last-Translator: Rouslan Placella <rouslan@placella.com>\n"
"Language-Team: italian <it@li.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -627,8 +627,8 @@ msgstr "Il tracking non è attivo."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Questa vista ha, come minimo, questo numero di righe. Per informazioni "
"controlla la %sdocumentazione%s."
@ -869,8 +869,8 @@ msgstr "Il dump è stato salvato nel file %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Stai probabilmente cercando di caricare sul server un file troppo grande. "
"Fai riferimento alla documentazione %sdocumentation%s se desideri aggirare "
@ -1850,8 +1850,8 @@ msgstr "Benvenuto in %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"La ragione di questo è che probabilmente non hai creato alcun file di "
"configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno."
@ -4958,8 +4958,8 @@ msgstr ", il nome della tabella diventerá @TABLE@"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi "
"usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte "
@ -5749,8 +5749,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
"La documentazione ed ulteriori informazioni a riguardo di PBXT é disponibile "
"su %sPrimeBase XT Home Page%s."
@ -7946,8 +7946,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
"Sul server è in esecuzione Suhosin. Controlla la documentazione: %"
"sdocumentation%s per possibili problemi."
"Sul server è in esecuzione Suhosin. Controlla la documentazione: "
"%sdocumentation%s per possibili problemi."
#: navigation.php:183 server_databases.php:281 server_synchronize.php:1202
msgid "No databases"
@ -8651,8 +8651,8 @@ msgstr "Elimina i databases gli stessi nomi degli utenti."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"N.B.: phpMyAdmin legge i privilegi degli utenti direttamente nella tabella "
"dei privilegi di MySQL. Il contenuto di questa tabella può differire dai "
@ -10249,10 +10249,10 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - %"
"saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia%s. "
"Comunque, la protezione a base di IP potrebbe non essere affidabile se il "
"tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono "
"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - "
"%saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia"
"%s. Comunque, la protezione a base di IP potrebbe non essere affidabile se "
"il tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono "
"connessi."
#: setup/lib/index.lib.php:268
@ -10267,8 +10267,8 @@ msgstr ""
"Hai impostato il tipo di autenticazione [kbd]config[/kbd] e hai inclusi il "
"nome utente e la parola chiave per l'auto-login, questo non è desiderato per "
"gli host in uso live. Chiunque che conosce o indovina il tuo URL di "
"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta %"
"sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta "
"%sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
#: setup/lib/index.lib.php:270
#, php-format

164
po/ja.po
View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"PO-Revision-Date: 2011-06-27 12:34+0200\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-18 11:16+0200\n"
"Last-Translator: Yuichiro <yuichiro@pop07.odn.ne.jp>\n"
"Language-Team: japanese <jp@li.org>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
@ -619,8 +619,8 @@ msgstr "SQL コマンドの追跡は非アクティブです。"
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。"
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -860,8 +860,8 @@ msgstr "ダンプをファイル %s に保存しました"
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ"
"メント%s をご覧ください"
@ -1195,16 +1195,14 @@ msgid "Insert Table"
msgstr "テーブルを挿入する"
#: js/messages.php:113
#, fuzzy
#| msgid "Add index"
msgid "Hide indexes"
msgstr "インデックスを追加する"
msgstr "インデックスを隠す"
#: js/messages.php:114
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "グリッドを表示"
msgstr "インデックスを表示する"
#: js/messages.php:117
msgid "Searching"
@ -1816,11 +1814,11 @@ msgstr "%s へようこそ"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプト%2"
"$s を利用して設定ファイルを作成してください"
"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプ"
"ト%2$s を利用して設定ファイルを作成してください"
#: libraries/auth/config.auth.lib.php:115
msgid ""
@ -2010,7 +2008,7 @@ msgstr "設定ファイルの読み込みに失敗しました"
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
msgstr "通常、これは構文エラーがあることを意味します。以下に示す全てのエラーを確認してください。"
#: libraries/common.inc.php:596
#, php-format
@ -2659,7 +2657,7 @@ msgstr ""
#: libraries/config/messages.inc.php:61
msgid "Disable multi table maintenance"
msgstr "複数テーブルのメンテナンスを無効にする"
msgstr "複数テーブルに対してのメンテナンスを無効にする"
#: libraries/config/messages.inc.php:62
msgid "Edit SQL queries in popup window"
@ -4229,13 +4227,12 @@ msgstr "「新規データベース作成」部分を表示する"
msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
msgstr "テーブルを閲覧するときに、表示方向のオプションが表示されるかどうかを定義します。"
#: libraries/config/messages.inc.php:454
#, fuzzy
#| msgid "Default display direction"
msgid "Show display direction"
msgstr "デフォルトの表示方向"
msgstr "表示方向を表示する"
#: libraries/config/messages.inc.php:455
msgid ""
@ -4740,7 +4737,7 @@ msgstr "特権なし"
#: libraries/display_create_table.lib.php:46
#, php-format
msgid "Create table on database %s"
msgstr "データベース %s に新しいテーブルを作成する"
msgstr "データベース %s にテーブルを作成する"
#: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:49
#: libraries/rte/rte_list.lib.php:55 libraries/rte/rte_list.lib.php:62
@ -4848,8 +4845,8 @@ msgstr "、@TABLE@ はテーブル名に"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"この値は %1$sstrftime%2$s を使用して解釈されますので、時刻の書式文字列を使用"
"することができます。また、埋め込み変数変換も行われます(%3$s変換されま"
@ -4986,9 +4983,8 @@ msgid ""
"to the PHP timeout limit. <i>(This might be good way to import large files, "
"however it can break transactions.)</i>"
msgstr ""
"制限時間が近くなったときにスクリプト側でインポートを中断できるようにします。"
"<i>(大きなファイルをインポートする場合には便利ですが、トランザクションが壊れ"
"ることもあります。)</i>"
"制限時間が近くなったときに、スクリプト側でインポートを中断できるようにする。<i>(大きなファイルをインポートする場合には便利ですが、トランザクションが"
"壊れることもあります。)</i>"
#: libraries/display_import.lib.php:228
msgid "Number of rows to skip, starting from the first row:"
@ -5029,22 +5025,19 @@ msgid "%d is not valid row number."
msgstr "%d は不正な行番号です"
#: libraries/display_tbl.lib.php:436
#, fuzzy
#| msgid "Start"
msgid "Start row"
msgstr ""
msgstr "開始行"
#: libraries/display_tbl.lib.php:438
#, fuzzy
#| msgid "Number of rows:"
msgid "Number of rows"
msgstr "行数:"
msgstr "表示行数"
#: libraries/display_tbl.lib.php:443
#, fuzzy
#| msgid "More"
msgid "Mode"
msgstr "その他"
msgstr "モード"
#: libraries/display_tbl.lib.php:445
msgid "horizontal"
@ -5061,7 +5054,7 @@ msgstr "垂直"
#: libraries/display_tbl.lib.php:452
#, php-format
msgid "Headers every %s rows"
msgstr ""
msgstr "%s 行毎にヘッダを表示"
#: libraries/display_tbl.lib.php:546
msgid "Sort by key"
@ -5620,8 +5613,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
"PBXT に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ"
"ト%sにあります。"
@ -6295,7 +6288,7 @@ msgstr "不明"
#: libraries/navigation_header.inc.php:60
#: libraries/navigation_header.inc.php:61
msgid "Home"
msgstr "メインページ"
msgstr "メインページ"
#: libraries/navigation_header.inc.php:70
#: libraries/navigation_header.inc.php:73
@ -6493,7 +6486,6 @@ msgid "Generate Password"
msgstr "パスワードを生成する"
#: libraries/rte/rte_events.lib.php:58
#, fuzzy
#| msgid "Add an event"
msgid "Add event"
msgstr "イベントを追加する"
@ -6504,19 +6496,17 @@ msgid "Export of event %s"
msgstr "イベント %s をエクスポートする"
#: libraries/rte/rte_events.lib.php:61
#, fuzzy
#| msgid "Event"
msgid "event"
msgstr "イベント"
#: libraries/rte/rte_events.lib.php:62
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create an event"
msgstr "ルーチンを作成する特権がありません"
msgstr "イベントを作成する特権がありません"
#: libraries/rte/rte_events.lib.php:63
#, fuzzy, php-format
#, php-format
#| msgid "No event with name %s found in database %s"
msgid "No event with name %1$s found in database %2$s"
msgstr "データベース %2$s に %1$s という名前のイベントはありません"
@ -6539,7 +6529,7 @@ msgstr "クエリの実行に失敗しました:『%s』"
#: libraries/rte/rte_events.lib.php:140
msgid "Sorry, we failed to restore the dropped event."
msgstr ""
msgstr "申し訳ありませんが、削除されたイベントの復元に失敗しました。"
#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294
#: libraries/rte/rte_triggers.lib.php:114
@ -6547,16 +6537,16 @@ msgid "The backed up query was:"
msgstr ""
#: libraries/rte/rte_events.lib.php:145
#, fuzzy, php-format
#, php-format
#| msgid "Routine %1$s has been modified."
msgid "Event %1$s has been modified."
msgstr "ルーチン %1$s を変更しました。"
msgstr "イベント %1$s を変更しました。"
#: libraries/rte/rte_events.lib.php:157
#, fuzzy, php-format
#, php-format
#| msgid "Table %1$s has been created."
msgid "Event %1$s has been created."
msgstr "テーブル %1$s を作成しました。"
msgstr "イベント %1$s を作成しました。"
#: libraries/rte/rte_events.lib.php:165 libraries/rte/rte_routines.lib.php:319
#: libraries/rte/rte_triggers.lib.php:138
@ -6564,16 +6554,14 @@ msgid "<b>One or more errors have occured while processing your request:</b>"
msgstr "<b>リクエストの処理中に 1 つ以上のエラーが発生しました:</b>"
#: libraries/rte/rte_events.lib.php:205
#, fuzzy
#| msgid "Create view"
msgid "Create event"
msgstr "ビューを作成する"
msgstr "イベントを作成する"
#: libraries/rte/rte_events.lib.php:209
#, fuzzy
#| msgid "Edit server"
msgid "Edit event"
msgstr "サーバの編集"
msgstr "イベントを編集する"
#: libraries/rte/rte_events.lib.php:236 libraries/rte/rte_routines.lib.php:395
#: libraries/rte/rte_routines.lib.php:1331
@ -6588,10 +6576,9 @@ msgid "Details"
msgstr "詳細"
#: libraries/rte/rte_events.lib.php:398
#, fuzzy
#| msgid "Event type"
msgid "Event name"
msgstr "イベント種別"
msgstr "イベント"
#: libraries/rte/rte_events.lib.php:419 server_binlog.php:182
msgid "Event type"
@ -6610,10 +6597,9 @@ msgid "Execute at"
msgstr "実行"
#: libraries/rte/rte_events.lib.php:454
#, fuzzy
#| msgid "Execute"
msgid "Execute every"
msgstr "実行"
msgstr "イベントを実行する"
#: libraries/rte/rte_events.lib.php:473
#, fuzzy
@ -6644,10 +6630,9 @@ msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
#: libraries/rte/rte_events.lib.php:549
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide an event name"
msgstr "ルーチン名は必須です"
msgstr "イベント名は必須です"
#: libraries/rte/rte_events.lib.php:561
#, fuzzy
@ -6662,16 +6647,14 @@ msgid "You must provide a valid execution time for the event."
msgstr "ルーチンの定義は必須です"
#: libraries/rte/rte_events.lib.php:577
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid type for the event."
msgstr "ルーチンの各パラメータに対して、名前と種別は必須です"
msgstr "有効な種別イベントを指定してください"
#: libraries/rte/rte_events.lib.php:596
#, fuzzy
#| msgid "You must provide a routine definition."
msgid "You must provide an event definition."
msgstr "ルーチンの定義は必須です"
msgstr "イベントの定義は必須です"
#: libraries/rte/rte_footer.lib.php:29
msgid "New"
@ -6714,13 +6697,11 @@ msgid "Export of routine %s"
msgstr "ルーチン %s のエクスポート"
#: libraries/rte/rte_routines.lib.php:46
#, fuzzy
#| msgid "Routines"
msgid "routine"
msgstr "ルーチン"
#: libraries/rte/rte_routines.lib.php:47
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create a routine"
msgstr "ルーチンを作成する特権がありません"
@ -6844,10 +6825,9 @@ msgid "You must provide a name and a type for each routine parameter."
msgstr "ルーチンの各パラメータに対して、名前と種別は必須です"
#: libraries/rte/rte_routines.lib.php:1126
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid return type for the routine."
msgstr "ルーチンの各パラメータに対して、名前と種別は必須です"
msgstr "ルーチンに対して、有効な返り値の種類を指定してください"
#: libraries/rte/rte_routines.lib.php:1176
msgid "You must provide a routine definition."
@ -6880,7 +6860,6 @@ msgid "Function"
msgstr "関数"
#: libraries/rte/rte_triggers.lib.php:39
#, fuzzy
#| msgid "Add a trigger"
msgid "Add trigger"
msgstr "トリガを追加する"
@ -6891,22 +6870,20 @@ msgid "Export of trigger %s"
msgstr "トリガ %s をエクスポートする"
#: libraries/rte/rte_triggers.lib.php:42
#, fuzzy
#| msgid "Triggers"
msgid "trigger"
msgstr "トリガ"
#: libraries/rte/rte_triggers.lib.php:43
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create a trigger"
msgstr "ルーチンを作成する特権がありません"
msgstr "トリガを作成する特権がありません"
#: libraries/rte/rte_triggers.lib.php:44
#, fuzzy, php-format
#, php-format
#| msgid "No routine with name %1$s found in database %2$s"
msgid "No trigger with name %1$s found in database %2$s"
msgstr "データベース %2$s に %1$s という名前のルーチンはありません"
msgstr "データベース %2$s に %1$s という名前のトリガはありません"
#: libraries/rte/rte_triggers.lib.php:45
msgid "There are no triggers to display."
@ -6917,40 +6894,36 @@ msgid "Sorry, we failed to restore the dropped trigger."
msgstr ""
#: libraries/rte/rte_triggers.lib.php:118
#, fuzzy, php-format
#, php-format
#| msgid "Routine %1$s has been modified."
msgid "Trigger %1$s has been modified."
msgstr "ルーチン %1$s を変更しました。"
msgstr "トリガ %1$s を変更しました。"
#: libraries/rte/rte_triggers.lib.php:130
#, fuzzy, php-format
#, php-format
#| msgid "Table %1$s has been created."
msgid "Trigger %1$s has been created."
msgstr "テーブル %1$s を作成しました。"
msgstr "トリガ %1$s を作成しました。"
#: libraries/rte/rte_triggers.lib.php:181
#, fuzzy
#| msgid "Create view"
msgid "Create trigger"
msgstr "ビューを作成する"
msgstr "トリガを作成する"
#: libraries/rte/rte_triggers.lib.php:185
#, fuzzy
#| msgid "Add a trigger"
msgid "Edit trigger"
msgstr "トリガを追加する"
msgstr "トリガを編集する"
#: libraries/rte/rte_triggers.lib.php:325
#, fuzzy
#| msgid "Triggers"
msgid "Trigger name"
msgstr "トリガ"
msgstr "トリガ"
#: libraries/rte/rte_triggers.lib.php:423
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide a trigger name"
msgstr "ルーチン名は必須です"
msgstr "トリガ名は必須です"
#: libraries/rte/rte_triggers.lib.php:428
#, fuzzy
@ -6959,22 +6932,19 @@ msgid "You must provide a valid timing for the trigger"
msgstr "ルーチン名は必須です"
#: libraries/rte/rte_triggers.lib.php:433
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid event for the trigger"
msgstr "ルーチンの各パラメータに対して、名前と種別は必須です"
msgstr "有効なトリガイベントを指定してください"
#: libraries/rte/rte_triggers.lib.php:439
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide a valid table name"
msgstr "ルーチン名は必須です"
msgstr "有効なテーブル名を指定してください"
#: libraries/rte/rte_triggers.lib.php:445
#, fuzzy
#| msgid "You must provide a routine definition."
msgid "You must provide a trigger definition."
msgstr "ルーチンの定義は必須です"
msgstr "トリガの定義は必須です"
#: libraries/schema/Dia_Relation_Schema.class.php:222
#: libraries/schema/Eps_Relation_Schema.class.php:395
@ -7777,7 +7747,7 @@ msgstr "名前でテーブルをフィルタする"
#: navigation.php:306 navigation.php:307
msgctxt "short form"
msgid "Create table"
msgstr "テーブルを作成"
msgstr "テーブルを作成する"
#: navigation.php:312 navigation.php:475
msgid "Please select a database"
@ -8459,8 +8429,8 @@ msgstr "ユーザと同名のデータベースを削除する"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手"
"作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの"
@ -8835,10 +8805,9 @@ msgid "All status variables"
msgstr "全ての状態変数"
#: server_status.php:413 server_status.php:439
#, fuzzy
#| msgid "Refresh rate"
msgid "Refresh rate:"
msgstr "再描画間隔"
msgstr "再描画間隔"
#: server_status.php:462
msgid "Containing the word:"
@ -9988,10 +9957,11 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定(%"
"sホスト認証%s設定および%s信頼されたプロキシのリスト%sを使用してください。し"
"かしながら、ユーザが数千人もいるような ISP に所属している、含まれている、接続"
"されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。"
"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定"
"%sホスト認証%s設定および%s信頼されたプロキシのリスト%sを使用してくださ"
"い。しかしながら、ユーザが数千人もいるような ISP に所属している、含まれてい"
"る、接続されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえま"
"せん。"
#: setup/lib/index.lib.php:268
#, php-format

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian <ka@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@ -647,11 +647,11 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@ -900,11 +900,11 @@ msgstr "Dump has been saved to file %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1986,11 +1986,11 @@ msgstr "მოგესალმებათ %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@ -5196,12 +5196,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:268
msgid "use this for future exports"
@ -5997,8 +5997,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -9022,13 +9022,13 @@ msgstr "Drop the databases that have the same names as the users."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
@ -10615,9 +10615,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id=%1"
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
#| "kbd]."
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id="
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-06-16 18:18+0200\n"
"Last-Translator: <cihar@nvyu.net>\n"
"Language-Team: korean <ko@li.org>\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ko\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@ -358,8 +358,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %"
"s여기를 클릭%s하십시오."
"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 "
"%s여기를 클릭%s하십시오."
#: db_operations.php:600
msgid "Edit or export relational schema"
@ -633,8 +633,8 @@ msgstr "트래킹이 활성화되어 있지 않습니다."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -881,8 +881,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1878,8 +1878,8 @@ msgstr "%s에 오셨습니다"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파"
"일을 생성할 수 있습니다."
@ -4868,8 +4868,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5597,8 +5597,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -7645,8 +7645,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %"
"s여기를 클릭%s하십시오."
"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 "
"%s여기를 클릭%s하십시오."
#: main.php:314
msgid ""
@ -8397,8 +8397,8 @@ msgstr "사용자명과 같은 이름의 데이터베이스를 삭제"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764

View File

@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-04-05 15:52+0200\n"
"Last-Translator: Kęstutis <forkik@gmail.com>\n"
"Language-Team: lithuanian <lt@li.org>\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: lt\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%"
"100<10 || n%100>=20) ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
"%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@ -628,11 +628,11 @@ msgstr "Sekimas yra neaktyvus."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos %"
"sdokumentacijoje%s."
"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos "
"%sdokumentacijoje%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@ -875,11 +875,11 @@ msgstr "Atvaizdis įrašytas faile %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti %"
"sdokumentaciją%s būdams kaip apeiti šį apribojimą."
"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti "
"%sdokumentaciją%s būdams kaip apeiti šį apribojimą."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1865,8 +1865,8 @@ msgstr "Jūs naudojate %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Jūs dar turbūt nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų "
"skriptu%2$s, kad sukurtumėte failą."
@ -4870,8 +4870,8 @@ msgstr ", @TABLE@ taps lentelės pavadinimu"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi Jūs galite "
"keisti laiko formatavimą. Taip pat pakeičiamos šios eilutės: %3$s. Kitas "
@ -5608,8 +5608,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8540,8 +8540,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų "
"lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų "
@ -10033,9 +10033,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id=%1"
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
#| "kbd]."
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id="
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian <lv@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@ -645,8 +645,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -894,8 +894,8 @@ msgstr "Damps tika saglabāts failā %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1939,8 +1939,8 @@ msgstr "Laipni lūgti %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@ -4931,8 +4931,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5665,8 +5665,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8589,13 +8589,13 @@ msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Piezīme: phpMyAdmin saņem lietotāju privilēģijas pa taisno no MySQL "
"privilēģiju tabilām. Šo tabulu saturs var atšķirties no privilēģijām, ko "
"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams %"
"spārlādēt privilēģijas%s pirms Jūs turpināt."
"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams "
"%spārlādēt privilēģijas%s pirms Jūs turpināt."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-05-19 17:04+0200\n"
"Last-Translator: <sjanevski@gmail.com>\n"
"Language-Team: macedonian_cyrillic <mk@li.org>\n"
"Language: mk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: mk\n"
"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n"
"X-Generator: Pootle 2.0.5\n"
@ -644,8 +644,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -888,8 +888,8 @@ msgstr "Содржината на базата на податоци е сочу
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1935,8 +1935,8 @@ msgstr "%s Добредојдовте"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@ -4942,8 +4942,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5696,8 +5696,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8653,8 +8653,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL "
"табелата на привилегии. Содржината на оваа табела табела може да се "

View File

@ -5,14 +5,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Malayalam <ml@li.org>\n"
"Language: ml\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ml\n"
"X-Generator: Translate Toolkit 1.7.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@ -616,8 +616,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -853,8 +853,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1780,8 +1780,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@ -4623,8 +4623,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5314,8 +5314,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -7931,8 +7931,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian <mn@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@ -645,8 +645,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -887,8 +887,8 @@ msgstr "Асгалт %s файлд хадгалагдсан."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1942,11 +1942,11 @@ msgstr "%s-д тавтай морилно уу"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та %1"
"$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно."
"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та "
"%1$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@ -4932,12 +4932,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны "
"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %"
"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана."
"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: "
"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана."
#: libraries/display_export.lib.php:268
msgid "use this for future exports"
@ -5691,8 +5691,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8624,8 +8624,8 @@ msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн сан
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Тэмдэглэл: phpMyAdmin нь MySQL-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн "
"онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн "
@ -11034,8 +11034,8 @@ msgstr ""
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%"
#~ "s дарж шалгах."
#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд"
#~ "%s дарж шалгах."
#~ msgid "Ignore duplicate rows"
#~ msgstr "Давхардсан мөрүүдийг алгасах"

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay <ms@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@ -648,8 +648,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -894,8 +894,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1924,8 +1924,8 @@ msgstr "Selamat Datang ke %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@ -4887,8 +4887,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5618,8 +5618,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8433,8 +8433,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-03-07 11:21+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: norwegian <no@li.org>\n"
"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -624,8 +624,8 @@ msgstr "Overvåkning er ikke aktiv."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -870,8 +870,8 @@ msgstr "Dump har blitt lagret til fila %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen"
"%s for måter å omgå denne begrensningen."
@ -1861,8 +1861,8 @@ msgstr "Velkommen til %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør "
"kanskje bruke %1$ssetup script%2$s for å opprette en."
@ -4924,8 +4924,8 @@ msgstr ", @TABLE@ vil bli tabellnavnet"
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke "
"tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. "
@ -5718,8 +5718,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -7492,8 +7492,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
"For en liste over tilgjengelige transformasjonsvalg, klikk på %"
"stransformasjonsbeskrivelser%s"
"For en liste over tilgjengelige transformasjonsvalg, klikk på "
"%stransformasjonsbeskrivelser%s"
#: libraries/tbl_properties.inc.php:147
msgid "Transformation options"
@ -8659,8 +8659,8 @@ msgstr "Slett databasene som har det samme navnet som brukerne."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Merk: phpMyAdmin får brukerprivilegiene direkte fra MySQL "
"privilegietabeller. Innholdet i disse tabellene kan være forskjellig fra de "
@ -10263,8 +10263,8 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
"Hvis du føler at dette er nødvending, så bruk ekstra "
"beskyttelsesinnstillinger - [a@?page=servers&amp;mode=edit&amp;id=%1"
"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
"beskyttelsesinnstillinger - [a@?page=servers&amp;mode=edit&amp;id="
"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
"page=form&amp;formset=features#tab_Security]godkjente mellomlagerliste[/a]. "
"Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en "
"Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet."
@ -10275,9 +10275,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id=%1"
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
#| "kbd]."
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id="
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-06-04 15:19+0200\n"
"Last-Translator: Dieter Adriaenssens <ruleant@users.sourceforge.net>\n"
"Language-Team: dutch <nl@li.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -625,8 +625,8 @@ msgstr "Tracking is niet actief."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s."
@ -867,11 +867,11 @@ msgstr "Dump is bewaard als %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de %"
"sdocumentatie%s voor mogelijkheden om dit te omzeilen."
"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de "
"%sdocumentatie%s voor mogelijkheden om dit te omzeilen."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1846,8 +1846,8 @@ msgstr "Welkom op %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u "
"%1$ssetup script%2$s gebruiken om een te maken."
@ -4928,13 +4928,13 @@ msgstr ", @TABLE@ wordt vervangen door de tabel naam"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het "
"gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende "
"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ%5"
"$s voor meer details."
"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ"
"%5$s voor meer details."
#: libraries/display_export.lib.php:268
msgid "use this for future exports"
@ -5716,11 +5716,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
"Documentatie en meer informatie over PBXT kan gevonden worden op de %"
"sPrimeBase XT home pagina%s."
"Documentatie en meer informatie over PBXT kan gevonden worden op de "
"%sPrimeBase XT home pagina%s."
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@ -8621,8 +8621,8 @@ msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL "
"privileges tabel. De content van deze tabel kan verschillen met de rechten "

View File

@ -8,10 +8,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
@ -618,8 +619,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, possible-php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -855,8 +856,8 @@ msgstr ""
#: import.php:57
#, possible-php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1782,8 +1783,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:106
#, possible-php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@ -4625,8 +4626,8 @@ msgstr ""
#, possible-php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5347,8 +5348,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, possible-php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -7964,8 +7965,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-02-24 16:21+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: polish <pl@li.org>\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pl\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.5\n"
@ -635,11 +635,11 @@ msgstr "Monitorowanie nie jest aktywne."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w %"
"sdocumentation%s."
"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w "
"%sdocumentation%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@ -878,8 +878,8 @@ msgstr "Zrzut został zapisany do pliku %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Prawdopodobnie próbowano wrzucić duży plik. Aby poznać sposoby obejścia tego "
"limitu, proszę zapoznać się z %sdokumenacją%s."
@ -1901,8 +1901,8 @@ msgstr "Witamy w %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Do jego "
"stworzenia można użyć %1$sskryptu instalacyjnego%2$s."
@ -5063,8 +5063,8 @@ msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej tabeli"
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Interpretacja tej wartości należy do funkcji %1$sstrftime%2$s i można użyć "
"jej napisów formatujących. Dodatkowo zostaną zastosowane następujące "
@ -5876,8 +5876,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -7637,8 +7637,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Analizator składni SQL nie mógł zostać zainicjowany. Sprawdź, czy "
"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %"
"sdokumentacji%s."
"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w "
"%sdokumentacji%s."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@ -7688,8 +7688,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %"
"sopisy transformacji%s"
"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij "
"%sopisy transformacji%s"
#: libraries/tbl_properties.inc.php:147
msgid "Transformation options"
@ -8168,8 +8168,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%"
"s."
"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja"
"%s."
#: navigation.php:183 server_databases.php:281 server_synchronize.php:1202
msgid "No databases"
@ -8912,8 +8912,8 @@ msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Uwaga: phpMyAdmin pobiera uprawnienia użytkowników wprost z tabeli uprawnień "
"MySQL-a. Zawartość tej tabeli, jeśli zostały w niej dokonane ręczne zmiany, "
@ -10528,8 +10528,8 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
"Jeżeli wydaje się to konieczne, można użyć dodatkowych ustawień "
"bezpieczeństwa — [a@?page=servers&amp;mode=edit&amp;id=%1"
"$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?"
"bezpieczeństwa — [a@?page=servers&amp;mode=edit&amp;id="
"%1$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?"
"page=form&amp;formset=features#tab_Security]listy zaufanych serwerów proxy[/"
"a]. Jednakże ochrona oparta na adresy IP może nie być wiarygodna, jeżeli "
"używany IP należy do ISP, do którego podłączonych jest tysiące użytkowników."
@ -10540,9 +10540,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id=%1"
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
#| "kbd]."
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id="
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-03-26 03:23+0200\n"
"Last-Translator: <efgpinto@gmail.com>\n"
"Language-Team: portuguese <pt@li.org>\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -627,11 +627,11 @@ msgstr "Detecção de Alterações está desactivada."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Esta vista tem número de linhas aproximado. Por favor, consulte a %"
"sdocumentação%s."
"Esta vista tem número de linhas aproximado. Por favor, consulte a "
"%sdocumentação%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@ -874,8 +874,8 @@ msgstr "O Dump foi gravado para o ficheiro %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Provavelmente tentou efectuar o importar um ficheiro demasiado grande. Por "
"favor reveja a %sdocumentação%s para encontrar formas de contornar este "
@ -1910,11 +1910,11 @@ msgstr "Bemvindo ao %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script%"
"2$s pode ser utilizado para criar um."
"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script"
"%2$s pode ser utilizado para criar um."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@ -4912,8 +4912,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5647,8 +5647,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8509,8 +8509,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Nota: O phpMyAdmin recebe os privilégios dos utilizadores directamente da "
"tabela de privilégios do MySQL. O conteúdo destas tabelas pode diferir dos "

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"PO-Revision-Date: 2011-07-11 04:42+0200\n"
"Last-Translator: <erickdeoliveiraleal@gmail.com>\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-17 20:04+0200\n"
"Last-Translator: <rds_ralison@yahoo.com.br>\n"
"Language-Team: brazilian_portuguese <pt_BR@li.org>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -251,9 +251,8 @@ msgstr "Ver o esquema do Banco de Dados"
#: db_export.php:30 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
#: export.php:370 navigation.php:299
#, fuzzy
msgid "No tables found in database."
msgstr "Nenhuma tabela encontrada no Banco de Dados"
msgstr "Nenhuma tabela encontrada no banco de dados."
#: db_export.php:40 db_search.php:317 server_export.php:26
msgid "Select All"
@ -623,11 +622,11 @@ msgstr "Rastreamento não está ativo."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a %"
"sdocumentação%s."
"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a "
"%sdocumentação%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@ -864,8 +863,8 @@ msgstr "Dump foi salvo no arquivo %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Você provavelmente tentou carregar um arquivo muito grande. Veja referências "
"na %sdocumentation%s para burlar esses limites."
@ -1132,7 +1131,6 @@ msgid "Issued queries since last refresh"
msgstr "Consultas emitidas desde a última atualização"
#: js/messages.php:85
#, fuzzy
#| msgid "SQL queries"
msgid "Issued queries"
msgstr "Consultas SQL"
@ -1203,16 +1201,14 @@ msgid "Insert Table"
msgstr "Inserir tabela"
#: js/messages.php:113
#, fuzzy
#| msgid "Add index"
msgid "Hide indexes"
msgstr "Adicionar índice"
msgstr "Ocultar índices"
#: js/messages.php:114
#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
msgstr "Mostrar grade"
msgstr "Mostrar índices"
#: js/messages.php:117
msgid "Searching"
@ -1321,10 +1317,9 @@ msgid "Add an option for column "
msgstr "Adicionar uma opção para a coluna"
#: js/messages.php:157
#, fuzzy
#| msgid "Generate Password"
msgid "Generate password"
msgstr "Gerar Senha"
msgstr "Gerar senha"
#: js/messages.php:158 libraries/replication_gui.lib.php:364
msgid "Generate"
@ -1363,7 +1358,6 @@ msgstr "Concluído"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:188
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Anterior"
@ -1451,7 +1445,6 @@ msgstr "Abr"
#. l10n: Short month name
#: js/messages.php:218 libraries/common.lib.php:1458
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
msgid "May"
@ -1847,8 +1840,8 @@ msgstr "Bem vindo ao %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"A provável razão para isso é que você não criou o arquivo de configuração. "
"Você deve usar o %1$ssetup script%2$s para criar um."
@ -2034,10 +2027,9 @@ msgid "Check Privileges"
msgstr "Verificar privilégios"
#: libraries/common.inc.php:588
#, fuzzy
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Failed to read configuration file"
msgstr "Não foi possível carregar configuração padrão de: \"%1$s\""
msgstr "Falhou ao ler o arquivo de configuração"
#: libraries/common.inc.php:589
msgid ""
@ -2048,7 +2040,7 @@ msgstr ""
"qualquer erro mostrado abaixo."
#: libraries/common.inc.php:596
#, fuzzy, php-format
#, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Não foi possível carregar configuração padrão de: \"%1$s\""
@ -2062,7 +2054,7 @@ msgstr ""
"arquivo de configuração!"
#: libraries/common.inc.php:631
#, fuzzy, php-format
#, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid server index: %s"
msgstr "Índice de servidor inválido: \"%s\""
@ -2252,10 +2244,9 @@ msgid "The %s functionality is affected by a known bug, see %s"
msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s"
#: libraries/common.lib.php:2447
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Clique para selecionar"
msgstr "Clique para alternar"
#: libraries/common.lib.php:2718 libraries/common.lib.php:2725
#: libraries/common.lib.php:2912 libraries/config/setup.forms.php:296
@ -2342,9 +2333,8 @@ msgstr "Fechado"
#: libraries/export/latex.php:42 libraries/export/odt.php:34
#: libraries/export/sql.php:122 libraries/export/texytext.php:24
#: libraries/import.lib.php:1107
#, fuzzy
msgid "structure"
msgstr "Estrutura"
msgstr "estrutura"
#: libraries/config.values.php:97 libraries/export/htmlword.php:25
#: libraries/export/latex.php:42 libraries/export/odt.php:34
@ -2355,10 +2345,9 @@ msgstr "dados"
#: libraries/config.values.php:98 libraries/export/htmlword.php:25
#: libraries/export/latex.php:42 libraries/export/odt.php:34
#: libraries/export/sql.php:124 libraries/export/texytext.php:24
#, fuzzy
#| msgid "Structure and data"
msgid "structure and data"
msgstr "Estrutura e dados"
msgstr "estrutura e dados"
#: libraries/config.values.php:100
msgid "Quick - display only the minimal options to configure"
@ -2373,16 +2362,14 @@ msgid "Custom - like above, but without the quick/custom choice"
msgstr "Personalizada - como acima, mas sem a escolha rápida/personalizada"
#: libraries/config.values.php:120
#, fuzzy
#| msgid "Complete inserts"
msgid "complete inserts"
msgstr "Inserções completas"
msgstr "inserções completas"
#: libraries/config.values.php:121
#, fuzzy
#| msgid "Extended inserts"
msgid "extended inserts"
msgstr "Inserções extendidas"
msgstr "inserções extendidas"
#: libraries/config.values.php:122
msgid "both of the above"
@ -2558,6 +2545,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for "
"import and export operations"
msgstr ""
"Habilitar compressão [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] para "
"operações de importar e exportar"
#: libraries/config/messages.inc.php:31
msgid "Bzip2"
@ -2587,7 +2576,7 @@ msgstr ""
#: libraries/config/messages.inc.php:36
msgid "Number of rows for CHAR/VARCHAR textareas"
msgstr ""
msgstr "Número de linhas para caixas de texto CHAR/VARCHAR"
#: libraries/config/messages.inc.php:37
msgid "CHAR textarea rows"
@ -2602,6 +2591,9 @@ msgid ""
"Compress gzip/bzip2 exports on the fly without the need for much memory; if "
"you encounter problems with created gzip/bzip2 files disable this feature"
msgstr ""
"Comprime exportações gzip/bzip2 imediatamente sem a necessidade de muita "
"memória; se você encontrar problemas com arquivos gzip/bzip2 criados "
"desabilite este recurso"
#: libraries/config/messages.inc.php:40
msgid "Compress on the fly"
@ -2617,6 +2609,8 @@ msgid ""
"Whether a warning (&quot;Are your really sure...&quot;) should be displayed "
"when you're about to lose data"
msgstr ""
"Exibir aviso (&quot;Você tem certeza...&quot;) quando estiver prestes a "
"perder dados"
#: libraries/config/messages.inc.php:43
msgid "Confirm DROP queries"
@ -2627,15 +2621,16 @@ msgid "Debug SQL"
msgstr "Depurar SQL"
#: libraries/config/messages.inc.php:45
#, fuzzy
msgid "Default display direction"
msgstr "Opções de exportação do Banco de Dados"
msgstr "Direção de exibição padrão"
#: libraries/config/messages.inc.php:46
msgid ""
"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates "
"maximum number for which vertical model is used"
msgstr ""
"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] ou um número que indica o número "
"máximo para o qual o modelo vertical é usado"
#: libraries/config/messages.inc.php:47
msgid "Display direction for altering/creating columns"
@ -2643,7 +2638,7 @@ msgstr ""
#: libraries/config/messages.inc.php:48
msgid "Tab that is displayed when entering a database"
msgstr ""
msgstr "Aba que é exibida quando entrar em um banco de dados"
#: libraries/config/messages.inc.php:49
#, fuzzy
@ -2652,7 +2647,7 @@ msgstr "Renomear Banco de Dados para"
#: libraries/config/messages.inc.php:50
msgid "Tab that is displayed when entering a server"
msgstr ""
msgstr "Aba que é exibida quando entrar em um servidor"
#: libraries/config/messages.inc.php:51
#, fuzzy
@ -2661,7 +2656,7 @@ msgstr "Renomear Banco de Dados para"
#: libraries/config/messages.inc.php:52
msgid "Tab that is displayed when entering a table"
msgstr ""
msgstr "Aba que é exibida quando entrar em uma tabela"
#: libraries/config/messages.inc.php:53
#, fuzzy
@ -2678,35 +2673,37 @@ msgstr "Mostrar conteúdo binário como HEX"
#: libraries/config/messages.inc.php:56
msgid "Show database listing as a list instead of a drop down"
msgstr ""
msgstr "Exibir bancos de dados como uma lista ao invés de uma caixa de seleção"
#: libraries/config/messages.inc.php:57
msgid "Display databases as a list"
msgstr ""
msgstr "Exibir bancos de dados como uma lista"
#: libraries/config/messages.inc.php:58
msgid "Show server listing as a list instead of a drop down"
msgstr ""
"Exibir lista de servidores como uma lista ao invés de uma caixa de seleção"
#: libraries/config/messages.inc.php:59
msgid "Display servers as a list"
msgstr ""
msgstr "Exibir servidores como uma lista"
#: libraries/config/messages.inc.php:60
msgid ""
"Disable the table maintenance mass operations, like optimizing or repairing "
"the selected tables of a database."
msgstr ""
"Desativar operações em massa de manutenção de tabelas, como otimizar ou "
"reparar as tabelas selecionadas de um banco de dados."
#: libraries/config/messages.inc.php:61
#, fuzzy
#| msgid "Table maintenance"
msgid "Disable multi table maintenance"
msgstr "Tabela de Manutenção"
msgstr "Desativar a manutenção múltiplas tabelas"
#: libraries/config/messages.inc.php:62
msgid "Edit SQL queries in popup window"
msgstr ""
msgstr "Editar consultas SQL em uma janela popup"
#: libraries/config/messages.inc.php:63
msgid "Edit in window"
@ -2733,6 +2730,8 @@ msgid ""
"Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no "
"limit)"
msgstr ""
"Define o número de segundos que um script é executado ([kbd]0[/kbd] para sem "
"limite)"
#: libraries/config/messages.inc.php:69
msgid "Maximum execution time"
@ -2743,7 +2742,6 @@ msgid "Save as file"
msgstr "Salvar como arquivo"
#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239
#, fuzzy
msgid "Character set of the file"
msgstr "Conjunto de caracteres do arquivo"
@ -2773,7 +2771,6 @@ msgstr "Colocar nome do campo na primeira linha"
#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241
#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76
#: libraries/import/ldi.php:42
#, fuzzy
#| msgid "Fields enclosed by"
msgid "Columns enclosed by"
msgstr "Campos delimitados por"
@ -2796,15 +2793,14 @@ msgstr "Substituir NULL por"
#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84
msgid "Remove CRLF characters within columns"
msgstr ""
msgstr "Remover caracteres CRLF em colunas"
#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245
#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63
#: libraries/import/ldi.php:41
#, fuzzy
#| msgid "Lines terminated by"
msgid "Columns terminated by"
msgstr "Linhas terminadas por"
msgstr "Colunas terminadas por"
#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240
#: libraries/import/csv.php:86 libraries/import/ldi.php:44
@ -2812,7 +2808,6 @@ msgid "Lines terminated by"
msgstr "Linhas terminadas por"
#: libraries/config/messages.inc.php:82
#, fuzzy
#| msgid "Excel edition"
msgid "Excel edition"
msgstr "Edição do Excel"
@ -2828,19 +2823,17 @@ msgid "Server name template"
msgstr "Nome do arquivo do modelo"
#: libraries/config/messages.inc.php:87
#, fuzzy
msgid "Table name template"
msgstr "Nome do arquivo do modelo"
msgstr "Modelo de nome da tabela"
#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104
#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137
#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24
#: libraries/export/latex.php:40 libraries/export/odt.php:32
#: libraries/export/sql.php:116 libraries/export/texytext.php:23
#, fuzzy
#| msgid "%s table(s)"
msgid "Dump table"
msgstr "%s tabela(s)"
msgstr "Esvaziar tabela"
#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32
msgid "Include table caption"
@ -2872,14 +2865,13 @@ msgid "Relations"
msgstr "Relações"
#: libraries/config/messages.inc.php:105
#, fuzzy
#| msgid "Export type"
msgid "Export method"
msgstr "Tipo de exportação"
msgstr "Método exportar"
#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116
msgid "Save on server"
msgstr ""
msgstr "Salvar no servidor"
#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117
#: libraries/display_export.lib.php:188 libraries/display_export.lib.php:214
@ -2887,15 +2879,13 @@ msgid "Overwrite existing file(s)"
msgstr "Sobrescrever arquivo(s) existente(s)"
#: libraries/config/messages.inc.php:118
#, fuzzy
msgid "Remember file name template"
msgstr "Nome do arquivo do modelo"
msgstr "Lembrar modelo de nome de arquivo"
#: libraries/config/messages.inc.php:120
#, fuzzy
#| msgid "Enclose table and field names with backquotes"
msgid "Enclose table and column names with backquotes"
msgstr "Usar aspas simples nos nomes de tabelas e campos"
msgstr "Usar crases nos nomes de tabelas e campos"
#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260
#: libraries/display_export.lib.php:346
@ -2928,14 +2918,13 @@ msgstr "Usar inserções ignoradas"
#: libraries/config/messages.inc.php:132
msgid "Syntax to use when inserting data"
msgstr ""
msgstr "Sintaxe a utilizar ao inserir dados"
#: libraries/config/messages.inc.php:133 libraries/export/sql.php:268
msgid "Maximal length of created query"
msgstr "Tamanho máximo da consulta gerada"
#: libraries/config/messages.inc.php:138
#, fuzzy
msgid "Export type"
msgstr "Tipo de exportação"
@ -2950,7 +2939,7 @@ msgstr "Tipo de exportação"
#: libraries/config/messages.inc.php:148
msgid "Force secured connection while using phpMyAdmin"
msgstr ""
msgstr "Forçar conexão segura quando usar phpMyAdmin"
#: libraries/config/messages.inc.php:149
msgid "Force SSL connection"
@ -2961,34 +2950,36 @@ msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
"Ordem de classificação para itens em um caixa de seleção de chave "
"estrangeira; [kbd]conteúdo[/kbd] é o dado referenciado, [kbd]id[/kbd] é o "
"valor da chave"
#: libraries/config/messages.inc.php:151
msgid "Foreign key dropdown order"
msgstr ""
msgstr "Ordem da caixa de seleção de chave estrangeira"
#: libraries/config/messages.inc.php:152
msgid "A dropdown will be used if fewer items are present"
msgstr ""
msgstr "Uma caixa de seleção será utilizada se poucos itens estiverem presentes"
#: libraries/config/messages.inc.php:153
msgid "Foreign key limit"
msgstr ""
msgstr "Limite de chave estrangeira"
#: libraries/config/messages.inc.php:154
msgid "Browse mode"
msgstr ""
msgstr "Modo de busca"
#: libraries/config/messages.inc.php:155
msgid "Customize browse mode"
msgstr ""
msgstr "Personalizar modo de busca"
#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159
#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187
#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217
#: libraries/config/messages.inc.php:229
#, fuzzy
msgid "Customize default options"
msgstr "Opções de exportação do Banco de Dados"
msgstr "Personalizar opções padrão"
#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:237
#: libraries/config/setup.forms.php:316
@ -3000,29 +2991,27 @@ msgstr "CSV"
#: libraries/config/messages.inc.php:160
msgid "Developer"
msgstr ""
msgstr "Desenvolvedor"
#: libraries/config/messages.inc.php:161
msgid "Settings for phpMyAdmin developers"
msgstr ""
msgstr "Configurações para desenvolvedores phpMyAdmin"
#: libraries/config/messages.inc.php:162
msgid "Edit mode"
msgstr ""
msgstr "Modo de edição"
#: libraries/config/messages.inc.php:163
msgid "Customize edit mode"
msgstr ""
msgstr "Personalizar modo de edição"
#: libraries/config/messages.inc.php:165
#, fuzzy
msgid "Export defaults"
msgstr "Importar arquivos"
msgstr "Padrões de exportação"
#: libraries/config/messages.inc.php:166
#, fuzzy
msgid "Customize default export options"
msgstr "Opções de exportação do Banco de Dados"
msgstr "Personalizar opções de exportação padrão"
#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209
#: setup/frames/menu.inc.php:16
@ -3035,7 +3024,7 @@ msgstr "Geral"
#: libraries/config/messages.inc.php:169
msgid "Set some commonly used options"
msgstr ""
msgstr "Define algumas opções comumente utilizadas"
#: libraries/config/messages.inc.php:170 libraries/db_links.inc.php:83
#: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89
@ -3044,9 +3033,8 @@ msgid "Import"
msgstr "Importar"
#: libraries/config/messages.inc.php:171
#, fuzzy
msgid "Import defaults"
msgstr "Importar arquivos"
msgstr "Padrões de importação"
#: libraries/config/messages.inc.php:172
msgid "Customize default common import options"
@ -3065,13 +3053,12 @@ msgid "LaTeX"
msgstr "LaTeX"
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
msgstr "Opções de exportação do Banco de Dados"
msgstr "Opções de exibição de bancos de dados"
#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18
msgid "Navigation frame"
msgstr ""
msgstr "Quadro de navegação"
#: libraries/config/messages.inc.php:180
msgid "Customize appearance of the navigation frame"
@ -3083,18 +3070,16 @@ msgid "Servers"
msgstr "Servidores"
#: libraries/config/messages.inc.php:182
#, fuzzy
msgid "Servers display options"
msgstr "Opções de exportação do Banco de Dados"
msgstr "Opções de exibição de servidores"
#: libraries/config/messages.inc.php:184
#, fuzzy
msgid "Tables display options"
msgstr "Opções de exportação do Banco de Dados"
msgstr "Opções de exibição de tabelas"
#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19
msgid "Main frame"
msgstr ""
msgstr "Quadro principal"
#: libraries/config/messages.inc.php:186
msgid "Microsoft Office"
@ -3110,7 +3095,7 @@ msgstr ""
#: libraries/config/messages.inc.php:191
msgid "Settings that didn't fit enywhere else"
msgstr ""
msgstr "Configurações que não se encaixavam em nenhum outro lugar"
#: libraries/config/messages.inc.php:192
msgid "Page titles"
@ -4840,8 +4825,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Esse valor é interpretado usando %1$sstrftime%2$s, então você pode usar as "
"strings de formatação de tempo. Adicionalmente a seguinte transformação "
@ -5592,8 +5577,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8559,8 +8544,8 @@ msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela "
"de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos "

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-07-22 02:28+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: romanian <ro@li.org>\n"
"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ro\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2);;\n"
"X-Generator: Pootle 2.0.1\n"
@ -649,8 +649,8 @@ msgstr "Monitorizarea nu este activată"
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s."
@ -902,11 +902,11 @@ msgstr "Copia a fost salvată în fișierul %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la %"
"sdocumentație%s pentru căi de ocolire a acestei limite."
"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la "
"%sdocumentație%s pentru căi de ocolire a acestei limite."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1965,8 +1965,8 @@ msgstr "Bine ați venit la %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Motivul probabil pentru aceasta este că nu ați creat un fișier de "
"configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un "
@ -5017,12 +5017,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:268
msgid "use this for future exports"
@ -5821,8 +5821,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8817,8 +8817,8 @@ msgstr "Aruncă baza de date care are același nume ca utilizatorul."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de "
"privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. "

View File

@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-03 19:50+0200\n"
"Last-Translator: Victor Volkov <hanut@php-myadmin.ru>\n"
"Language-Team: russian <ru@li.org>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ru\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@ -627,8 +627,8 @@ msgstr "Слежение выключено."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Данное представление имеет, по меньшей мере, указанное количество строк. "
"Пожалуйста, обратитесь к %sдокументации%s."
@ -868,8 +868,8 @@ msgstr "Дамп был сохранен в файл %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Вероятно, размер загружаемого файла слишком велик. Способы обхода данного "
"ограничения описаны в %sдокументации%s."
@ -1832,8 +1832,8 @@ msgstr "Добро пожаловать в %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Возможная причина - отсутствие файла конфигурации. Для его создания вы "
"можете воспользоваться %1$sсценарием установки%2$s."
@ -4917,8 +4917,8 @@ msgstr ", @TABLE@ будет замещено именем таблицы"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна "
"вставка текущей даты и времени. Дополнительно могут быть использованы "
@ -5699,8 +5699,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
"Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице "
"PrimeBase XT%s."
@ -8578,8 +8578,8 @@ msgstr "Удалить базы данных, имена которых совп
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Примечание: phpMyAdmin получает информацию о пользовательских привилегиях "
"непосредственно из таблиц привилегий MySQL. Содержимое этих таблиц может "
@ -10164,8 +10164,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
"При необходимости используйте дополнительные настройки безопасности - %"
"sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, "
"При необходимости используйте дополнительные настройки безопасности - "
"%sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, "
"защита по IP может быть ненадежной, если ваш IP не является выделенным и "
"кроме вас принадлежит тысячам пользователей того же Интернет Провайдера."
@ -10917,8 +10917,8 @@ msgid ""
"No themes support; please check your configuration and/or your themes in "
"directory %s."
msgstr ""
"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге %"
"s."
"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге "
"%s."
#: themes.php:41
msgid "Get more themes!"

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-06-04 15:35+0200\n"
"Last-Translator: Madhura Jayaratne <madhura.cj@gmail.com>\n"
"Language-Team: sinhala <si@li.org>\n"
"Language: si\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: si\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -623,8 +623,8 @@ msgstr "අවධානය අක්‍රීයයි."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්‍යනය කරන්න."
@ -863,11 +863,11 @@ msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකි
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1835,8 +1835,8 @@ msgstr "%s වෙත ආයුබෝවන්"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Probably reason of this is that you did not create configuration file. You "
"might want to use %1$ssetup script%2$s to create one."
@ -4749,12 +4749,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
#: libraries/display_export.lib.php:268
msgid "use this for future exports"
@ -5496,8 +5496,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -7506,8 +7506,8 @@ msgid ""
"Your preferences will be saved for current session only. Storing them "
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා %"
"sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය."
"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා "
"%sphpMyAdmin වින්‍යාස ගබඩාව%s අවශ්‍යය."
#: libraries/user_preferences.lib.php:112
msgid "Could not save configuration"
@ -8390,8 +8390,8 @@ msgstr "භාවිතා කරන්නන් හා සමාන නම්
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"සටහන: phpMyAdmin භාවිත කරන්නන්ගේ වරප්‍රසාද ලබාගනුයේ MySQL හි වරප්‍රසාද වගුවෙනි. "
"සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට "

253
po/sk.po
View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"PO-Revision-Date: 2011-07-13 10:06+0200\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-14 15:30+0200\n"
"Last-Translator: Martin Lacina <martin@whistler.sk>\n"
"Language-Team: slovak <sk@li.org>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sk\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.5\n"
@ -102,7 +102,7 @@ msgstr "Použiť túto hodnotu"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
#: libraries/blobstreaming.lib.php:326
msgid "No blob streaming server configured!"
msgstr "Nie je nastavený žiadny streamovacie server!"
msgstr "Nie je nastavený žiadny streamovací server!"
#: bs_disp_as_mime_type.php:35
msgid "Failed to fetch headers"
@ -119,7 +119,7 @@ msgid ""
"for more information."
msgstr ""
"Súbor %s nebol nájdený na tomto systéme, viac informácií nájdete na www."
"phpmyadmin.net."
"phpmyadmin.net stránke."
#: db_create.php:58
#, php-format
@ -625,8 +625,8 @@ msgstr "Sledovanie nie je aktívne."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s."
@ -865,8 +865,8 @@ msgstr "Výpis bol uložený do súboru %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si "
"prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť."
@ -1095,7 +1095,7 @@ msgstr "Ostatné"
#. l10n: Thousands separator
#: js/messages.php:74 libraries/common.lib.php:1316
msgid ","
msgstr "&nbsp;"
msgstr "."
#. l10n: Decimal separator
#: js/messages.php:76 libraries/common.lib.php:1318
@ -1745,12 +1745,12 @@ msgstr ""
#: libraries/StorageEngine.class.php:316
#, php-format
msgid "%s is available on this MySQL server."
msgstr "Úložný systém %s je dostupný na tomto MySQL serveri."
msgstr "%s je dostupný na tomto MySQL serveri."
#: libraries/StorageEngine.class.php:319
#, php-format
msgid "%s has been disabled for this MySQL server."
msgstr "Úložný systém %s bol zakázaný na tomto MySQL serveri."
msgstr "%s bol zakázaný na tomto MySQL serveri."
#: libraries/StorageEngine.class.php:323
#, php-format
@ -1777,7 +1777,7 @@ msgstr "Tabuľka %s bola premenovaná na %s"
#: libraries/Table.class.php:1274
msgid "Could not save table UI preferences"
msgstr ""
msgstr "Nepodarilo sa uložiť nastavenia tabuľky"
#: libraries/Theme.class.php:143
#, php-format
@ -1824,8 +1824,8 @@ msgstr "Vitajte v %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho "
"vytvorenie môžete použiť %1$skonfiguračný skript%2$s."
@ -1902,7 +1902,7 @@ msgstr "Zlé používateľské meno alebo heslo. Prístup zamietnutý."
#: libraries/auth/signon.auth.lib.php:87
msgid "Can not find signon authentication script:"
msgstr "Nepodarilo sa nájsť autorizačný skript pre prihlásenie."
msgstr "Nepodarilo sa nájsť autorizačný skript pre prihlásenie:"
#: libraries/auth/swekey/swekey.auth.lib.php:118
#, php-format
@ -2023,7 +2023,7 @@ msgstr ""
#: libraries/common.inc.php:596
#, php-format
msgid "Could not load default configuration from: %1$s"
msgstr "Nepodarilo sa načítať prednastavenú konfiguráciu zo súboru: \"%1$s\""
msgstr "Nepodarilo sa načítať prednastavenú konfiguráciu zo súboru: %1$s"
#: libraries/common.inc.php:601
msgid ""
@ -2222,10 +2222,8 @@ msgid "The %s functionality is affected by a known bug, see %s"
msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s"
#: libraries/common.lib.php:2447
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Kliknite pre vybranie"
msgstr "Kliknite pre prepnutie"
#: libraries/common.lib.php:2718 libraries/common.lib.php:2725
#: libraries/common.lib.php:2912 libraries/config/setup.forms.php:296
@ -2663,6 +2661,8 @@ msgid ""
"Disable the table maintenance mass operations, like optimizing or repairing "
"the selected tables of a database."
msgstr ""
"Vypnúť hromadné operácie pre údržbu tabuliek, ako je optimalizácia alebo "
"opravy vybraných tabuliek v databáze."
#: libraries/config/messages.inc.php:61
msgid "Disable multi table maintenance"
@ -2696,7 +2696,7 @@ msgstr "Chyby ikon"
msgid ""
"Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no "
"limit)"
msgstr "Nastavte dĺžku behu skriptu v sekundách (([kbd]0[/kbd] bez obmedzení)"
msgstr "Nastavte dĺžku behu skriptu v sekundách ([kbd]0[/kbd] bez obmedzení)"
#: libraries/config/messages.inc.php:69
msgid "Maximum execution time"
@ -2830,7 +2830,7 @@ msgstr "Uložiť na server"
#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117
#: libraries/display_export.lib.php:188 libraries/display_export.lib.php:214
msgid "Overwrite existing file(s)"
msgstr "Prepísať existujúci súbor(y)"
msgstr "Prepísať existujúce súbory"
#: libraries/config/messages.inc.php:118
msgid "Remember file name template"
@ -3589,7 +3589,7 @@ msgstr "Toto sú odkazy na Upraviť, Upraviť tu, Kopírovať a Odstrániť"
#: libraries/config/messages.inc.php:320
msgid "Where to show the table row links"
msgstr ""
msgstr "Kde zobraziť linky riadkov tabuľky"
#: libraries/config/messages.inc.php:321
msgid "Use natural order for sorting table and database names"
@ -3718,7 +3718,7 @@ msgstr "Prekódovací nástroj"
#: libraries/config/messages.inc.php:350
msgid "When browsing tables, the sorting of each table is remembered"
msgstr ""
msgstr "Pri prechádzaní tabuliek sa pre každú uloží nastavenie triedenia"
#: libraries/config/messages.inc.php:351
msgid "Remember table's sorting"
@ -3774,11 +3774,11 @@ msgstr "Povoliť prihlásenia užívateľa root"
#: libraries/config/messages.inc.php:365
msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
msgstr ""
msgstr "Názov pre zobrazenie pri použití HTTP autorizácie"
#: libraries/config/messages.inc.php:366
msgid "HTTP Realm"
msgstr ""
msgstr "HTTP Realm"
#: libraries/config/messages.inc.php:367
msgid ""
@ -3947,7 +3947,7 @@ msgid ""
"alphabetical order."
msgstr ""
"Môžete použiť nahradzujúce znaky (% a _). Pokiaľ ich potrebujete použiť v "
"ich pôvodnom význame, vložte spätné lomítko \\ pred, napríklad [kbd]'moja"
"ich pôvodnom význame, vložte spätné lomítko pred, napríklad [kbd]'moja"
"\\_db'[/kbd] namiesto [kbd]'moja_db'[/kbd]. Použitím tejto voľby môžete "
"ovplyvniť triedenie databáz v zozname. Stačí na konci zoznamu uviesť [kbd]*[/"
"kbd] na konci pre zobrazenie ostatných v abecednom poradí."
@ -4040,7 +4040,7 @@ msgid ""
"[/a] for an example"
msgstr ""
"Priklad, viď [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]typy "
"overovania/a]"
"overovania[/a]"
#: libraries/config/messages.inc.php:416
msgid "Signon session name"
@ -4095,6 +4095,8 @@ msgid ""
"Leave blank for no \"persistent\" tables'UI preferences across sessions, "
"suggested: [kbd]pma_table_uiprefs[/kbd]"
msgstr ""
"Nechajte prázdne pre vypnutie podpory \"trvalého\" ukladania nastavení, "
"navrhované: [kbd]pma_table_uiprefs[/kbd]"
#: libraries/config/messages.inc.php:427
msgid "UI preferences table"
@ -4225,6 +4227,10 @@ msgid ""
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
"Berte prosím na vedomie, že povolenie tejto voľby nemá žiadny vplyv na "
"prihlasovaciu metódu [kbd]config[/kbd], pretože heslo je uložené v "
"konfiguračnom súbore; toto nemá vplyv na možnosť vykonať rovnaký príkaz "
"priamo"
#: libraries/config/messages.inc.php:451
msgid "Show password change form"
@ -4239,6 +4245,7 @@ msgid ""
"Defines whether or not type display direction option is shown when browsing "
"a table"
msgstr ""
"Určuje, či sa má zobraziť voľba smeru vypisovania pri prechádzaní tabuľky"
#: libraries/config/messages.inc.php:454
msgid "Show display direction"
@ -4327,6 +4334,8 @@ msgstr "Zobraziť komentáre tabuľky vo vyskakovacom okne nápovedy"
msgid ""
"Mark used tables and make it possible to show databases with locked tables"
msgstr ""
"Označiť použité tabuľky a umožniť zobrazovanie databáz s uzamknutými "
"tabuľkami"
#: libraries/config/messages.inc.php:472
msgid "Skip locked tables"
@ -4376,6 +4385,8 @@ msgid ""
"Suggest a database name on the &quot;Create Database&quot; form (if "
"possible) or keep the text field empty"
msgstr ""
"Navrhnúť mano novej databázy vo formulári pre vytváranie databázy (pokiaľ je "
"to možné) alebo nechať prázdne pole"
#: libraries/config/messages.inc.php:485
msgid "Suggest new database name"
@ -4384,6 +4395,8 @@ msgstr "Navrhnúť meno novej databázy"
#: libraries/config/messages.inc.php:486
msgid "A warning is displayed on the main page if Suhosin is detected"
msgstr ""
"Na hlavnej stránke je zobrazené varovanie pokiaľ je detekované rozšírenie "
"Suhosin"
#: libraries/config/messages.inc.php:487
msgid "Suhosin warning"
@ -4394,6 +4407,8 @@ msgid ""
"Textarea size (columns) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
"Veľkosť editačného okna (počet stĺpcov). Táto hodnota bude zväčšená pre okná "
"SQL dopytov (*2) a pre dopytové okno (*1,25)"
#: libraries/config/messages.inc.php:489
msgid "Textarea columns"
@ -4404,6 +4419,8 @@ msgid ""
"Textarea size (rows) in edit mode, this value will be emphasized for SQL "
"query textareas (*2) and for query window (*1.25)"
msgstr ""
"Veľkosť editačného okna (počet riadkov). Táto hodnota bude zväčšená pre okná "
"SQL dopytov (*2) a pre dopytové okno (*1,25)"
#: libraries/config/messages.inc.php:491
msgid "Textarea rows"
@ -4439,7 +4456,7 @@ msgstr ""
#: libraries/config/messages.inc.php:501
msgid "List of trusted proxies for IP allow/deny"
msgstr ""
msgstr "Zoznam dôveryhodných proxy pre povolenie/zakázanie IP adresy"
#: libraries/config/messages.inc.php:502
msgid "Directory on server where you can upload files for import"
@ -4462,6 +4479,8 @@ msgid ""
"When disabled, users cannot set any of the options below, regardless of the "
"checkbox on the right"
msgstr ""
"Pokiaľ je vypnuté, užívatelia nemôžu zmeniť žiadne z nižšie uvedených "
"nastavení, bez ohľadu na zaškrtávacie pole vpravo"
#: libraries/config/messages.inc.php:507
msgid "Enable the Developer tab in settings"
@ -4519,8 +4538,9 @@ msgid "HTTP authentication"
msgstr "HTTP overovanie"
#: libraries/config/setup.forms.php:51
#, fuzzy
msgid "Signon authentication"
msgstr ""
msgstr "Signon authentication"
#: libraries/config/setup.forms.php:245
#: libraries/config/user_preferences.forms.php:147 libraries/import/ldi.php:35
@ -4587,6 +4607,7 @@ msgstr "Nepodarilo sa pripojiť k MySQL serveru"
#: libraries/config/validate.lib.php:228
msgid "Empty username while using config authentication method"
msgstr ""
"Pri použití nastavenej autorizačnej metódy nebolo vyplnené užívateľské meno"
#: libraries/config/validate.lib.php:232
msgid "Empty signon session name while using signon authentication method"
@ -4646,7 +4667,7 @@ msgstr "Oprávnenia"
#: libraries/db_links.inc.php:97 libraries/rte/rte_routines.lib.php:50
msgid "Routines"
msgstr ""
msgstr "Rutiny"
#: libraries/db_links.inc.php:101 libraries/export/sql.php:609
#: libraries/rte/rte_events.lib.php:65
@ -4657,7 +4678,7 @@ msgstr "Udalosti"
#: libraries/export/xml.php:38 libraries/rte/rte_triggers.lib.php:46
#: libraries/tbl_links.inc.php:103
msgid "Triggers"
msgstr ""
msgstr "Spúšťače"
#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2084
msgid ""
@ -4757,7 +4778,7 @@ msgstr "Exportujem tabuľky z databázy \"%s\""
#: libraries/display_export.lib.php:84
#, php-format
msgid "Exporting rows from \"%s\" table"
msgstr "Exportujem riadky z tabuľky \"%s\""
msgstr "Exportujem riadky z tabuľky \"%s\""
#: libraries/display_export.lib.php:90
msgid "Export Method:"
@ -4769,7 +4790,7 @@ msgstr ""
#: libraries/display_export.lib.php:122
msgid "Custom - display all possible options"
msgstr ""
msgstr "Vlastné - zobrazí všetky voľby nastavení"
#: libraries/display_export.lib.php:130
msgid "Database(s):"
@ -4797,7 +4818,7 @@ msgstr "Začať od riadku:"
#: libraries/display_export.lib.php:166
msgid "Dump all rows"
msgstr ""
msgstr "Vypísať všetky riadky"
#: libraries/display_export.lib.php:174 libraries/display_export.lib.php:195
msgid "Output:"
@ -4818,22 +4839,22 @@ msgstr "Šablóna pre názov súboru:"
#: libraries/display_export.lib.php:222
msgid "@SERVER@ will become the server name"
msgstr ""
msgstr "Meno servera bude zmenené na @SERVER@"
#: libraries/display_export.lib.php:224
msgid ", @DATABASE@ will become the database name"
msgstr ""
msgstr ", meno databázy bude zmenené na @DATABASE@"
#: libraries/display_export.lib.php:226
msgid ", @TABLE@ will become the table name"
msgstr ""
msgstr ", meno tabuľky bude zmenené na @TABLE@"
#: libraries/display_export.lib.php:230
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Táto hodnota je interpretovaná pomocou %1$sstrftime%2$s, takže môžete použiť "
"reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto "
@ -4889,6 +4910,8 @@ msgid ""
"Scroll down to fill in the options for the selected format and ignore the "
"options for other formats."
msgstr ""
"Posuňte sa nižšie pre nastavenie vybraného formátu a ignorujte nastavenia "
"ostatných."
#: libraries/display_export.lib.php:340 libraries/display_import.lib.php:260
msgid "Encoding Conversion:"
@ -4913,6 +4936,8 @@ msgid ""
"Please be patient, the file is being uploaded. Details about the upload are "
"not available."
msgstr ""
"Súbor sa načítava, buďte prosím trpezliví. Podrobnosti o nahrávaní nie sú "
"dostupné."
#: libraries/display_import.lib.php:129
msgid "Importing into the current server"
@ -4942,6 +4967,8 @@ msgid ""
"A compressed file's name must end in <b>.[format].[compression]</b>. "
"Example: <b>.sql.zip</b>"
msgstr ""
"Meno komprimovaného súboru musí končiť na <b>.[formát].[kompresia]</b>. "
"Napríklad: <b>.sql.zip</b>"
#: libraries/display_import.lib.php:178
msgid "File uploads are not allowed on this server."
@ -4983,28 +5010,24 @@ msgid "Language"
msgstr "Jazyk"
#: libraries/display_tbl.lib.php:397
#, fuzzy
#| msgid "Textarea columns"
msgid "Restore column order"
msgstr "Stĺpce s textovou oblasťou"
msgstr "Obnoviť poradie stĺpcov"
#: libraries/display_tbl.lib.php:417
msgid "Drag to reorder"
msgstr ""
msgstr "Usporiadajte pretiahnutím"
#: libraries/display_tbl.lib.php:418
#, fuzzy
#| msgid "Click to select"
msgid "Click to sort"
msgstr "Kliknite pre vybranie"
msgstr "Kliknite pre zoradenie"
#: libraries/display_tbl.lib.php:419
msgid "Click to mark/unmark"
msgstr ""
msgstr "Kliknite pre označenie/odznačenie"
#: libraries/display_tbl.lib.php:420
msgid "Click the drop-down arrow<br />to toggle column's visibility"
msgstr ""
msgstr "Kliknite na šípku<br />pre zmenu viditeľnosti stĺpca"
#: libraries/display_tbl.lib.php:431
#, php-format
@ -5018,10 +5041,8 @@ msgid "Start row"
msgstr "Štart"
#: libraries/display_tbl.lib.php:438
#, fuzzy
#| msgid "Number of rows:"
msgid "Number of rows"
msgstr "Počet riadkov:"
msgstr "Počet riadkov"
#: libraries/display_tbl.lib.php:443
#, fuzzy
@ -5044,7 +5065,7 @@ msgstr "vertikálnom"
#: libraries/display_tbl.lib.php:452
#, php-format
msgid "Headers every %s rows"
msgstr ""
msgstr "Opakovať hlavičku každých %s riadkov"
#: libraries/display_tbl.lib.php:546
msgid "Sort by key"
@ -5078,9 +5099,8 @@ msgid "Full texts"
msgstr "Plné texty"
#: libraries/display_tbl.lib.php:625
#, fuzzy
msgid "Relational key"
msgstr "Relačná schéma"
msgstr "Relačný kľúč"
#: libraries/display_tbl.lib.php:626
msgid "Relational display column"
@ -5088,11 +5108,11 @@ msgstr "Relačné zobrazenie stĺpcov"
#: libraries/display_tbl.lib.php:633
msgid "Show binary contents"
msgstr ""
msgstr "Zobraziť binárny obsah"
#: libraries/display_tbl.lib.php:635
msgid "Show BLOB contents"
msgstr ""
msgstr "Zobraziť obsah BLOBu"
#: libraries/display_tbl.lib.php:645 libraries/relation.lib.php:112
#: libraries/tbl_properties.inc.php:146 transformation_overview.php:46
@ -5101,19 +5121,19 @@ msgstr "Transformácia pri prehliadaní"
#: libraries/display_tbl.lib.php:650
msgid "Geometry"
msgstr ""
msgstr "Geometria"
#: libraries/display_tbl.lib.php:651
msgid "Well Known Text"
msgstr ""
msgstr "Text (Well Known Text)"
#: libraries/display_tbl.lib.php:652
msgid "Well Known Binary"
msgstr ""
msgstr "Well Known Binary"
#: libraries/display_tbl.lib.php:1303
msgid "Copy"
msgstr ""
msgstr "Kopírovať"
#: libraries/display_tbl.lib.php:1318 libraries/display_tbl.lib.php:1330
msgid "The row has been deleted"
@ -5155,7 +5175,7 @@ msgstr "Zobraziť graf"
#: libraries/display_tbl.lib.php:2509
msgid "Visualize GIS data"
msgstr ""
msgstr "Zobraziť GIS data"
#: libraries/display_tbl.lib.php:2529
#, fuzzy
@ -5352,11 +5372,12 @@ msgstr ""
#: libraries/engines/pbms.lib.php:30
msgid "Garbage Threshold"
msgstr ""
msgstr "Hranica odpadu"
#: libraries/engines/pbms.lib.php:31
msgid "The percentage of garbage in a repository file before it is compacted."
msgstr ""
"Percentuílny podiel odpadu v úložnom súbore predtým, než je súbor zhustený."
#: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:69
#: server_synchronize.php:1174
@ -5371,7 +5392,7 @@ msgstr ""
#: libraries/engines/pbms.lib.php:40
msgid "Repository Threshold"
msgstr ""
msgstr "Hranica veľkosti úložiska"
#: libraries/engines/pbms.lib.php:41
msgid ""
@ -5566,8 +5587,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -6440,7 +6461,7 @@ msgstr "Udalosť"
#, fuzzy
#| msgid "You don't have sufficient privileges to be here right now!"
msgid "You do not have the necessary privileges to create an event"
msgstr "Nemáte dostatočné práva na vykonanie tejto akcie!"
msgstr "Nemáte dostatočné práva na vytvorenie novej udalosti"
#: libraries/rte/rte_events.lib.php:63
#, fuzzy, php-format
@ -6449,10 +6470,8 @@ msgid "No event with name %1$s found in database %2$s"
msgstr "V databáze %2$s nebola nájdená udalosť s menom %1$s"
#: libraries/rte/rte_events.lib.php:64
#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no events to display."
msgstr "Žiadny súbor pre nahrávanie"
msgstr "Nie sú žiadne udalosti na zobrazenie."
#: libraries/rte/rte_events.lib.php:126 libraries/rte/rte_events.lib.php:131
#: libraries/rte/rte_events.lib.php:154 libraries/rte/rte_routines.lib.php:279
@ -6513,10 +6532,8 @@ msgstr "Chyba pri spracovaní požiadavky"
#: libraries/rte/rte_events.lib.php:395 libraries/rte/rte_routines.lib.php:877
#: libraries/rte/rte_triggers.lib.php:322
#, fuzzy
#| msgid "Details..."
msgid "Details"
msgstr "Podrobnosti..."
msgstr "Podrobnosti"
#: libraries/rte/rte_events.lib.php:398
#, fuzzy
@ -6648,7 +6665,7 @@ msgstr "Pridať index"
#, fuzzy
#| msgid "You don't have sufficient privileges to be here right now!"
msgid "You do not have the necessary privileges to create a routine"
msgstr "Nemáte dostatočné práva na vykonanie tejto akcie!"
msgstr "Nemáte dostatočné práva na vytvorenie novej rutiny"
#: libraries/rte/rte_routines.lib.php:48
#, php-format
@ -6656,10 +6673,8 @@ msgid "No routine with name %1$s found in database %2$s"
msgstr "V databáze %2$s nebola nájdená žiadneatrutina s menom %1$s"
#: libraries/rte/rte_routines.lib.php:49
#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no routines to display."
msgstr "Žiadny súbor pre nahrávanie"
msgstr "Neboli nájdené žiadne rutiny."
#: libraries/rte/rte_routines.lib.php:88
msgid ""
@ -6667,9 +6682,9 @@ msgid ""
"handling multi queries. <b>The execution of some stored routines may fail!</"
"b> Please use the improved 'mysqli' extension to avoid any problems."
msgstr ""
"Používate zastaralé \"mysql\" rozšírenie PHP, ktoré nedokáže pracovať so "
"Používate zastaralé 'mysql' rozšírenie PHP, ktoré nedokáže pracovať so "
"zloženými dopytmi. <b>Vykonanie niektorých uložených rutín môže zlyhať!</b> "
"Aby ste sa vyhli týmto problémom, použite prosím nové rozšírenie \"mysqli\"."
"Aby ste sa vyhli týmto problémom, použite prosím nové rozšírenie 'mysqli'."
#: libraries/rte/rte_routines.lib.php:272
#: libraries/rte/rte_routines.lib.php:1052
@ -6835,7 +6850,7 @@ msgstr "Pridať nového používateľa"
#, fuzzy
#| msgid "You don't have sufficient privileges to be here right now!"
msgid "You do not have the necessary privileges to create a trigger"
msgstr "Nemáte dostatočné práva na vykonanie tejto akcie!"
msgstr "Nemáte dostatočné práva na vytvorenie nového spúšťača"
#: libraries/rte/rte_triggers.lib.php:44
#, fuzzy, php-format
@ -6844,10 +6859,8 @@ msgid "No trigger with name %1$s found in database %2$s"
msgstr "V databáze %2$s nebola nájdená žiadneatrutina s menom %1$s"
#: libraries/rte/rte_triggers.lib.php:45
#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no triggers to display."
msgstr "Žiadny súbor pre nahrávanie"
msgstr "Neboli nájdené žiadne spúšťače."
#: libraries/rte/rte_triggers.lib.php:113
#, fuzzy
@ -6912,7 +6925,7 @@ msgstr ""
#: libraries/schema/Visio_Relation_Schema.class.php:210
#, php-format
msgid "The %s table doesn't exist!"
msgstr "Tabuľka \"%s\" neexistuje!"
msgstr "Tabuľka %s neexistuje!"
#: libraries/schema/Dia_Relation_Schema.class.php:248
#: libraries/schema/Eps_Relation_Schema.class.php:436
@ -6929,7 +6942,7 @@ msgstr "Prosím skonfigurujte koordináty pre tabuľku %s"
#: libraries/schema/Visio_Relation_Schema.class.php:497
#, php-format
msgid "Schema of the %s database - Page %s"
msgstr "Schéma databázy \"%s\" - Strana %s"
msgstr "Schéma databázy %s - Strana %s"
#: libraries/schema/Export_Relation_Schema.class.php:170
msgid "This page does not contain any tables!"
@ -7237,8 +7250,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú "
"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %"
"sdocumentation%s."
"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v "
"%sdocumentation%s."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@ -7389,7 +7402,7 @@ msgstr ""
#: libraries/transformations/image_jpeg__link.inc.php:9
msgid "Displays a link to download this image."
msgstr "Zobrazí odkaz na obrázok (napr. stiahnutie poľa blob)."
msgstr "Zobrazí odkaz pre stiahnutie tohto obrázka."
#: libraries/transformations/text_plain__dateformat.inc.php:9
msgid ""
@ -7474,7 +7487,7 @@ msgstr ""
"Zobrazí iba časť reťazca. Prvý parameter je posun od začiatku (predvolený je "
"0) a druhý určuje dĺžku textu, ktorá sa ma zobraziť, ak nie je zadaný bude "
"zobrazený zvyšok textu. Tretí parameter určuje znaky, ktoré budú pridané na "
"koniec skráteného textu (predvolené je ...)."
"koniec skráteného textu (predvolené je \"...\")."
#: libraries/user_preferences.inc.php:32
msgid "Manage your settings"
@ -7932,8 +7945,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím %"
"sNastavovacieho skriptu%s."
"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím "
"%sNastavovacieho skriptu%s."
#: prefs_manage.php:302
msgid "Save to browser's storage"
@ -8373,13 +8386,13 @@ msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Poznámka: phpMyAdmin získava práva používateľov priamo z tabuliek MySQL. "
"Obsah týchto tabuliek sa môže líšiť od práv, ktoré používa server, ak boli "
"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať %"
"sznovunačítanie práv%s predtým ako budete pokračovať."
"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať "
"%sznovunačítanie práv%s predtým ako budete pokračovať."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
@ -8473,10 +8486,8 @@ msgid "wildcard"
msgstr "nahradzujúci znak"
#: server_privileges.php:2295
#, fuzzy
#| msgid "View %s has been dropped"
msgid "User has been added."
msgstr "Pohľad %s bol odstránený"
msgstr "Užívateľ bol pridaný."
#: server_replication.php:49
msgid "Unknown error"
@ -8752,16 +8763,12 @@ msgid "All status variables"
msgstr ""
#: server_status.php:413 server_status.php:439
#, fuzzy
#| msgid "Refresh"
msgid "Refresh rate:"
msgstr "Obnov"
msgstr "Obnovovacia frekvencia:"
#: server_status.php:462
#, fuzzy
#| msgid "Do not change the password"
msgid "Containing the word:"
msgstr "Nezmeniť heslo"
msgstr "Obsahujúca slovo:"
#: server_status.php:467
#, fuzzy
@ -8774,10 +8781,8 @@ msgid "Filter by category..."
msgstr ""
#: server_status.php:484
#, fuzzy
#| msgid "Related Links"
msgid "Related links:"
msgstr "Súvisiace odkazy"
msgstr "Súvisiace odkazy:"
#: server_status.php:528 server_status.php:563 server_status.php:676
#: server_status.php:721
@ -8836,7 +8841,7 @@ msgid ""
"the <a href=\"#replication\">replication section</a>."
msgstr ""
"Pre viac informácií o stave replikácie na tomto serveri navštívte prosím <a "
"href=#replication>sekciu replikácie</a>."
"href=\"#replication\">sekciu replikácie</a>."
#: server_status.php:659
msgid "Replication status"
@ -8883,10 +8888,8 @@ msgid "ID"
msgstr "ID"
#: server_status.php:856
#, fuzzy
#| msgid "Could not connect to MySQL server"
msgid "The number of failed attempts to connect to the MySQL server."
msgstr "Nepodarilo sa pripojiť k MySQL serveru"
msgstr "Počet neúspešných pokusov o pripojenie k MySQL serveru."
#: server_status.php:857
msgid ""
@ -9041,11 +9044,11 @@ msgstr "Počet interných príkazov ROLLBACK."
#: server_status.php:877
msgid "The number of requests to update a row in a table."
msgstr "Počet požiadavkov na zmenu záznamu (riadku) v tabuľke."
msgstr "Počet požiadavkov na zmenu riadku v tabuľke."
#: server_status.php:878
msgid "The number of requests to insert a row in a table."
msgstr "Počet požiadavkov na vloženie nového záznamu (riadku) do tabuľky."
msgstr "Počet požiadavkov na vloženie nového riadku do tabuľky."
#: server_status.php:879
msgid "The number of pages containing data (dirty or clean)."
@ -9251,19 +9254,19 @@ msgstr "Koľkokrát sa muselo čakať na zámok na riadok."
#: server_status.php:918
msgid "The number of rows deleted from InnoDB tables."
msgstr "Počet záznamov (riadkov) odstránených z InnoDB tabuliek."
msgstr "Počet riadkov odstránených z InnoDB tabuliek."
#: server_status.php:919
msgid "The number of rows inserted in InnoDB tables."
msgstr "Počet záznamov (riadkov) vložených do InnoDB tabuliek."
msgstr "Počet riadkov vložených do InnoDB tabuliek."
#: server_status.php:920
msgid "The number of rows read from InnoDB tables."
msgstr "Počet načítaných záznamov (riadkov) z InnoDB tabuliek."
msgstr "Počet načítaných riadkov z InnoDB tabuliek."
#: server_status.php:921
msgid "The number of rows updated in InnoDB tables."
msgstr "Počet upravených záznamov (riadkov) v InnoDB tabuľkách."
msgstr "Počet upravených riadkov v InnoDB tabuľkách."
#: server_status.php:922
msgid ""
@ -9538,7 +9541,7 @@ msgstr ""
#: server_status.php:964
msgid "The number of threads that are not sleeping."
msgstr "Počet aktívnych (nespiacich) vlákien."
msgstr "Počet nespiacich vlákien."
#: server_synchronize.php:92
msgid "Could not connect to the source"
@ -10065,20 +10068,16 @@ msgid "Stacked"
msgstr ""
#: tbl_chart.php:94
#, fuzzy
#| msgid "Report title:"
msgid "Chart title"
msgstr "Názov výpisu:"
msgstr "Názov grafu"
#: tbl_chart.php:99
msgid "X-Axis:"
msgstr ""
#: tbl_chart.php:113
#, fuzzy
#| msgid "SQL queries"
msgid "Series:"
msgstr "SQL dopyty"
msgstr "Série:"
#: tbl_chart.php:115
#, fuzzy
@ -10172,7 +10171,7 @@ msgstr "Názov tabuľky"
#: tbl_indexes.php:66
msgid "The name of the primary key must be \"PRIMARY\"!"
msgstr "Názov primárneho kľúča musí byť... PRIMARY!"
msgstr "Názov primárneho kľúča musí byť \"PRIMARY\"!"
#: tbl_indexes.php:75
msgid "Can't rename index to PRIMARY!"
@ -10895,8 +10894,8 @@ msgstr "Premenovať pohľad na"
#~ msgid "Imported file compression will be automatically detected from: %s"
#~ msgstr ""
#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: %"
#~ "s"
#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: "
#~ "%s"
#~ msgid "Add into comments"
#~ msgstr "Pridať do komentárov"

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-11 21:13+0200\n"
"Last-Translator: Domen <dbc334@gmail.com>\n"
"Language-Team: slovenian <sl@li.org>\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sl\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3);\n"
"X-Generator: Pootle 2.0.5\n"
@ -628,8 +628,8 @@ msgstr "Sledenje ni aktivno."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -867,8 +867,8 @@ msgstr "Dump je shranjen v datoteko %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si "
"%sdokumentacijo%s za načine, kako obiti to omejitev."
@ -1826,8 +1826,8 @@ msgstr "Dobrodošli v %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite "
"uporabiti %1$snastavitveni skript%2$s, da jo ustvarite."
@ -4868,8 +4868,8 @@ msgstr ", @TABLE@ bo postalo ime tabele"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Vrednost je prevedena z uporabo %1$sstrftime%2$s, tako da lahko uporabljate "
"nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. "
@ -5640,8 +5640,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači "
"strani PrimeBase XT%s."
@ -8512,8 +8512,8 @@ msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Obvestilo: phpMyAdmin dobi podatke o uporabnikovih privilegijih iz tabel "
"privilegijev MySQL. Vsebina teh tabel se lahko razlikuje od privilegijev, ki "

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-07-21 14:51+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: albanian <sq@li.org>\n"
"Language: sq\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sq\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@ -646,8 +646,8 @@ msgstr "Gjurmimi nuk është aktiv."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -896,8 +896,8 @@ msgstr "Dump u ruajt tek file %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1940,8 +1940,8 @@ msgstr "Mirësevini tek %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@ -4931,8 +4931,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5665,8 +5665,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8594,8 +8594,8 @@ msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Shënim: phpMyAdmin lexon të drejtat e përdoruesve direkt nga tabela e "
"privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë prej të "
@ -10905,8 +10905,8 @@ msgstr "Riemërto tabelën në"
#~ "<b>Query statistics</b>: Since its startup, %s queries have been sent to "
#~ "the server."
#~ msgstr ""
#~ "<b>Statistikat e Query</b>: Që nga nisja e tij, serverit i janë dërguar %"
#~ "s queries."
#~ "<b>Statistikat e Query</b>: Që nga nisja e tij, serverit i janë dërguar "
#~ "%s queries."
#, fuzzy
#~| msgid "The privileges were reloaded successfully."

View File

@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-04-06 18:43+0200\n"
"Last-Translator: <theranchcowboy@googlemail.com>\n"
"Language-Team: serbian_cyrillic <sr@li.org>\n"
"Language: sr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sr\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@ -643,8 +643,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -895,11 +895,11 @@ msgstr "Садржај базе је сачуван у датотеку %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %"
"sдокументацију%s за начине превазилажења овог ограничења."
"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте "
"%окументацију%s за начине превазилажења овог ограничења."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1960,8 +1960,8 @@ msgstr "Добродошли на %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Вероватан разлог за ово је да нисте направили конфигурациону датотеку. "
"Можете користити %1$sскрипт за инсталацију%2$s да бисте је направили."
@ -4998,8 +4998,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да "
"користите стрингове за форматирање времена. Такође ће се десити и следеће "
@ -5766,8 +5766,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8735,8 +8735,8 @@ msgstr "Одбаци базе које се зову исто као корис
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Напомена: phpMyAdmin узима привилегије корисника директно из MySQL табела "
"привилегија. Садржај ове табеле може се разликовати од привилегија које "

View File

@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-12-02 14:49+0200\n"
"Last-Translator: Sasa Kostic <sasha.kostic@gmail.com>\n"
"Language-Team: serbian_latin <sr@latin@li.org>\n"
"Language: sr@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sr@latin\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@ -637,8 +637,8 @@ msgstr "Praćenje nije aktivno."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -889,11 +889,11 @@ msgstr "Sadržaj baze je sačuvan u datoteku %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %"
"sdokumentaciju%s za načine prevazilaženja ovog ograničenja."
"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte "
"%sdokumentaciju%s za načine prevazilaženja ovog ograničenja."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1954,8 +1954,8 @@ msgstr "Dobrodošli na %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. "
"Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili."
@ -4991,8 +4991,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ova vrednost se tumači korišćenjem %1$sstrftime%2$s, tako da možete da "
"koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće "
@ -5760,8 +5760,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8725,8 +8725,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela "
"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje "

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-07 21:24+0200\n"
"Last-Translator: <stefan@inkopsforum.se>\n"
"Language-Team: swedish <sv@li.org>\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -621,8 +621,8 @@ msgstr "Spårning är inte aktiv."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -860,8 +860,8 @@ msgstr "SQL-satserna har sparats till filen %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s "
"för att gå runt denna begränsning."
@ -1812,11 +1812,11 @@ msgstr "Välkommen till %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda %1"
"$suppsättningsskript%2$s för att skapa denna."
"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda "
"%1$suppsättningsskript%2$s för att skapa denna."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@ -4845,8 +4845,8 @@ msgstr ", @TABLE@ blir tabellnamnet"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Detta värde tolkas med %1$sstrftime%2$s, så du kan använda strängar med "
"tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig "
@ -5611,11 +5611,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page%"
"s."
"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page"
"%s."
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@ -7769,8 +7769,8 @@ msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %"
"s. Detta kan orsaka oförutsägbara beteenden."
"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version "
"%s. Detta kan orsaka oförutsägbara beteenden."
#: main.php:341
#, php-format
@ -8477,8 +8477,8 @@ msgstr "Ta bort databaserna med samma namn som användarna."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Anm: phpMyAdmin hämtar användarnas privilegier direkt från MySQL:s "
"privilegiumtabeller. Innehållet i dessa tabeller kan skilja sig från "
@ -10019,8 +10019,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - %"
"shost autentisering%s inställningarna och %strusted proxies listan%s. Dock "
"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - "
"%shost autentisering%s inställningarna och %strusted proxies listan%s. Dock "
"kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP där "
"tusentals användare, inklusive dig, är anslutna till"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan <sutharshan02@gmail.com>\n"
"Language-Team: Tamil <ta@li.org>\n"
"Language: ta\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ta\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@ -622,8 +622,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -861,8 +861,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1838,8 +1838,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"நீங்கள் அமைப்பு கோப்பை உருவாக்கவில்லை. அதை உருவாக்க நீங்கள் %1$s உருவாக்க கோவையை %2$s "
"பயன்படுத்தலாம்"
@ -4698,8 +4698,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5395,8 +5395,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8049,8 +8049,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-04-07 17:06+0200\n"
"Last-Translator: <veeven@gmail.com>\n"
"Language-Team: Telugu <te@li.org>\n"
"Language: te\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: te\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -632,8 +632,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
# మొదటి అనువాదము
@ -875,8 +875,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1849,8 +1849,8 @@ msgstr "%sకి స్వాగతం"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@ -4739,8 +4739,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5445,8 +5445,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8188,8 +8188,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: thai <th@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@ -632,8 +632,8 @@ msgstr "หยุดการติดตามแล้ว"
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -874,8 +874,8 @@ msgstr ""
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1914,8 +1914,8 @@ msgstr "%s ยินดีต้อนรับ"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@ -4896,8 +4896,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5631,8 +5631,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8483,8 +8483,8 @@ msgstr "โยนฐานข้อมูลที่มีชื่อเดี
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
@ -10809,8 +10809,8 @@ msgstr "เปลี่ยนชื่อตารางเป็น"
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%"
#~ "s"
#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere"
#~ "%s"
#~ msgid "No tables"
#~ msgstr "ไม่มีตาราง"

219
po/tr.po
View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"PO-Revision-Date: 2011-07-07 19:23+0200\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-16 12:12+0200\n"
"Last-Translator: Burak Yavuz <hitowerdigit@hotmail.com>\n"
"Language-Team: turkish <tr@li.org>\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: tr\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
@ -619,8 +619,8 @@ msgstr "İzleme aktif değil."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın."
@ -859,8 +859,8 @@ msgstr "Döküm, %s dosyasına kaydedildi."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu "
"bulmak için %sbelgeden%s yararlanın."
@ -1330,8 +1330,8 @@ msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm %"
"s, %s tarihinde yayınlandı."
"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm "
"%s, %s tarihinde yayınlandı."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:167
@ -1811,8 +1811,8 @@ msgstr "%s'e Hoş Geldiniz"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir "
"tane oluşturmak için %1$skur programcığı%2$s kullanmak isteyebilirsiniz."
@ -2215,10 +2215,8 @@ msgid "The %s functionality is affected by a known bug, see %s"
msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakınız %s"
#: libraries/common.lib.php:2447
#, fuzzy
#| msgid "Click to select"
msgid "Click to toggle"
msgstr "Seçmek için tıklayın"
msgstr "Değiştirmek için tıklayın"
#: libraries/common.lib.php:2718 libraries/common.lib.php:2725
#: libraries/common.lib.php:2912 libraries/config/setup.forms.php:296
@ -4877,8 +4875,8 @@ msgstr ", @TABLE@ tablo adı olacaktır"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman "
"biçimlendirme dizgisi kullanabilirsiniz. İlave olarak aşağıdaki dönüşümler "
@ -5652,8 +5650,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
"%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belge ve daha fazla bilgi "
"bulunabilir."
@ -6542,10 +6540,8 @@ msgid "Generate Password"
msgstr "Parola Üret"
#: libraries/rte/rte_events.lib.php:58
#, fuzzy
#| msgid "Add an event"
msgid "Add event"
msgstr "Bir olay ekle"
msgstr "Olay ekle"
#: libraries/rte/rte_events.lib.php:60
#, php-format
@ -6553,22 +6549,18 @@ msgid "Export of event %s"
msgstr "%s olayını dışa aktarma"
#: libraries/rte/rte_events.lib.php:61
#, fuzzy
#| msgid "Event"
msgid "event"
msgstr "Olay"
msgstr "olay"
#: libraries/rte/rte_events.lib.php:62
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create an event"
msgstr "Yeni bir yordam oluşturmak için gerekli izinlere sahip değilsiniz"
msgstr "Bir olay oluşturmak için gerekli izinlere sahip değilsiniz"
#: libraries/rte/rte_events.lib.php:63
#, fuzzy, php-format
#| msgid "No event with name %s found in database %s"
#, php-format
msgid "No event with name %1$s found in database %2$s"
msgstr "%s veritabanında %s adıyla olay bulunamadı"
msgstr "%2$s veritabanında %1$s adıyla olay bulunamadı"
#: libraries/rte/rte_events.lib.php:64
msgid "There are no events to display."
@ -6587,10 +6579,8 @@ msgid "The following query has failed: \"%s\""
msgstr "Aşağıdaki sorgu başarısız oldu: \"%s\""
#: libraries/rte/rte_events.lib.php:140
#, fuzzy
#| msgid "Sorry, we failed to restore the dropped routine."
msgid "Sorry, we failed to restore the dropped event."
msgstr "Üzgünüm, kaldırılmış yordamı geri yükleme başarısız oldu."
msgstr "Üzgünüm, kaldırılmış olayı geri yükleme başarısız oldu."
#: libraries/rte/rte_events.lib.php:141 libraries/rte/rte_routines.lib.php:294
#: libraries/rte/rte_triggers.lib.php:114
@ -6598,16 +6588,14 @@ msgid "The backed up query was:"
msgstr "Yedeklenmiş sorgu:"
#: libraries/rte/rte_events.lib.php:145
#, fuzzy, php-format
#| msgid "Routine %1$s has been modified."
#, php-format
msgid "Event %1$s has been modified."
msgstr "Yordam %1$s değiştirildi."
msgstr "Olay %1$s değiştirildi."
#: libraries/rte/rte_events.lib.php:157
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
#, php-format
msgid "Event %1$s has been created."
msgstr "Tablo %1$s oluşturuldu."
msgstr "Olay %1$s oluşturuldu."
#: libraries/rte/rte_events.lib.php:165 libraries/rte/rte_routines.lib.php:319
#: libraries/rte/rte_triggers.lib.php:138
@ -6615,16 +6603,12 @@ msgid "<b>One or more errors have occured while processing your request:</b>"
msgstr "<b>İsteğiniz işlenirken bir ya da daha fazla hata meydana geldi:</b>"
#: libraries/rte/rte_events.lib.php:205
#, fuzzy
#| msgid "Create view"
msgid "Create event"
msgstr "Görünüm oluştur"
msgstr "Olay oluştur"
#: libraries/rte/rte_events.lib.php:209
#, fuzzy
#| msgid "Edit server"
msgid "Edit event"
msgstr "Sunucuyu düzenle"
msgstr "Olay düzenle"
#: libraries/rte/rte_events.lib.php:236 libraries/rte/rte_routines.lib.php:395
#: libraries/rte/rte_routines.lib.php:1331
@ -6639,10 +6623,8 @@ msgid "Details"
msgstr "Ayrıntılar"
#: libraries/rte/rte_events.lib.php:398
#, fuzzy
#| msgid "Event type"
msgid "Event name"
msgstr "Olay türü"
msgstr "Olay adı"
#: libraries/rte/rte_events.lib.php:419 server_binlog.php:182
msgid "Event type"
@ -6654,22 +6636,16 @@ msgid "Change to %s"
msgstr "%s'a değiştir"
#: libraries/rte/rte_events.lib.php:446
#, fuzzy
#| msgid "Execute"
msgid "Execute at"
msgstr "Çalıştır"
#: libraries/rte/rte_events.lib.php:454
#, fuzzy
#| msgid "Execute"
msgid "Execute every"
msgstr "Çalıştır"
msgstr "Çalıştır; her"
#: libraries/rte/rte_events.lib.php:473
#, fuzzy
#| msgid "Startup"
msgid "Start"
msgstr "Başlangıç"
msgstr "Başlama"
#: libraries/rte/rte_events.lib.php:489 libraries/rte/rte_routines.lib.php:972
#: libraries/rte/rte_triggers.lib.php:372
@ -6677,10 +6653,8 @@ msgid "Definition"
msgstr "Tanım"
#: libraries/rte/rte_events.lib.php:495
#, fuzzy
#| msgid "complete inserts"
msgid "On completion preserve"
msgstr "tam eklemeler"
msgstr "Tamamlamada koruma"
#: libraries/rte/rte_events.lib.php:499 libraries/rte/rte_routines.lib.php:982
#: libraries/rte/rte_triggers.lib.php:378
@ -6691,61 +6665,47 @@ msgstr "Tanımlayıcı"
#: libraries/rte/rte_routines.lib.php:1044
#: libraries/rte/rte_triggers.lib.php:416
msgid "The definer must be in the \"username@hostname\" format"
msgstr ""
msgstr "Tanımlayıcı \"kullanıcıadı@anamakineadı\" biçiminde olmak zorundadır"
#: libraries/rte/rte_events.lib.php:549
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide an event name"
msgstr "Bir yordam adı vermek zorundasınız"
msgstr "Bir olay adı vermek zorundasınız"
#: libraries/rte/rte_events.lib.php:561
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid interval value for the event."
msgstr "Her yordam parametresi için bir ad ve bir tür sağlamalısınız."
msgstr "Her olay için geçerli aralık değeri vermek zorundasınız."
#: libraries/rte/rte_events.lib.php:573
#, fuzzy
#| msgid "You must provide a routine definition."
msgid "You must provide a valid execution time for the event."
msgstr "Bir yordam tanımı sağlamalısınız."
msgstr "Olay için geçerli bir çalıştırma zamanı vermek zorundasınız."
#: libraries/rte/rte_events.lib.php:577
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid type for the event."
msgstr "Her yordam parametresi için bir ad ve bir tür sağlamalısınız."
msgstr "Olay için geçerli bir tür vermek zorundasınız."
#: libraries/rte/rte_events.lib.php:596
#, fuzzy
#| msgid "You must provide a routine definition."
msgid "You must provide an event definition."
msgstr "Bir yordam tanımı sağlamalısınız."
msgstr "Bir olay tanımı vermek zorundasınız."
#: libraries/rte/rte_footer.lib.php:29
msgid "New"
msgstr ""
msgstr "Yeni"
#: libraries/rte/rte_footer.lib.php:91
msgid "OFF"
msgstr ""
msgstr "KAPALI"
#: libraries/rte/rte_footer.lib.php:96
msgid "ON"
msgstr ""
msgstr "AÇIK"
#: libraries/rte/rte_footer.lib.php:108
#, fuzzy
#| msgid "The event scheduler is enabled"
msgid "Event scheduler status"
msgstr "Olay zamanlayıcısı etkin"
msgstr "Olay zamanlayıcısı durumu"
#: libraries/rte/rte_list.lib.php:52
#, fuzzy
#| msgid "Return type"
msgid "Returns"
msgstr "Dönüş türü"
msgstr "Dönüşler"
#: libraries/rte/rte_list.lib.php:58 libraries/rte/rte_triggers.lib.php:344
#: server_status.php:800 sql.php:943
@ -6766,16 +6726,13 @@ msgid "Export of routine %s"
msgstr "%s yordamını dışa aktarma"
#: libraries/rte/rte_routines.lib.php:46
#, fuzzy
#| msgid "Routines"
msgid "routine"
msgstr "Yordamlar"
msgstr "yordam"
#: libraries/rte/rte_routines.lib.php:47
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create a routine"
msgstr "Yeni bir yordam oluşturmak için gerekli izinlere sahip değilsiniz"
msgstr "Bir yordam oluşturmak için gerekli izinlere sahip değilsiniz"
#: libraries/rte/rte_routines.lib.php:48
#, php-format
@ -6889,21 +6846,19 @@ msgid ""
"VARCHAR and VARBINARY."
msgstr ""
"ENUM, SET, VARCHAR ve VARBINARY türünün yordam parametreleri için uzunluk/"
"değerler sağlamalısınız."
"değerler vermek zorundasınız."
#: libraries/rte/rte_routines.lib.php:1116
msgid "You must provide a name and a type for each routine parameter."
msgstr "Her yordam parametresi için bir ad ve bir tür sağlamalısınız."
msgstr "Her yordam parametresi için bir ad ve bir tür vermek zorundasınız."
#: libraries/rte/rte_routines.lib.php:1126
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid return type for the routine."
msgstr "Her yordam parametresi için bir ad ve bir tür sağlamalısınız."
msgstr "Yordam için geçerli bir dönüş türü vermek zorundasınız."
#: libraries/rte/rte_routines.lib.php:1176
msgid "You must provide a routine definition."
msgstr "Bir yordam tanımı sağlamalısınız."
msgstr "Bir yordam tanımı vermek zorundasınız."
#: libraries/rte/rte_routines.lib.php:1265
#, php-format
@ -6932,10 +6887,8 @@ msgid "Function"
msgstr "İşlev"
#: libraries/rte/rte_triggers.lib.php:39
#, fuzzy
#| msgid "Add a trigger"
msgid "Add trigger"
msgstr "Bir tetikleyici ekle"
msgstr "Tetikleyici ekle"
#: libraries/rte/rte_triggers.lib.php:41
#, php-format
@ -6943,92 +6896,68 @@ msgid "Export of trigger %s"
msgstr "%s tetikleyicisini dışa aktarma"
#: libraries/rte/rte_triggers.lib.php:42
#, fuzzy
#| msgid "Triggers"
msgid "trigger"
msgstr "Tetikleyiciler"
msgstr "tetikleyici"
#: libraries/rte/rte_triggers.lib.php:43
#, fuzzy
#| msgid "You do not have the necessary privileges to create a new routine"
msgid "You do not have the necessary privileges to create a trigger"
msgstr "Yeni bir yordam oluşturmak için gerekli izinlere sahip değilsiniz"
msgstr "Bir tetikleyici oluşturmak için gerekli izinlere sahip değilsiniz"
#: libraries/rte/rte_triggers.lib.php:44
#, fuzzy, php-format
#| msgid "No routine with name %1$s found in database %2$s"
#, php-format
msgid "No trigger with name %1$s found in database %2$s"
msgstr "%1$s veritabanında %2$s adıyla yordam bulunamadı"
msgstr "%2$s veritabanında %1$s adıyla tetikleyici bulunamadı"
#: libraries/rte/rte_triggers.lib.php:45
msgid "There are no triggers to display."
msgstr "Görüntülemek için tetikleyiciler yok."
#: libraries/rte/rte_triggers.lib.php:113
#, fuzzy
#| msgid "Sorry, we failed to restore the dropped routine."
msgid "Sorry, we failed to restore the dropped trigger."
msgstr "Üzgünüm, kaldırılmış yordamı geri yükleme başarısız oldu."
msgstr "Üzgünüm, kaldırılmış tetikleyiciyi geri yükleme başarısız oldu."
#: libraries/rte/rte_triggers.lib.php:118
#, fuzzy, php-format
#| msgid "Routine %1$s has been modified."
#, php-format
msgid "Trigger %1$s has been modified."
msgstr "Yordam %1$s değiştirildi."
msgstr "Tetikleyici %1$s değiştirildi."
#: libraries/rte/rte_triggers.lib.php:130
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
#, php-format
msgid "Trigger %1$s has been created."
msgstr "Tablo %1$s oluşturuldu."
msgstr "Tetikleyici %1$s oluşturuldu."
#: libraries/rte/rte_triggers.lib.php:181
#, fuzzy
#| msgid "Create view"
msgid "Create trigger"
msgstr "Görünüm oluştur"
msgstr "Tetikleyici oluştur"
#: libraries/rte/rte_triggers.lib.php:185
#, fuzzy
#| msgid "Add a trigger"
msgid "Edit trigger"
msgstr "Bir tetikleyici ekle"
msgstr "Tetikleyiciyi düzenle"
#: libraries/rte/rte_triggers.lib.php:325
#, fuzzy
#| msgid "Triggers"
msgid "Trigger name"
msgstr "Tetikleyiciler"
msgstr "Tetikleyici adı"
#: libraries/rte/rte_triggers.lib.php:423
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide a trigger name"
msgstr "Bir yordam adı vermek zorundasınız"
msgstr "Bir tetikleyici adı vermek zorundasınız"
#: libraries/rte/rte_triggers.lib.php:428
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide a valid timing for the trigger"
msgstr "Bir yordam adı vermek zorundasınız"
msgstr "Tetikleyici için geçerli bir zamanlama vermek zorundasınız"
#: libraries/rte/rte_triggers.lib.php:433
#, fuzzy
#| msgid "You must provide a name and a type for each routine parameter."
msgid "You must provide a valid event for the trigger"
msgstr "Her yordam parametresi için bir ad ve bir tür sağlamalısınız."
msgstr "Tetikleyici için geçerli bir olay vermek zorundasınız"
#: libraries/rte/rte_triggers.lib.php:439
#, fuzzy
#| msgid "You must provide a routine name"
msgid "You must provide a valid table name"
msgstr "Bir yordam adı vermek zorundasınız"
msgstr "Geçerli bir tablo adı vermek zorundasınız"
#: libraries/rte/rte_triggers.lib.php:445
#, fuzzy
#| msgid "You must provide a routine definition."
msgid "You must provide a trigger definition."
msgstr "Bir yordam tanımı sağlamalısınız."
msgstr "Bir tetikleyici tanımı vermek zorundasınız."
#: libraries/schema/Dia_Relation_Schema.class.php:222
#: libraries/schema/Eps_Relation_Schema.class.php:395
@ -8526,8 +8455,8 @@ msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Not: phpMyAdmin kullanıcıların yetkilerini doğrudan MySQL'in yetki "
"tablolarından alır. Bu tabloların içerikleri, eğer elle değiştirildiyse "
@ -10073,9 +10002,9 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- %"
"sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi%s. "
"Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce "
"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- "
"%sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi"
"%s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce "
"kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir."
#: setup/lib/index.lib.php:268
@ -10090,8 +10019,8 @@ msgstr ""
"[kbd]Yapılandırma[/kbd] kimlik doğrulaması türünü ayarladınız ve buna "
"otomatik oturum açma için kullanıcı adı ve parola dahildir, canlı "
"anamakineler için istenmeyen bir seçenektir. phpMyAdmin URL'nizi bilen veya "
"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. %"
"sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/"
"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. "
"%sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/"
"kbd] olarak ayarlayın."
#: setup/lib/index.lib.php:270

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-07-22 02:25+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: tatarish <tt@li.org>\n"
"Language: tt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: tt\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@ -643,8 +643,8 @@ msgstr ""
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -896,8 +896,8 @@ msgstr "Eçtälege \"%s\" biremenä saqlandı."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1945,8 +1945,8 @@ msgstr "%s siña İsäñme di"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@ -4968,8 +4968,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5721,8 +5721,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -7434,8 +7434,8 @@ msgid ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında %"
"squllanmada%s uqıp bula."
"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında "
"%squllanmada%s uqıp bula."
#: libraries/tbl_links.inc.php:118 libraries/tbl_links.inc.php:119
msgid "Table seems to be empty!"
@ -8653,8 +8653,8 @@ msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Beläse: MySQL-serverneñ eçke tüşämä eçennän alınğan xoquqlar bu. Server "
"qullana torğan xoquqlar qul aşa üzgärtelgän bulsa, bu tüşämä eçtälege "

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-08-26 11:59+0200\n"
"Last-Translator: <gheni@yahoo.cn>\n"
"Language-Team: Uyghur <ug@li.org>\n"
"Language: ug\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ug\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
@ -353,8 +353,8 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %"
"sبۇ يەرنى كۆرۈڭ%s."
"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن "
"%sبۇ يەرنى كۆرۈڭ%s."
#: db_operations.php:600
#, fuzzy
@ -628,8 +628,8 @@ msgstr "ئىزلاش ئاكتىپ ئەمەس"
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s."
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -869,8 +869,8 @@ msgstr "%s ھۆججىتىدە ساقلاندى."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش "
"چارىسىنى كۆرۈڭ."
@ -1872,11 +1872,11 @@ msgstr "%s خۇش كەلدىڭىز"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@ -4800,8 +4800,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5529,8 +5529,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -7563,8 +7563,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %"
"sبۇ يەرنى كۆرۈڭ%s."
"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن "
"%sبۇ يەرنى كۆرۈڭ%s."
#: main.php:314
msgid ""
@ -8291,8 +8291,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764

View File

@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-07-03 18:10+0200\n"
"Last-Translator: <vovka2008@gmail.com>\n"
"Language-Team: ukrainian <uk@li.org>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: uk\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@ -630,8 +630,8 @@ msgstr "Трекінг не активний."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -871,8 +871,8 @@ msgstr "Dump збережено у файл %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1818,8 +1818,8 @@ msgstr "Ласкаво просимо до %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@ -4679,8 +4679,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5396,8 +5396,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -7141,8 +7141,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %"
"sописи перетворень%s"
"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть "
"%sописи перетворень%s"
#: libraries/tbl_properties.inc.php:147
msgid "Transformation options"
@ -8274,8 +8274,8 @@ msgstr "Усунути бази даних, які мають такі ж наз
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"Примітка: phpMyAdmin отримує права користувачів безпосередньо з таблиці прав "
"MySQL. Зміст цієї таблиці може відрізнятися від прав, які використовуються "
@ -10536,8 +10536,8 @@ msgstr ""
#~ "<b>Query statistics</b>: Since its startup, %s queries have been sent to "
#~ "the server."
#~ msgstr ""
#~ "<b>Статистика запитів</b>: З моменту запуску, до сервера було надіслано %"
#~ "s запитів."
#~ "<b>Статистика запитів</b>: З моменту запуску, до сервера було надіслано "
#~ "%s запитів."
#~ msgid "Chart generated successfully."
#~ msgstr "Права успішно перезавантажено."

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-04-23 08:37+0200\n"
"Last-Translator: Mehbooob Khan <mehboobbugti@gmail.com>\n"
"Language-Team: Urdu <ur@li.org>\n"
"Language: ur\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ur\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@ -632,8 +632,8 @@ msgstr "کھوج غیر فعال ہے۔"
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s."
@ -876,11 +876,11 @@ msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔"
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے %"
"sdocumentation%s دیکھیں۔"
"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے "
"%sdocumentation%s دیکھیں۔"
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1372,8 +1372,8 @@ msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ %"
"s, جاری کیا گیا %s."
"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ "
"%s, جاری کیا گیا %s."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:167
@ -1862,8 +1862,8 @@ msgstr "%s میں خوش آمدید"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"آپ نے شاید تشکیل مسل نہیں بنایا۔ آپ ہوسکتا ہے کہ %1$ssetup script%2$s کو "
"استعمال کرتے ہوئے بنانا چاہتے ہیں۔"
@ -4838,8 +4838,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:268
@ -5547,8 +5547,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -8293,8 +8293,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-07-22 02:31+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: uzbek_cyrillic <uz@li.org>\n"
"Language: uz\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: uz\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@ -648,8 +648,8 @@ msgstr "Кузатиш фаол эмас."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот "
"учун %sдокументацияга%s қаранг."
@ -895,11 +895,11 @@ msgstr "Дамп \"%s\" файлида сақланди."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %"
"sдокументацияда%s келтирилган."
"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари "
"%окументацияда%s келтирилган."
#: import.php:277 import.php:330 libraries/File.class.php:459
#: libraries/File.class.php:543
@ -1990,8 +1990,8 @@ msgstr "\"%s\" дастурига хуш келибсиз"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Эҳтимол, конфигурация файли тузилмаган. Уни тузиш учун %1$ssўрнатиш "
"сценарийсидан%2$s фойдаланишингиз мумкин."
@ -4288,8 +4288,8 @@ msgstr "\"config\" аутентификация усули пароли"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]"
"\"pma_pdf_pages\"[/kbd]"
"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: "
"[kbd]\"pma_pdf_pages\"[/kbd]"
#: libraries/config/messages.inc.php:404
msgid "PDF schema: pages table"
@ -4397,8 +4397,8 @@ msgstr "SSL уланишдан фойдаланиш"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]"
"\"pma_table_coords\"[/kbd]"
"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: "
"[kbd]\"pma_table_coords\"[/kbd]"
#: libraries/config/messages.inc.php:423
msgid "PDF schema: table coordinates"
@ -5259,12 +5259,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги "
"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %"
"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади."
"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: "
"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади."
#: libraries/display_export.lib.php:268
msgid "use this for future exports"
@ -6073,8 +6073,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -9134,8 +9134,8 @@ msgstr "Фойдаланувчилар номлари билан аталган
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"ИЗОҲ: phpMyAdmin фойдаланувчилар привилегиялари ҳақидаги маълумотларни "
"тўғридан-тўғри MySQL привилегиялари жадвалидан олади. Ушбу жадвалдаги "
@ -10145,8 +10145,8 @@ msgstr "Очиқ файллар сони."
#: server_status.php:934
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Очиқ оқимлар сони (журнал файлларида кўлланилади). <b>Оқим</b> деб \"fopen()"
"\" функцияси ёрдамида очилган файлга айтилади."
"Очиқ оқимлар сони (журнал файлларида кўлланилади). <b>Оқим</b> деб \"fopen"
"()\" функцияси ёрдамида очилган файлга айтилади."
#: server_status.php:935
msgid "The number of tables that are open."
@ -10783,9 +10783,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id=%1"
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
#| "kbd]."
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id="
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@ -11756,8 +11756,8 @@ msgstr "Кўриниш номини ўзгартириш"
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr ""
#~ "Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]"
#~ "\"FAQ 3.11\"[/a]га қаранг"
#~ "Тахминий бўлиши мумкин. [a@./Documentation."
#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]га қаранг"
#~ msgid "Bar type"
#~ msgstr "Сўров тури"

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2010-07-22 02:30+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: uzbek_latin <uz@latin@li.org>\n"
"Language: uz@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: uz@latin\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@ -650,8 +650,8 @@ msgstr "Kuzatish faol emas."
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr ""
"Ushbu namoyish kamida korsatilgan miqdorda qatorlarga ega. Batafsil "
"ma`lumot uchun %sdokumentatsiyaga%s qarang."
@ -897,8 +897,8 @@ msgstr "Damp \"%s\" faylida saqlandi."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr ""
"Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning "
"usullari %sdokumentatsiyada%s keltirilgan."
@ -1997,8 +1997,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$ssornatish "
"ssenariysidan%2$s foydalanishingiz mumkin."
@ -4211,9 +4211,9 @@ msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
"Koproq ma`lumot uchun [a@http://sf.net/support/tracker.php?aid=1849494]"
"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]"
"larga qarang"
"Koproq ma`lumot uchun [a@http://sf.net/support/tracker.php?"
"aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql."
"com/19588]\"MySQL Bugs\"[/a]larga qarang"
#: libraries/config/messages.inc.php:387
msgid "Disable use of INFORMATION_SCHEMA"
@ -4303,8 +4303,8 @@ msgstr "\"config\" autentifikatsiya usuli paroli"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
"Agar PDF-sxema ishlatmasangiz, bosh qoldiring, asl qiymati: [kbd]"
"\"pma_pdf_pages\"[/kbd]"
"Agar PDF-sxema ishlatmasangiz, bosh qoldiring, asl qiymati: "
"[kbd]\"pma_pdf_pages\"[/kbd]"
#: libraries/config/messages.inc.php:404
msgid "PDF schema: pages table"
@ -4318,8 +4318,8 @@ msgid ""
msgstr ""
"Aloqalar, xatchoplar va PDF imkoniyatlari uchun ishlatiladigan baza. "
"Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]"
"ga qarang. Agar foydalanmasangiz, bosh qoldiring. Asl qiymati: [kbd]"
"\"phpmyadmin\"[/kbd]"
"ga qarang. Agar foydalanmasangiz, bosh qoldiring. Asl qiymati: "
"[kbd]\"phpmyadmin\"[/kbd]"
#: libraries/config/messages.inc.php:406
#, fuzzy
@ -4412,8 +4412,8 @@ msgstr "SSL ulanishdan foydalanish"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
"PDF-sxemadan foydalanmaslik uchun bosh qoldiring, asl qiymati: [kbd]"
"\"pma_table_coords\"[/kbd]"
"PDF-sxemadan foydalanmaslik uchun bosh qoldiring, asl qiymati: "
"[kbd]\"pma_table_coords\"[/kbd]"
#: libraries/config/messages.inc.php:423
msgid "PDF schema: table coordinates"
@ -5076,8 +5076,8 @@ msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
msgstr ""
"Taxminiy bolishi mumkin. [a@./Documentation.html#faq3_11@Documentation]"
"\"FAQ 3.11\"[/a]ga qarang"
"Taxminiy bolishi mumkin. [a@./Documentation."
"html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang"
#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:112
msgid "Connection for controluser as defined in your configuration failed."
@ -5280,8 +5280,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun "
"hozirgi vaqt va sanani qoyish mumkin. Qoshimcha ravishda quyidagilar "
@ -6098,8 +6098,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@ -9177,8 +9177,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni "
"togridan-togri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi "
@ -10844,9 +10844,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id=%1"
#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
#| "kbd]."
#| "access your phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id="
#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@ -10860,9 +10860,9 @@ msgstr ""
"real xostlar uchun tavsiya etilmaydi. Serverdagi phpMyAdmin turgan katalog "
"adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, "
"serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga "
"oshirishi mumkin. Server [a@?page=servers&amp;mode=edit&amp;id=%1"
"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/"
"kbd] deb belgilash tavsiya etiladi."
"oshirishi mumkin. Server [a@?page=servers&amp;mode=edit&amp;id="
"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http"
"[/kbd] deb belgilash tavsiya etiladi."
#: setup/lib/index.lib.php:270
#, fuzzy, php-format
@ -11820,8 +11820,8 @@ msgstr "Korinish nomini ozgartirish"
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr ""
#~ "Taxminiy bolishi mumkin. [a@./Documentation.html#faq3_11@Documentation]"
#~ "\"FAQ 3.11\"[/a]ga qarang"
#~ "Taxminiy bolishi mumkin. [a@./Documentation."
#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang"
#~ msgid "Bar type"
#~ msgstr "Sorov turi"

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-06-08 05:00+0200\n"
"Last-Translator: shanyan baishui <Siramizu@gmail.com>\n"
"Language-Team: chinese_simplified <zh_CN@li.org>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
@ -618,8 +618,8 @@ msgstr "追踪已禁用。"
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr "该视图最少包含的行数,参见%s文档%s。"
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -855,8 +855,8 @@ msgstr "转存已经保存到文件 %s 中。"
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。"
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1812,8 +1812,8 @@ msgstr "欢迎使用 %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"你可能还没有创建配置文件。你可以使用 %1$s设置脚本%2$s 来创建一个配置文件。"
@ -4763,8 +4763,8 @@ msgstr "@TABLE@ 将变成数据表名"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下"
"列内容也将被转换:%3$s。其他文本将保持原样。参见%4$s常见问题 (FAQ)%5$s。"
@ -5498,8 +5498,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。"
#: libraries/engines/pbxt.lib.php:129
@ -8287,12 +8287,12 @@ msgstr "删除与用户同名的数据库。"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"注意phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容"
"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%"
"s。"
"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权"
"限%s。"
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
@ -10691,8 +10691,8 @@ msgstr "将视图改名为"
#~ "Note that not every result table can be put to the chart. See <a href=\"./"
#~ "Documentation.html#faq6_29\" target=\"Documentation\">FAQ 6.29</a>"
#~ msgstr ""
#~ "请注意不是所有的结果表都能绘图。参见<a href=\"./Documentation.html#faq6_29"
#~ "\" target=\"Documentation\">常见问题 (FAQ) 6.29</a>"
#~ "请注意不是所有的结果表都能绘图。参见<a href=\"./Documentation."
#~ "html#faq6_29\" target=\"Documentation\">常见问题 (FAQ) 6.29</a>"
#~ msgid "Add a New User"
#~ msgstr "添加新用户"

View File

@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-07-14 09:21-0400\n"
"POT-Creation-Date: 2011-07-14 18:39+0200\n"
"PO-Revision-Date: 2011-06-19 09:59+0200\n"
"Last-Translator: <star@origin.club.tw>\n"
"Language-Team: chinese_traditional <zh_TW@li.org>\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: zh_TW\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
@ -618,8 +618,8 @@ msgstr "追蹤已停用"
#: db_structure.php:373 libraries/display_tbl.lib.php:2198
#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
"This view has at least this number of rows. Please refer to %sdocumentation"
"%s."
msgstr "這個檢視至少需包含這個數目的資料,請參考%sdocumentation%s。"
#: db_structure.php:387 db_structure.php:401 libraries/header.inc.php:152
@ -855,8 +855,8 @@ msgstr "備份資料已儲存至檔案 %s."
#: import.php:57
#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
"You probably tried to upload too large file. Please refer to %sdocumentation"
"%s for ways to workaround this limit."
msgstr "您上傳的檔案過大, 請查看此 %s 文件 %s 了解如何解決此限制."
#: import.php:277 import.php:330 libraries/File.class.php:459
@ -1797,8 +1797,8 @@ msgstr "歡迎使用 %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
"You probably did not create a configuration file. You might want to use the "
"%1$ssetup script%2$s to create one."
msgstr ""
"您可能還沒有建立設定檔案。您可以使用 %1$s設定指令%2$s 來建立一個設定檔案"
@ -4732,8 +4732,8 @@ msgstr "@TABLE@ 將變成資料資料表名稱"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
"formatting strings. Additionally the following transformations will happen: "
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"這個值是使用 %1$sstrftime%2$s 來解析的,所以您能用時間格式的字元串。另外,下"
"列內容也將被轉換:%3$s。其他文字將保持原樣。參見%4$s常見問題 (FAQ)%5$s"
@ -5465,8 +5465,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
"Documentation and further information about PBXT can be found on the %"
"sPrimeBase XT Home Page%s."
"Documentation and further information about PBXT can be found on the "
"%sPrimeBase XT Home Page%s."
msgstr "關於 PBXT 的檔案和更多資訊請參見 %sPrimeBase XT 首頁%s"
#: libraries/engines/pbxt.lib.php:129
@ -8254,8 +8254,8 @@ msgstr "刪除與使用者同名的資料庫"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
"server uses, if they have been changed manually. In this case, you should %"
"sreload the privileges%s before you continue."
"server uses, if they have been changed manually. In this case, you should "
"%sreload the privileges%s before you continue."
msgstr ""
"注意phpMyAdmin 直接由 MySQL 權限表取得使用者權限。如果使用者手動更改表,表"
"內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入"
@ -10665,8 +10665,8 @@ msgstr "將 view改名爲"
#~ "Note that not every result table can be put to the chart. See <a href=\"./"
#~ "Documentation.html#faq6_29\" target=\"Documentation\">FAQ 6.29</a>"
#~ msgstr ""
#~ "請注意不是所有的結果表都能繪圖。參見<a href=\"./Documentation.html#faq6_29"
#~ "\" target=\"Documentation\">常見問題 (FAQ) 6.29</a>"
#~ "請注意不是所有的結果表都能繪圖。參見<a href=\"./Documentation."
#~ "html#faq6_29\" target=\"Documentation\">常見問題 (FAQ) 6.29</a>"
#~ msgid "Add a New User"
#~ msgstr "新增新使用者"

View File

@ -33,7 +33,7 @@ require './libraries/header_http.inc.php';
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>phpMyAdmin <?php echo $GLOBALS['PMA_Config']->get('PMA_VERSION'); ?> setup</title>
<title>phpMyAdmin setup</title>
<link href="../favicon.ico" rel="icon" type="image/x-icon" />
<link href="../favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link href="styles.css" rel="stylesheet" type="text/css" />
@ -44,7 +44,7 @@ require './libraries/header_http.inc.php';
<script type="text/javascript" src="scripts.js"></script>
</head>
<body>
<h1><span class="blue">php</span><span class="orange">MyAdmin</span> <?php echo $GLOBALS['PMA_Config']->get('PMA_VERSION'); ?> setup</h1>
<h1><span class="blue">php</span><span class="orange">MyAdmin</span> setup</h1>
<div id="menu">
<?php
require './setup/frames/menu.inc.php';