Merge remote-tracking branch 'origin/master'

This commit is contained in:
tyron 2011-05-24 16:18:01 +02:00
commit 573da119a4
114 changed files with 13731 additions and 13078 deletions

View File

@ -7,12 +7,27 @@
+ Update to jQuery 1.6.1
+ Patch #3256122 [search] Show/hide db search results
+ Patch #3302354 Add gettext wrappers around a message
+ Remove deprecated function PMA_DBI_get_fields
3.4.1.0 (not yet released)
3.4.2.0 (not yet released)
- bug #3301249 [interface] Iconic table operations does not remove inline edit label
- bug #3303869 [interface] Unnecessary scrolling on Databases page
- patch #3303813 [setup] Define a label that was missing
- bug #3305606 [interface] Show all button wraps on privileges page
- bug #3305517 [config] Config for export compression not used
- bug #3305883 [interface] Table is dropped regardless of confirmation
- [auth] Fixed error handling for signon auth method.
- bug #3276001 [core] Avoid caching of index.php.
3.4.1.0 (2011-05-20)
- bug #3301108 [interface] Synchronize and already configured host
- bug #3302457 Inline edit and $cfg['PropertiesIconic']
- Patch #3302313 Show a translated label
- bug #3300981 [navi] Table filter is case sensitive
- bug #3285929 [privileges] Revert temporary fix
- bug #3302872 [synchronize] Synchronize and user name
- bug #3302733 [core] Some browsers report an insecure https connection
- [security] Make redirector require valid token
3.4.0.0 (2011-05-11)
+ rfe #2890226 [view] Enable VIEW rename
@ -171,6 +186,9 @@
3.3.11.0 (not yet released)
3.3.10.1 (2011-05-20)
- [security] XSS on Tracking page
3.3.10.0 (2011-03-19)
- patch #3147400 [structure] Aria table size printed as unknown,
thanks to erickoh75 - erickoh75

View File

@ -1054,6 +1054,29 @@ ALTER TABLE `pma_column_comments`
</ul>
</dd>
<dt id="recent">
<span id="cfg_Servers_recent">$cfg['Servers'][$i]['recent']</span> string
</dt>
<dd>
Since release 3.5.0 you can show recently used tables in the left navigation frame.
It helps you to jump across table directly, without the need to select the database,
and then select the table. Using
<a href="#cfg_LeftRecentTable" class="configrule">$cfg['LeftRecentTable']</a>
you can configure the maximum number of recent tables shown. When you select a table
from the list, it will jump to the page specified in
<a href="#cfg_LeftDefaultTabTable" class="configrule">$cfg['LeftDefaultTabTable']</a>.<br/><br/>
Without configuring the storage, you can still access the recently used tables,
but it will disappear after you logout.<br/><br/>
To allow the usage of this functionality:
<ul>
<li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li>
<li>put the table name in <tt>$cfg['Servers'][$i]['recent']</tt> (e.g. 'pma_recent')</li>
</ul>
</dd>
<dt id="tracking">
<span id="cfg_Servers_tracking">$cfg['Servers'][$i]['tracking']</span> string
</dt>
@ -1280,6 +1303,8 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE</pre>
</dd>
<dt><span id="cfg_Servers_SignonSession">$cfg['Servers'][$i]['SignonSession']</span> string</dt>
<dd>Name of session which will be used for signon authentication method.
You should use something different than <code>phpMyAdmin</code>, because
this is session which phpMyAdmin uses internally.
</dd>
<dt><span id="cfg_Servers_SignonURL">$cfg['Servers'][$i]['SignonURL']</span> string</dt>
<dd>URL where user will be redirected to log in for signon authentication method. Should be absolute including protocol.
@ -1467,6 +1492,10 @@ CREATE DATABASE,ALTER DATABASE,DROP DATABASE</pre>
<dd>Defines how many sublevels should be displayed when splitting
up tables by the above separator.</dd>
<dt id="cfg_LeftRecentTable">$cfg['LeftRecentTable'] integer</dt>
<dd>The maximum number of recently used tables shown in the left navigation
frame. Set this to 0 (zero) to disable the listing of recent tables.</dd>
<dt id="cfg_ShowTooltip">$cfg['ShowTooltip'] boolean</dt>
<dd>Defines whether to display table comment as tool-tip in left frame or
not.</dd>

View File

@ -52,6 +52,7 @@ $cfg['Servers'][$i]['AllowNoPassword'] = false;
// $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
// $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
// $cfg['Servers'][$i]['history'] = 'pma_history';
// $cfg['Servers'][$i]['recent'] = 'pma_recent';
// $cfg['Servers'][$i]['tracking'] = 'pma_tracking';
// $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
// $cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';

View File

@ -105,7 +105,7 @@ if (0 == $tbl_result_cnt) {
// The tables list gets from MySQL
while (list($tbl) = PMA_DBI_fetch_row($tbl_result)) {
$fld_results = PMA_DBI_get_fields($db, $tbl);
$fld_results = PMA_DBI_get_columns($db, $tbl, true);
if (empty($tbl_names[$tbl]) && !empty($_REQUEST['TableList'])) {
$tbl_names[$tbl] = '';

View File

@ -89,7 +89,7 @@ $lang_iso_code = $GLOBALS['available_languages'][$GLOBALS['lang']][1];
// start output
header('Content-Type: text/html; charset=' . $GLOBALS['charset']);
include ('./libraries/header_http.inc.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">

View File

@ -20,7 +20,7 @@ function loadResult(result_path , table_name , link , ajaxEnable){
if(ajaxEnable)
{
/** Hides the results shown by the delete criteria */
//PMA_ajaxShowMessage(PMA_messages['strBrowsing']);
PMA_ajaxShowMessage(PMA_messages['strBrowsing']);
$('#sqlqueryform').hide();
$('#togglequerybox').hide();
/** Load the browse results to the page */
@ -55,7 +55,7 @@ function deleteResult(result_path , msg , ajaxEnable){
/** Refresh the search results after the deletion */
document.getElementById('buttonGo'). click();
//PMA_ajaxShowMessage(PMA_messages['strDeleting']);
PMA_ajaxShowMessage(PMA_messages['strDeleting']);
/** Show the results of the deletion option */
$('#browse-results').show();
$('#sqlqueryform').hide();

View File

@ -610,7 +610,7 @@ $(document).ready(function() {
*/
$('tr.odd:not(.noclick), tr.even:not(.noclick)').live('click',function(e) {
// do not trigger when clicked on anchor
if ($(e.target).is('a, a *')) {
if ($(e.target).is('a, img, a *')) {
return;
}
// XXX: FF fires two click events for <label> (label and checkbox), so we need to handle this differently
@ -1195,7 +1195,12 @@ $(document).ready(function(){
}
});
$('#sqlquery').focus();
$('#sqlquery').focus().keydown(function (e) {
if (e.ctrlKey && e.keyCode == 13) {
$("#sqlqueryform").submit();
}
});
if ($('#input_username')) {
if ($('#input_username').val() == '') {
$('#input_username').focus();
@ -2282,6 +2287,10 @@ $(document).ready(function() {
}
});
$('#update_recent_tables').ready(function() {
window.parent.frame_navigation.PMA_reloadRecentTable();
});
}) // end of $(document).ready()
/**

View File

@ -83,8 +83,8 @@ $js_messages['strNo'] = __('No');
$js_messages['strSearching'] = __('Searching');
$js_messages['strHideSearchResults'] = __('Hide search results');
$js_messages['strShowSearchResults'] = __('Show search results');
//$js_messages['strBrowsing'] = __('Browsing');
//$js_messages['strDeleting'] = __('Deleting');
$js_messages['strBrowsing'] = __('Browsing');
$js_messages['strDeleting'] = __('Deleting');
/* For import.js */
$js_messages['strImportCSV'] = __('Note: If the file contains multiple tables, they will be combined into one');
@ -93,6 +93,7 @@ $js_messages['strImportCSV'] = __('Note: If the file contains multiple tables, t
$js_messages['strHideQueryBox'] = __('Hide query box');
$js_messages['strShowQueryBox'] = __('Show query box');
$js_messages['strInlineEdit'] = __('Inline Edit');
$js_messages['strEdit'] = __('Edit');
$js_messages['strSave'] = __('Save');
$js_messages['strHide'] = __('Hide');

View File

@ -167,6 +167,19 @@ function clear_fast_filter() {
elm.focus();
}
/**
* Reloads the recent tables list.
*/
function PMA_reloadRecentTable() {
$.get('navigation.php',
{ 'token' : window.parent.token, 'ajax_request' : true, 'recent_table' : true },
function (data) {
if (data.success == true) {
$('#recentTable').html(data.options);
}
});
}
/* Performed on load */
$(document).ready(function(){
/* Display filter */
@ -179,4 +192,14 @@ $(document).ready(function(){
$('#clear_fast_filter').click(clear_fast_filter);
$('#fast_filter').focus(function (evt) {evt.target.select();});
$('#fast_filter').keyup(function (evt) {fast_filter(evt.target.value);});
/* Jump to recent table */
$('#recentTable').change(function() {
if (this.value != '') {
var arr = this.value.split('.');
window.parent.setDb(arr[0]);
window.parent.setTable(arr[1]);
window.parent.refreshMain($('#LeftDefaultTabTable')[0].value);
}
});
});

138
js/sql.js
View File

@ -7,13 +7,14 @@
*
*/
var $data_a;
/**
* decode a string URL_encoded
*
* @param string str
* @return string the URL-decoded string
*/
var data_vt;
function PMA_urldecode(str) {
return decodeURIComponent(str.replace(/\+/g, '%20'));
}
@ -81,10 +82,16 @@ function appendInlineAnchor() {
$cloned_tr.find('td')
.addClass('inline_edit_anchor')
.find('a').attr('href', '#')
.find('span')
.text(' ' + PMA_messages['strInlineEdit'])
.prepend($img_object);
.find('a').attr('href', '#');
var $edit_span = $cloned_tr.find('span:contains("' + PMA_messages['strEdit'] + '")');
var $span = $cloned_tr.find('a').find('span');
if ($edit_span.length > 0) {
$span.text(' ' + PMA_messages['strInlineEdit']);
$span.prepend($img_object);
} else {
$span.text('');
$span.append($img_object);
}
$cloned_tr.insertAfter($this_tr);
});
@ -109,14 +116,16 @@ function appendInlineAnchor() {
if ($img_object.length != 0) {
var img_src = $img_object.attr('src').replace(/b_edit/,'b_inline_edit');
$img_object.attr('src', img_src);
$cloned_anchor
.find('a').attr('href', '#')
.find('span')
.text(' ' + PMA_messages['strInlineEdit']);
$cloned_anchor
.find('span')
.first()
.prepend($img_object);
$cloned_anchor.find('a').attr('href', '#');
var $edit_span = $cloned_anchor.find('span:contains("' + PMA_messages['strEdit'] + '")');
var $span = $cloned_anchor.find('a').find('span');
if ($edit_span.length > 0) {
$span.text(' ' + PMA_messages['strInlineEdit']);
$span.prepend($img_object);
} else {
$span.text('');
$span.append($img_object);
}
} else {
// Only text is displayed. See $cfg['PropertiesIconic']
$cloned_anchor.find('a').attr('href', '#');
@ -254,10 +263,15 @@ $(document).ready(function() {
*/
$("#sqlqueryform.ajax").live('submit', function(event) {
event.preventDefault();
$form = $(this);
if (! checkSqlQuery($form[0])) {
return false;
}
// remove any div containing a previous error message
$('.error').remove();
$form = $(this);
var $msgbox = PMA_ajaxShowMessage();
PMA_prepareForAjaxRequest($form);
@ -447,24 +461,58 @@ $(document).ready(function() {
// Looping through all columns or rows, to find the required data and then storing it in an array.
var $this_children = $edit_td.children('span.nowrap').children('a').children('span.nowrap');
if (disp_mode != 'vertical') {
$this_children.empty();
$this_children.text(PMA_messages['strSave']);
// Keep the original data preserved.
$data_a = $edit_td.children('span.nowrap').children('a').clone();
// Change the inline edit to save.
var $img_object = $this_children.find('img');
// If texts are displayed. See $cfg['PropertiesIconic']
if ($this_children.parent('a').find('span:contains("' + PMA_messages['strInlineEdit'] + '")').length > 0) {
$this_children.text(' ' + PMA_messages['strSave']);
} else {
// vertical
data_vt = $this_children.html();
$this_children.text(PMA_messages['strSave']);
$this_children.empty();
}
var hide_link = '<br /><br /><a id="hide">' + PMA_messages['strHide'] + '</a>';
if (disp_mode != 'vertical') {
$edit_td.append(hide_link);
$('#table_results tbody tr td a#hide').click(function() {
$this_children = $(this).siblings('span.nowrap').children('a').children('span.nowrap');
$this_children.empty();
$this_children.text(PMA_messages['strInlineEdit']);
// If icons are displayed. See $cfg['PropertiesIconic']
if ($img_object.length > 0) {
$img_object.attr('title', PMA_messages['strSave']);
var img_src = $img_object.attr('src').replace(/b_inline_edit/,'b_save');
$img_object.attr('src', img_src);
$this_children.prepend($img_object);
}
// Clone the save link and change it to create the hide link.
var $hide_a = $edit_td.children('span.nowrap').children('a').clone().attr('id', 'hide');
var $hide_span = $hide_a.find('span');
var $img_object = $hide_a.find('span img');
// If texts are displayed. See $cfg['PropertiesIconic']
if ($hide_a.find('span:contains("' + PMA_messages['strSave'] + '")').length > 0) {
$hide_span.text(' ' + PMA_messages['strHide']);
} else {
$hide_span.empty();
}
// If icons are displayed. See $cfg['PropertiesIconic']
if ($img_object.length > 0) {
$img_object.attr('title', PMA_messages['strHide']);
var img_src = $img_object.attr('src').replace(/b_save/,'b_close');
$img_object.attr('src', img_src);
$hide_span.prepend($img_object);
}
// Add hide icon and/or text.
$edit_td.children('span.nowrap').append($('<br /><br />')).append($hide_a);
if (disp_mode != 'vertical') {
$('#table_results tbody tr td span a#hide').click(function() {
var $this_hide = $(this).parents('td');
var $this_span = $this_hide.find('span');
$this_span.find('a, br').remove();
$this_span.append($data_a.clone());
var $this_hide = $(this).parent();
$this_hide.removeClass("inline_edit_active hover").addClass("inline_edit_anchor");
$this_hide.parent().removeClass("hover noclick");
$this_hide.siblings().removeClass("hover");
@ -489,14 +537,15 @@ $(document).ready(function() {
var txt = '';
var rows = $edit_td.parent().siblings().length;
$edit_td.append(hide_link);
$('#table_results tbody tr td a#hide').click(function() {
var pos = $(this).parent().index();
var $chg_submit = $(this).parent().children('span.nowrap').children('a').children('span.nowrap');
$chg_submit.empty();
$chg_submit.append(data_vt);
$('#table_results tbody tr td span a#hide').click(function() {
var $hide_a = $(this);
var pos = $hide_a.parents('td').index();
var $this_row = $(this).parents('tr');
var $this_span = $hide_a.parent();
$this_span.find('a, br').remove();
$this_span.append($data_a.clone());
var $this_row = $this_span.parents('tr');
// changing inline_edit_active to inline_edit_anchor
$this_row.siblings("tr:eq(3) td:eq(" + pos + ")").removeClass("inline_edit_active").addClass("inline_edit_anchor");
@ -962,19 +1011,10 @@ $(document).ready(function() {
*/
function PMA_unInlineEditRow($del_hide, $chg_submit, $this_td, $input_siblings, data, disp_mode) {
// deleting the hide button
// remove <br><br><a> tags
for ( var i = 0; i <= 2; i++) {
$del_hide.next().remove();
}
if(disp_mode != 'vertical'){
$chg_submit.empty();
$chg_submit.html('<span class="nowrap"></span>');
$chg_submit.children('span.nowrap').text(PMA_messages['strInlineEdit']);
} else {
$chg_submit.children('span.nowrap').empty();
$chg_submit.children('span.nowrap').append(data_vt);
}
// deleting the hide button. remove <br><br><a> tags
$del_hide.find('a, br').remove();
// append inline edit button.
$del_hide.append($data_a.clone());
// changing inline_edit_active to inline_edit_anchor
$this_td.removeClass('inline_edit_active').addClass('inline_edit_anchor');
@ -984,7 +1024,7 @@ function PMA_unInlineEditRow($del_hide, $chg_submit, $this_td, $input_siblings,
if(disp_mode != 'vertical') {
$this_td.parent('tr').removeClass('hover').find('td').removeClass('hover');
} else {
$this_td.parents('tbody').find('tr').find('td:eq(' + $this_td.index() + ')').removeClass('marked');
$this_td.parents('tbody').find('tr').find('td:eq(' + $this_td.index() + ')').removeClass('marked hover');
}
$input_siblings.each(function() {

View File

@ -0,0 +1,200 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
*
* @package phpMyAdmin
*/
require_once './libraries/Message.class.php';
/**
* Handles the recently used tables.
*
* @TODO Change the release version in table pma_recent (#recent in Documentation.html)
*
* @package phpMyAdmin
*/
class RecentTable
{
/**
* Defines the internal PMA table which contains recent tables.
*
* @access private
* @var string
*/
private $pma_table;
/**
* Reference to session variable containing recently used tables.
*
* @access public
* @var array
*/
public $tables;
/**
* RecentTable instance.
*
* @var RecentTable
*/
private static $_instance;
public function __construct()
{
if (strlen($GLOBALS['cfg']['Server']['pmadb']) &&
strlen($GLOBALS['cfg']['Server']['recent'])) {
$this->pma_table = PMA_backquote($GLOBALS['cfg']['Server']['pmadb']) .".".
PMA_backquote($GLOBALS['cfg']['Server']['recent']);
}
if (! isset($_SESSION['tmp_user_values']['recent_tables'])) {
$_SESSION['tmp_user_values']['recent_tables'] =
isset($this->pma_table) ? $this->getFromDb() : array();
}
$this->tables =& $_SESSION['tmp_user_values']['recent_tables'];
}
/**
* Returns class instance.
*
* @return RecentTable
*/
public static function getInstance()
{
if (is_null(self::$_instance)) {
self::$_instance = new RecentTable();
}
return self::$_instance;
}
/**
* Returns recently used tables from phpMyAdmin database.
*
* @uses $pma_table
* @uses PMA_query_as_controluser()
* @uses PMA_DBI_fetch_array()
* @uses json_decode()
*
* @return array
*/
public function getFromDb()
{
// Read from phpMyAdmin database, if recent tables is not in session
$sql_query =
" SELECT `tables` FROM " . $this->pma_table .
" WHERE `username` = '" . $GLOBALS['cfg']['Server']['user'] . "'";
$row = PMA_DBI_fetch_array(PMA_query_as_controluser($sql_query));
if (isset($row[0])) {
return json_decode($row[0]);
} else {
return array();
}
}
/**
* Save recent tables into phpMyAdmin database.
*
* @uses PMA_DBI_try_query()
* @uses json_decode()
* @uses PMA_Message
*
* @return true|PMA_Message
*/
public function saveToDb()
{
$username = $GLOBALS['cfg']['Server']['user'];
$sql_query =
" REPLACE INTO " . $this->pma_table . " (`username`, `tables`)" .
" VALUES ('" . $username . "', '" . PMA_sqlAddslashes(json_encode($this->tables)) . "')";
$success = PMA_DBI_try_query($sql_query, $GLOBALS['controllink']);
if (!$success) {
$message = PMA_Message::error(__('Could not save recent table'));
$message->addMessage('<br /><br />');
$message->addMessage(PMA_Message::rawError(PMA_DBI_getError($GLOBALS['controllink'])));
return $message;
}
return true;
}
/**
* Trim recent table according to the LeftRecentTable configuration.
*
* @return boolean True if trimming occurred
*/
public function trim()
{
$max = max($GLOBALS['cfg']['LeftRecentTable'], 0);
$trimming_occured = count($this->tables) > $max;
while (count($this->tables) > $max) {
array_pop($this->tables);
}
return $trimming_occured;
}
/**
* Return options for HTML select.
*
* @return string
*/
public function getHtmlSelectOption()
{
// trim and save, in case where the configuration is changed
if ($this->trim() && isset($this->pma_table)) {
$this->saveToDb();
}
$html = '<option value="">(' . __('Recent tables') . ') ...</option>';
if (count($this->tables)) {
foreach ($this->tables as $table) {
$html .= '<option value="' . $table . '">' . $table . '</option>';
}
} else {
$html .= '<option value="">' . __('There are no recent tables') . '</option>';
}
return $html;
}
/**
* Return HTML select.
*
* @return string
*/
public function getHtmlSelect()
{
$html = '<input type="hidden" id="LeftDefaultTabTable" value="' .
$GLOBALS['cfg']['LeftDefaultTabTable'] . '" />';
$html .= '<select id="recentTable">';
$html .= $this->getHtmlSelectOption();
$html .= '</select>';
return $html;
}
/**
* Add recently used tables.
*
* @param string $db Database name where the table is located
* @param string $table Table name
*
* @return true|PMA_Message True if success, PMA_Message if not
*/
public function add($db, $table)
{
$table_str = $db . '.' . $table;
// add only if this is new table
if (! isset($this->tables[0]) || $this->tables[0] != $table_str) {
array_unshift($this->tables, $table_str);
$this->tables = array_merge(array_unique($this->tables));
$this->trim();
if (isset($this->pma_table)) {
return $this->saveToDb();
}
}
return true;
}
}
?>

View File

@ -202,18 +202,35 @@ function PMA_auth_set_user()
*/
function PMA_auth_fails()
{
if (! empty($GLOBALS['login_without_password_is_forbidden'])) {
$_SESSION['PMA_single_signon_error_message'] = __('Login without a password is forbidden by configuration (see AllowNoPassword)');
} elseif (! empty($GLOBALS['allowDeny_forbidden'])) {
$_SESSION['PMA_single_signon_error_message'] = __('Access denied');
} elseif (! empty($GLOBALS['no_activity'])) {
$_SESSION['PMA_single_signon_error_message'] = sprintf(__('No activity within %s seconds; please log in again'), $GLOBALS['cfg']['LoginCookieValidity']);
} elseif (PMA_DBI_getError()) {
$_SESSION['PMA_single_signon_error_message'] = PMA_sanitize(PMA_DBI_getError());
} elseif (isset($php_errormsg)) {
$_SESSION['PMA_single_signon_error_message'] = $php_errormsg;
} else {
$_SESSION['PMA_single_signon_error_message'] = __('Cannot log in to the MySQL server');
/* Session name */
$session_name = $GLOBALS['cfg']['Server']['SignonSession'];
/* Does session exist? */
if (isset($_COOKIE[$session_name])) {
/* End current session */
$old_session = session_name();
$old_id = session_id();
session_write_close();
/* Load single signon session */
session_name($session_name);
session_id($_COOKIE[$session_name]);
session_start();
/* Set error message */
if (! empty($GLOBALS['login_without_password_is_forbidden'])) {
$_SESSION['PMA_single_signon_error_message'] = __('Login without a password is forbidden by configuration (see AllowNoPassword)');
} elseif (! empty($GLOBALS['allowDeny_forbidden'])) {
$_SESSION['PMA_single_signon_error_message'] = __('Access denied');
} elseif (! empty($GLOBALS['no_activity'])) {
$_SESSION['PMA_single_signon_error_message'] = sprintf(__('No activity within %s seconds; please log in again'), $GLOBALS['cfg']['LoginCookieValidity']);
} elseif (PMA_DBI_getError()) {
$_SESSION['PMA_single_signon_error_message'] = PMA_sanitize(PMA_DBI_getError());
} elseif (isset($php_errormsg)) {
$_SESSION['PMA_single_signon_error_message'] = $php_errormsg;
} else {
$_SESSION['PMA_single_signon_error_message'] = __('Cannot log in to the MySQL server');
}
}
PMA_auth();
} // end of the 'PMA_auth_fails()' function

View File

@ -136,7 +136,7 @@ function PMA_analyseShowGrant()
/**
* @todo collect $GLOBALS['db_to_create'] into an array, to display a
* drop-down in the "Create new database" dialog
* drop-down in the "Create database" dialog
*/
// we don't break, we want all possible databases
//break;

View File

@ -477,8 +477,6 @@ if (! PMA_isValid($_REQUEST['token']) || $_SESSION[' PMA_token '] != $_REQUEST['
'media_type', 'custom_type', 'bs_reference',
/* for changing BLOB repository file MIME type */
'bs_db', 'bs_table', 'bs_ref', 'bs_new_mime_type',
/* URL redirector */
'url'
);
/**
* Require cleanup functions

View File

@ -9,14 +9,9 @@
/**
* Exponential expression / raise number into power
*
* @uses function_exists()
* @uses bcpow()
* @uses gmp_pow()
* @uses gmp_strval()
* @uses pow()
* @param number $base
* @param number $exp
* @param string pow function use, or false for auto-detect
* @param string $base
* @param string $exp
* @param mixed $use_function pow function to use, or false for auto-detect
* @return mixed string or float
*/
function PMA_pow($base, $exp, $use_function = false)
@ -69,12 +64,11 @@ function PMA_pow($base, $exp, $use_function = false)
*
* @uses $GLOBALS['pmaThemeImage']
* @uses $GLOBALS['cfg']['PropertiesIconic']
* @uses htmlspecialchars()
* @param string $icon name of icon file
* @param string $alternate alternate text
* @param boolean $container include in container
* @param boolean $$force_text whether to force alternate text to be displayed
* @return html img tag
* @param string $icon name of icon file
* @param string $alternate alternate text
* @param boolean $container include in container
* @param boolean $force_text whether to force alternate text to be displayed
* @return html img tag
*/
function PMA_getIcon($icon, $alternate = '', $container = false, $force_text = false)
{
@ -127,9 +121,7 @@ function PMA_getIcon($icon, $alternate = '', $container = false, $force_text = f
* Displays the maximum size for an upload
*
* @uses PMA_formatByteDown()
* @uses sprintf()
* @param integer the size
*
* @param integer $max_upload_size the size
* @return string the message
*
* @access public
@ -146,8 +138,7 @@ function PMA_displayMaximumUploadSize($max_upload_size)
* Generates a hidden field which should indicate to the browser
* the maximum size for upload
*
* @param integer the size
*
* @param integer $max_size the size
* @return string the INPUT field
*
* @access public
@ -161,15 +152,13 @@ function PMA_displayMaximumUploadSize($max_upload_size)
* Add slashes before "'" and "\" characters so a value containing them can
* be used in a sql comparison.
*
* @uses str_replace()
* @param string the string to slash
* @param boolean whether the string will be used in a 'LIKE' clause
* (it then requires two more escaped sequences) or not
* @param boolean whether to treat cr/lfs as escape-worthy entities
* (converts \n to \\n, \r to \\r)
*
* @param boolean whether this function is used as part of the
* "Create PHP code" dialog
* @param string $a_string the string to slash
* @param bool $is_like whether the string will be used in a 'LIKE' clause
* (it then requires two more escaped sequences) or not
* @param bool $crlf whether to treat cr/lfs as escape-worthy entities
* (converts \n to \\n, \r to \\r)
* @param bool $php_code whether this function is used as part of the
* "Create PHP code" dialog
*
* @return string the slashed string
*
@ -204,9 +193,7 @@ function PMA_sqlAddslashes($a_string = '', $is_like = false, $crlf = false, $php
* database, table and field names.
* Note: This function does not escape backslashes!
*
* @uses str_replace()
* @param string the string to escape
*
* @param string $name the string to escape
* @return string the escaped string
*
* @access public
@ -223,7 +210,6 @@ function PMA_escape_mysql_wildcards($name)
* removes slashes before "_" and "%" characters
* Note: This function does not unescape backslashes!
*
* @uses str_replace()
* @param string $name the string to escape
* @return string the escaped string
* @access public
@ -241,8 +227,6 @@ function PMA_unescape_mysql_wildcards($name)
*
* checks if the sting is quoted and removes this quotes
*
* @uses str_replace()
* @uses substr()
* @param string $quoted_string string to remove quotes from
* @param string $quote type of quote to remove
* @return string unqoted string
@ -279,10 +263,9 @@ function PMA_unQuote($quoted_string, $quote = null)
* @uses PMA_SQP_isError()
* @uses PMA_SQP_formatHtml()
* @uses PMA_SQP_formatNone()
* @uses is_array()
* @param mixed pre-parsed SQL structure
*
* @return string the formatted sql
* @param mixed $parsed_sql pre-parsed SQL structure
* @param string $unparsed_sql
* @return string the formatted sql
*
* @global array the configuration array
* @global boolean whether the current statement is a multiple one or not
@ -342,12 +325,11 @@ function PMA_formatSql($parsed_sql, $unparsed_sql = '')
* @uses $cfg['ReplaceHelpImg']
* @uses $GLOBALS['pmaThemeImage']
* @uses PMA_MYSQL_INT_VERSION
* @uses strtolower()
* @uses str_replace()
* @param string chapter of "HTML, one page per chapter" documentation
* @param string contains name of page/anchor that is being linked
* @param bool whether to use big icon (like in left frame)
* @param string anchor to page part
* @param string $chapter chapter of "HTML, one page per chapter" documentation
* @param string $link contains name of page/anchor that is being linked
* @param bool $big_icon whether to use big icon (like in left frame)
* @param string $anchor anchor to page part
* @param bool $just_open whether only the opening <a> tag should be returned
*
* @return string the html link
*
@ -434,8 +416,7 @@ function PMA_showMySQLDocu($chapter, $link, $big_icon = false, $anchor = '', $ju
/**
* Displays a link to the phpMyAdmin documentation
*
* @param string anchor in documentation
*
* @param string $anchor anchor in documentation
* @return string the html link
*
* @access public
@ -451,9 +432,8 @@ function PMA_showDocu($anchor) {
/**
* Displays a link to the PHP documentation
*
* @param string anchor in documentation
*
* @return string the html link
* @param string $target anchor in documentation
* @return string the html link
*
* @access public
*/
@ -471,7 +451,9 @@ function PMA_showPHPDocu($target) {
* returns HTML for a footnote marker and add the messsage to the footnotes
*
* @uses $GLOBALS['footnotes']
* @param string the error message
* @param string $message the error message
* @param bool $bbcode
* @param string $type
* @return string html code for a footnote marker
* @access public
*/
@ -532,25 +514,11 @@ function PMA_showHint($message, $bbcode = false, $type = 'notice')
* @uses PMA_SQP_isError()
* @uses PMA_SQP_parse()
* @uses PMA_SQP_getErrorString()
* @uses strtolower()
* @uses urlencode()
* @uses str_replace()
* @uses nl2br()
* @uses substr()
* @uses preg_replace()
* @uses preg_match()
* @uses explode()
* @uses implode()
* @uses is_array()
* @uses function_exists()
* @uses htmlspecialchars()
* @uses trim()
* @uses strstr()
* @param string the error message
* @param string the sql query that failed
* @param boolean whether to show a "modify" link or not
* @param string the "back" link url (full path is not required)
* @param boolean EXIT the page?
* @param string $error_message the error message
* @param string $the_query the sql query that failed
* @param bool $is_modify_link whether to show a "modify" link or not
* @param string $back_url the "back" link url (full path is not required)
* @param bool $exit EXIT the page?
*
* @global string the curent table
* @global string the current db
@ -1377,25 +1345,22 @@ function PMA_profilingResults($profiling_results, $show_chart = false)
/**
* Formats $value to byte view
*
* @param double the value to format
* @param integer the sensitiveness
* @param integer the number of decimals to retain
* @param double $value the value to format
* @param int $limes the sensitiveness
* @param int $comma the number of decimals to retain
*
* @return array the formatted value and its unit
*
* @access public
*
* @version 1.2 - 18 July 2002
*/
function PMA_formatByteDown($value, $limes = 6, $comma = 0)
{
/* l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+ */
$byteUnits = array(__('B'), __('KiB'), __('MiB'), __('GiB'), __('TiB'), __('PiB'), __('EiB'));
$dh = PMA_pow(10, $comma);
$li = PMA_pow(10, $limes);
$return_value = $value;
$unit = $byteUnits[0];
$dh = PMA_pow(10, $comma);
$li = PMA_pow(10, $limes);
$unit = $byteUnits[0];
for ($d = 6, $ex = 15; $d >= 1; $d--, $ex-=3) {
if (isset($byteUnits[$d]) && $value >= $li * PMA_pow(10, $ex)) {
@ -1421,6 +1386,9 @@ function PMA_formatByteDown($value, $limes = 6, $comma = 0)
/**
* Changes thousands and decimal separators to locale specific values.
*
* @param $value
* @return string
*/
function PMA_localizeNumber($value)
{
@ -1535,7 +1503,7 @@ function PMA_formatNumber($value, $length = 3, $comma = 0, $only_down = false)
/**
* Returns the number of bytes when a formatted size is given
*
* @param string $size the size expression (for example 8MB)
* @param string $formatted_size the size expression (for example 8MB)
* @uses PMA_pow()
* @return integer The numerical part of the expression (for example 8)
*/
@ -1556,8 +1524,8 @@ function PMA_extractValueFromFormattedSize($formatted_size)
/**
* Writes localised date
*
* @param string the current timestamp
*
* @param string $timestamp the current timestamp
* @param string $format format
* @return string the formatted date
*
* @access public
@ -1767,12 +1735,14 @@ function PMA_generate_html_tabs($tabs, $url_params)
* Displays a link, or a button if the link's URL is too large, to
* accommodate some browsers' limitations
*
* @param string the URL
* @param string the link message
* @param string $url the URL
* @param string $message the link message
* @param mixed $tag_params string: js confirmation
* array: additional tag params (f.e. style="")
* @param boolean $new_form we set this to false when we are already in
* a form, to avoid generating nested forms
* @param boolean $strip_img
* @param string $target
*
* @return string the results to be echoed or saved in an array
*/
@ -1902,13 +1872,12 @@ function PMA_linkOrButton($url, $message, $tag_params = array(),
*
* @uses sprintf()
* @uses floor()
* @param int the timespan
* @param int $seconds the timespan
*
* @return string the formatted value
*/
function PMA_timespanFormat($seconds)
{
$return_string = '';
$days = floor($seconds / 86400);
if ($days > 0) {
$seconds -= $days * 86400;
@ -1933,8 +1902,8 @@ function PMA_timespanFormat($seconds)
*
* @todo add a multibyte safe function PMA_STR_split()
* @uses strlen
* @param string The string
* @param string The Separator (defaults to "<br />\n")
* @param string $string The string
* @param string $Separator The Separator (defaults to "<br />\n")
*
* @access public
* @return string The flipped string
@ -1985,13 +1954,11 @@ function PMA_flipstring($string, $Separator = "<br />\n")
* @uses PMA_getenv()
* @uses header_meta_style.inc.php
* @uses $GLOBALS['PMA_PHP_SELF']
* basename
* @param array The names of the parameters needed by the calling
* script.
* @param boolean Stop the execution?
* @param array $params The names of the parameters needed by the calling script.
* @param bool $die Stop the execution?
* (Set this manually to false in the calling script
* until you know all needed parameters to check).
* @param boolean Whether to include this list in checking for special params.
* @param bool $request Whether to include this list in checking for special params.
* @global string path to current script
* @global boolean flag whether any special variable was required
*
@ -2171,11 +2138,12 @@ function PMA_getUniqueCondition($handle, $fields_cnt, $fields_meta, $row, $force
* @uses PMA_USR_BROWSER_AGENT
* @uses $GLOBALS['pmaThemeImage']
* @uses $GLOBALS['cfg']['PropertiesIconic']
* @param string name of button element
* @param string class of button element
* @param string name of image element
* @param string text to display
* @param string image to display
* @param string $button_name name of button element
* @param string $button_class class of button element
* @param string $image_name name of image element
* @param string $text text to display
* @param string $image image to display
* @param string $value
*
* @access public
*/
@ -2211,24 +2179,19 @@ function PMA_buttonOrImage($button_name, $button_class, $image_name, $text,
/**
* Generate a pagination selector for browsing resultsets
*
* @uses range()
* @param string Number of rows in the pagination set
* @param string current page number
* @param string number of total pages
* @param string If the number of pages is lower than this
* variable, no pages will be omitted in
* pagination
* @param string How many rows at the beginning should always
* be shown?
* @param string How many rows at the end should always
* be shown?
* @param string Percentage of calculation page offsets to
* hop to a next page
* @param string Near the current page, how many pages should
* be considered "nearby" and displayed as
* well?
* @param string The prompt to display (sometimes empty)
* @param int $rows Number of rows in the pagination set
* @param int $pageNow current page number
* @param int $nbTotalPage number of total pages
* @param int $showAll If the number of pages is lower than this
* variable, no pages will be omitted in pagination
* @param int $sliceStart How many rows at the beginning should always be shown?
* @param int $sliceEnd How many rows at the end should always be shown?
* @param int $percent Percentage of calculation page offsets to hop to a next page
* @param int $range Near the current page, how many pages should
* be considered "nearby" and displayed as well?
* @param string $prompt The prompt to display (sometimes empty)
*
* @return string
* @access public
*/
function PMA_pageselector($rows, $pageNow = 1, $nbTotalPage = 1,
@ -2795,14 +2758,13 @@ function PMA_replace_binary_contents($content) {
}
/**
*
* If the string starts with a \r\n pair (0x0d0a) add an extra \n
*
* @uses strpos()
* @param string $string
* @return string with the chars replaced
*/
function PMA_duplicateFirstNewline($string){
function PMA_duplicateFirstNewline($string) {
$first_occurence = strpos($string, "\r\n");
if ($first_occurence === 0){
$string = "\n".$string;
@ -2811,41 +2773,40 @@ function PMA_duplicateFirstNewline($string){
}
/**
* get the action word corresponding to a script name
* Get the action word corresponding to a script name
* in order to display it as a title in navigation panel
*
* @uses $GLOBALS
* @param string a valid value for $cfg['LeftDefaultTabTable']
* or $cfg['DefaultTabTable']
* or $cfg['DefaultTabDatabase']
* @param string $target a valid value for $cfg['LeftDefaultTabTable'], $cfg['DefaultTabTable']
* or $cfg['DefaultTabDatabase']
* @return array
*/
function PMA_getTitleForTarget($target) {
$mapping = array(
// Values for $cfg['DefaultTabTable']
'tbl_structure.php' => __('Structure'),
'tbl_sql.php' => __('SQL'),
'tbl_select.php' =>__('Search'),
'tbl_change.php' =>__('Insert'),
'sql.php' => __('Browse'),
$mapping = array(
// Values for $cfg['DefaultTabTable']
'tbl_structure.php' => __('Structure'),
'tbl_sql.php' => __('SQL'),
'tbl_select.php' =>__('Search'),
'tbl_change.php' =>__('Insert'),
'sql.php' => __('Browse'),
// Values for $cfg['DefaultTabDatabase']
'db_structure.php' => __('Structure'),
'db_sql.php' => __('SQL'),
'db_search.php' => __('Search'),
'db_operations.php' => __('Operations'),
);
// Values for $cfg['DefaultTabDatabase']
'db_structure.php' => __('Structure'),
'db_sql.php' => __('SQL'),
'db_search.php' => __('Search'),
'db_operations.php' => __('Operations'),
);
return $mapping[$target];
}
/**
* Formats user string, expading @VARIABLES@, accepting strftime format string.
*
* @param string Text where to do expansion.
* @param function Function to call for escaping variable values.
* @param array Array with overrides for default parameters (obtained from GLOBALS).
* @param string $string Text where to do expansion.
* @param function $escape Function to call for escaping variable values.
* @param array $updates Array with overrides for default parameters (obtained from GLOBALS).
* @return string
*/
function PMA_expandUserString($string, $escape = NULL, $updates = array()) {
function PMA_expandUserString($string, $escape = null, $updates = array()) {
/* Content */
$vars['http_host'] = PMA_getenv('HTTP_HOST') ? PMA_getenv('HTTP_HOST') : '';
$vars['server_name'] = $GLOBALS['cfg']['Server']['host'];
@ -2911,12 +2872,10 @@ function PMA_expandUserString($string, $escape = NULL, $updates = array()) {
* function that generates a json output for an ajax request and ends script
* execution
*
* @param boolean success whether the ajax request was successfull
* @param string message string containing the html of the message
* @param array extra_data optional - any other data as part of the json request
* @param bool $message message string containing the html of the message
* @param bool $success success whether the ajax request was successfull
* @param array $extra_data extra_data optional - any other data as part of the json request
*
* @uses header()
* @uses json_encode()
*/
function PMA_ajaxResponse($message, $success = true, $extra_data = array())
{
@ -2960,9 +2919,10 @@ function PMA_ajaxResponse($message, $success = true, $extra_data = array())
/**
* Display the form used to browse anywhere on the local server for the file to import
*
* @param $max_upload_size
*/
function PMA_browseUploadFile($max_upload_size) {
$uid = uniqid("");
echo '<label for="radio_import_file">' . __("Browse your computer:") . '</label>';
echo '<div id="upload_form_status" style="display: none;"></div>';
echo '<div id="upload_form_status_info" style="display: none;"></div>';
@ -2974,6 +2934,9 @@ function PMA_browseUploadFile($max_upload_size) {
/**
* Display the form used to select a file to import from the server upload directory
*
* @param $import_list
* @param $uploaddir
*/
function PMA_selectUploadFile($import_list, $uploaddir) {
echo '<label for="radio_local_import_file">' . sprintf(__("Select from the web server upload directory <b>%s</b>:"), htmlspecialchars(PMA_userDir($uploaddir))) . '</label>';

View File

@ -338,6 +338,13 @@ $cfg['Servers'][$i]['history'] = '';
*/
$cfg['Servers'][$i]['designer_coords'] = '';
/**
* table to store recently used tables
* - leave blank for no "persistent" recently used tables
* SUGGESTED: 'pma_recent'
*/
$cfg['Servers'][$i]['recent'] = '';
/**
* table to store SQL tracking
* - leave blank for no SQL tracking
@ -794,6 +801,13 @@ $cfg['LeftLogoLink'] = 'main.php';
*/
$cfg['LeftLogoLinkWindow'] = 'main';
/**
* number of recently used tables displayed in the navigation frame
*
* @global integer $cfg['LeftRecentTable']
*/
$cfg['LeftRecentTable'] = 10;
/**
* display a JavaScript table filter in the left frame
* when more then x tables are present

View File

@ -159,6 +159,7 @@ $cfg_db['_validators'] = array(
'Import/skip_queries' => 'validate_non_negative_number',
'InsertRows' => 'validate_positive_number',
'LeftFrameTableLevel' => 'validate_positive_number',
'LeftRecentTable' => 'validate_non_negative_number',
'LimitChars' => 'validate_positive_number',
'LoginCookieValidity' => 'validate_positive_number',
'LoginCookieStore' => 'validate_non_negative_number',

View File

@ -127,6 +127,7 @@ $strConfigExport_sql_hex_for_blob_name = __('Use hexadecimal for BLOB');
$strConfigExport_sql_if_not_exists_name = sprintf(__('Add %s'), 'IF NOT EXISTS');
$strConfigExport_sql_ignore_name = __('Use ignore inserts');
$strConfigExport_sql_include_comments_name = __('Comments');
$strConfigExport_sql_insert_syntax_name = __('Syntax to use when inserting data');
$strConfigExport_sql_max_query_size_name = __('Maximal length of created query');
$strConfigExport_sql_mime_name = __('MIME type');
$strConfigExport_sql_procedure_function_name = sprintf(__('Add %s'), 'CREATE PROCEDURE / FUNCTION / EVENT');
@ -282,6 +283,8 @@ $strConfigLeftLogoLinkWindow_desc = __('Open the linked page in the main window
$strConfigLeftLogoLinkWindow_name = __('Logo link target');
$strConfigLeftPointerEnable_desc = __('Highlight server under the mouse cursor');
$strConfigLeftPointerEnable_name = __('Enable highlighting');
$strConfigLeftRecentTable_desc = __('Maximum number of recently used tables; set 0 to disable');
$strConfigLeftRecentTable_name = __('Recently used tables');
$strConfigLightTabs_desc = __('Use less graphically intense tabs');
$strConfigLightTabs_name = __('Light tabs');
$strConfigLimitChars_desc = __('Maximum number of characters shown in any non-numeric column on browse view');
@ -400,6 +403,8 @@ $strConfigServers_pmadb_desc = __('Database used for relations, bookmarks, and P
$strConfigServers_pmadb_name = __('Database name');
$strConfigServers_port_desc = __('Port on which MySQL server is listening, leave empty for default');
$strConfigServers_port_name = __('Server port');
$strConfigServers_recent_desc = __('Leave blank for no "persistent" recently used tables across sessions, suggested: [kbd]pma_recent[/kbd]');
$strConfigServers_recent_name = __('Recently used table');
$strConfigServers_relation_desc = __('Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links[/a] support, suggested: [kbd]pma_relation[/kbd]');
$strConfigServers_relation_name = __('Relation table');
$strConfigServers_ShowDatabasesCommand_desc = __('SQL command to fetch available databases');

View File

@ -73,6 +73,7 @@ $forms['Servers']['Server_pmadb'] = array('Servers' => array(1 => array(
'table_info' => 'pma_table_info',
'column_info' => 'pma_column_info',
'history' => 'pma_history',
'recent' => 'pma_recent',
'tracking' => 'pma_tracking',
'table_coords' => 'pma_table_coords',
'pdf_pages' => 'pma_pdf_pages',
@ -162,7 +163,8 @@ $forms['Left_frame']['Left_frame'] = array(
'LeftDisplayLogo',
'LeftLogoLink',
'LeftLogoLinkWindow',
'LeftPointerEnable');
'LeftPointerEnable',
'LeftRecentTable');
$forms['Left_frame']['Left_servers'] = array(
'LeftDisplayServers',
'DisplayServersList');

View File

@ -77,7 +77,8 @@ $forms['Left_frame']['Left_frame'] = array(
'LeftDisplayLogo',
'LeftLogoLink',
'LeftLogoLinkWindow',
'LeftPointerEnable');
'LeftPointerEnable',
'LeftRecentTable');
$forms['Left_frame']['Left_databases'] = array(
'DisplayDatabasesList',
'LeftFrameDBTree',

View File

@ -681,12 +681,12 @@ function PMA_array_remove($path, &$array)
* @return string URL for a link.
*/
function PMA_linkURL($url) {
if (!preg_match('#^https?://#', $url)) {
if (!preg_match('#^https?://#', $url) || defined('PMA_SETUP')) {
return $url;
} elseif (defined('PMA_SETUP')) {
return '../url.php?url=' . $url;
} else {
return './url.php?url=' . $url;
$params = array();
$params['url'] = $url;
return './url.php' . PMA_generate_common_url($params);
}
}

View File

@ -774,29 +774,6 @@ function PMA_DBI_get_columns_full($database = null, $table = null,
return $columns;
}
/**
* @todo should only return columns names, for more info use PMA_DBI_get_columns_full()
*
* @deprecated by PMA_DBI_get_columns() or PMA_DBI_get_columns_full()
* @param string $database name of database
* @param string $table name of table to retrieve columns from
* @param mixed $link mysql link resource
* @return array column info
*/
function PMA_DBI_get_fields($database, $table, $link = null)
{
// here we use a try_query because when coming from
// tbl_create + tbl_properties.inc.php, the table does not exist
$fields = PMA_DBI_fetch_result(
'SHOW FULL COLUMNS
FROM ' . PMA_backquote($database) . '.' . PMA_backquote($table),
null, null, $link);
if (! is_array($fields) || count($fields) < 1) {
return false;
}
return $fields;
}
/**
* array PMA_DBI_get_columns(string $database, string $table, bool $full = false, mysql db link $link = null)
*

View File

@ -18,7 +18,7 @@ if ($is_create_db_priv) {
// The user is allowed to create a db
?>
<form method="post" action="db_create.php" id="create_database_form" <?php echo ($GLOBALS['cfg']['AjaxEnable'] ? 'class="ajax" ' : ''); ?>><strong>
<?php echo '<label for="text_create_db">' . __('Create new database') . '</label>&nbsp;' . PMA_showMySQLDocu('SQL-Syntax', 'CREATE_DATABASE'); ?></strong><br />
<?php echo '<label for="text_create_db">' . __('Create database') . '</label>&nbsp;' . PMA_showMySQLDocu('SQL-Syntax', 'CREATE_DATABASE'); ?></strong><br />
<?php echo PMA_generate_common_hidden_inputs('', '', 5); ?>
<input type="hidden" name="reload" value="1" />
<input type="text" name="new_db" value="<?php echo $db_to_create; ?>" maxlength="64" class="textfield" id="text_create_db"/>
@ -36,7 +36,7 @@ if ($is_create_db_priv) {
} else {
?>
<!-- db creation no privileges message -->
<strong><?php echo __('Create new database') . ':&nbsp;' . PMA_showMySQLDocu('SQL-Syntax', 'CREATE_DATABASE'); ?></strong><br />
<strong><?php echo __('Create database') . ':&nbsp;' . PMA_showMySQLDocu('SQL-Syntax', 'CREATE_DATABASE'); ?></strong><br />
<?php
echo '<span class="noPrivileges">'
. ($cfg['ErrorIconic'] ? '<img src="' . $pmaThemeImage . 's_error2.png" alt="" width="11" height="11" hspace="2" border="0" align="middle" />' : '')

View File

@ -296,7 +296,9 @@ if(isset($_GET['sql_query'])) {
?>
<?php
if(isset($_GET['compression'])) {
$selected_compression = $_GET['compression'];
$selected_compression = $_GET['compression'];
} elseif (isset($cfg['Export']['compression'])) {
$selected_compression = $cfg['Export']['compression'];
} else {
$selected_compression = "none";
}

View File

@ -2381,7 +2381,7 @@ function PMA_handle_non_printable_contents($category, $content, $transform_funct
} elseif (isset($content)) {
$size = strlen($content);
$display_size = PMA_formatByteDown($size, 3, 1);
$result .= ' - '. $display_size[0] . $display_size[1];
$result .= ' - '. $display_size[0] . '&nbsp;' . $display_size[1];
}
$result .= ']';

View File

@ -8,12 +8,26 @@ if (! defined('PHPMYADMIN')) {
exit;
}
/**
*
*/
require_once './libraries/common.inc.php';
require_once './libraries/RecentTable.class.php';
/**
* Add recently used table and reload the navigation.
*
* @param string $db Database name where the table is located.
* @param string $table The table name
*/
function PMA_addRecentTable($db, $table) {
$tmp_result = RecentTable::getInstance()->add($db, $table);
if ($tmp_result === true) {
echo '<span class="hide" id="update_recent_tables"></span>';
} else {
$error = $tmp_result;
$error->display();
}
}
/**
* This is not an Ajax request so we need to generate all this output.
*/
@ -151,6 +165,11 @@ if (isset($GLOBALS['is_ajax_request']) && !$GLOBALS['is_ajax_request']) {
.'&quot;' . htmlspecialchars($show_comment)
.'&quot;</span>' . "\n";
} // end if
// add recently used table and reload the navigation
if ($GLOBALS['cfg']['LeftRecentTable'] > 0) {
PMA_addRecentTable($GLOBALS['db'], $GLOBALS['table']);
}
} else {
// no table selected, display database comment if present
/**

View File

@ -106,7 +106,7 @@ if (!$analyze) {
}
$sql_template .= ' INTO ' . PMA_backquote($table);
$tmp_fields = PMA_DBI_get_fields($db, $table);
$tmp_fields = PMA_DBI_get_columns($db, $table);
if (empty($csv_columns)) {
$fields = $tmp_fields;

View File

@ -138,6 +138,10 @@ function PMA_printRelationsParamDiagnostic($cfgRelation)
PMA_printDiagMessageForFeature(__('Designer'), 'designerwork', $messages);
PMA_printDiagMessageForParameter('recent', isset($cfgRelation['recent']), $messages, 'recent');
PMA_printDiagMessageForFeature(__('Persistent recently used tables'), 'recentwork', $messages);
PMA_printDiagMessageForParameter('tracking', isset($cfgRelation['tracking']), $messages, 'tracking');
PMA_printDiagMessageForFeature(__('Tracking'), 'trackingwork', $messages);
@ -220,6 +224,7 @@ function PMA__getRelationsParam()
$cfgRelation['commwork'] = false;
$cfgRelation['mimework'] = false;
$cfgRelation['historywork'] = false;
$cfgRelation['recentwork'] = false;
$cfgRelation['trackingwork'] = false;
$cfgRelation['designerwork'] = false;
$cfgRelation['userconfigwork'] = false;
@ -271,6 +276,8 @@ function PMA__getRelationsParam()
$cfgRelation['pdf_pages'] = $curr_table[0];
} elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['history']) {
$cfgRelation['history'] = $curr_table[0];
} elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['recent']) {
$cfgRelation['recent'] = $curr_table[0];
} elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['tracking']) {
$cfgRelation['tracking'] = $curr_table[0];
} elseif ($curr_table[0] == $GLOBALS['cfg']['Server']['userconfig']) {
@ -325,6 +332,10 @@ function PMA__getRelationsParam()
$cfgRelation['historywork'] = true;
}
if (isset($cfgRelation['recent'])) {
$cfgRelation['recentwork'] = true;
}
if (isset($cfgRelation['tracking'])) {
$cfgRelation['trackingwork'] = true;
}
@ -346,8 +357,9 @@ function PMA__getRelationsParam()
if ($cfgRelation['relwork'] && $cfgRelation['displaywork']
&& $cfgRelation['pdfwork'] && $cfgRelation['commwork']
&& $cfgRelation['mimework'] && $cfgRelation['historywork']
&& $cfgRelation['trackingwork'] && $cfgRelation['userconfigwork']
&& $cfgRelation['bookmarkwork'] && $cfgRelation['designerwork']) {
&& $cfgRelation['recentwork'] && $cfgRelation['trackingwork']
&& $cfgRelation['userconfigwork'] && $cfgRelation['bookmarkwork']
&& $cfgRelation['designerwork']) {
$cfgRelation['allworks'] = true;
}
@ -517,7 +529,7 @@ function PMA_getDisplayField($db, $table)
* Gets the comments for all rows of a table or the db itself
*
* @access public
* @uses PMA_DBI_get_fields()
* @uses PMA_DBI_get_columns()
* @uses PMA_getDbComment()
* @param string the name of the db to check for
* @param string the name of the table to check for
@ -529,9 +541,9 @@ function PMA_getComments($db, $table = '')
if ($table != '') {
// MySQL native column comments
$fields = PMA_DBI_get_fields($db, $table);
$fields = PMA_DBI_get_columns($db, $table);
if ($fields) {
foreach ($fields as $key => $field) {
foreach ($fields as $field) {
if (! empty($field['Comment'])) {
$comments[$field['Field']] = $field['Comment'];
}

View File

@ -204,7 +204,7 @@ function PMA_replication_print_slaves_table($hidden = false) {
*/
function PMA_replication_get_username_hostname_length() {
$fields_info = PMA_DBI_get_fields('mysql', 'user');
$fields_info = PMA_DBI_get_columns('mysql', 'user');
$username_length = 16;
$hostname_length = 41;
foreach ($fields_info as $key => $val) {

View File

@ -68,7 +68,7 @@ function PMA_getNonMatchingTargetTables($trg_tables, $matching_tables, &$uncommo
* If update is required, it is placed in $update_array
* Otherwise that entry is placed in the $insert_array.
*
* @uses PMA_DBI_get_fields()
* @uses PMA_DBI_get_columns()
* @uses PMA_DBI_get_column_values()
* @uses PMA_DBI_fetch_result()
*
@ -95,7 +95,7 @@ function PMA_dataDiffInTables($src_db, $trg_db, $src_link, $trg_link, &$matching
{
if (isset($matching_table[$matching_table_index])) {
$fld = array();
$fld_results = PMA_DBI_get_fields($src_db, $matching_table[$matching_table_index], $src_link);
$fld_results = PMA_DBI_get_columns($src_db, $matching_table[$matching_table_index], true, $src_link);
$is_key = array();
if (isset($fld_results)) {
foreach ($fld_results as $each_field) {
@ -113,7 +113,7 @@ function PMA_dataDiffInTables($src_db, $trg_db, $src_link, $trg_link, &$matching
$source_result_set = PMA_DBI_get_column_values($src_db, $matching_table[$matching_table_index], $is_key, $src_link);
$source_size = sizeof($source_result_set);
$trg_fld_results = PMA_DBI_get_fields($trg_db, $matching_table[$matching_table_index], $trg_link);
$trg_fld_results = PMA_DBI_get_columns($trg_db, $matching_table[$matching_table_index], true, $trg_link);
$all_keys_match = true;
$trg_keys = array();
@ -597,7 +597,7 @@ function PMA_insertIntoTargetTable($matching_table, $src_db, $trg_db, $src_link,
/**
* PMA_createTargetTables() Create the missing table $uncommon_table in target database
*
* @uses PMA_DBI_get_fields()
* @uses PMA_DBI_get_columns()
* @uses PMA_backquote()
* @uses PMA_DBI_fetch_result()
*
@ -613,7 +613,7 @@ function PMA_insertIntoTargetTable($matching_table, $src_db, $trg_db, $src_link,
function PMA_createTargetTables($src_db, $trg_db, $src_link, $trg_link, &$uncommon_tables, $table_index, &$uncommon_tables_fields, $display)
{
if (isset($uncommon_tables[$table_index])) {
$fields_result = PMA_DBI_get_fields($src_db, $uncommon_tables[$table_index], $src_link);
$fields_result = PMA_DBI_get_columns($src_db, $uncommon_tables[$table_index], true, $src_link);
$fields = array();
foreach ($fields_result as $each_field) {
$field_name = $each_field['Field'];

View File

@ -119,8 +119,7 @@ function PMA_sqlQueryForm($query = true, $display_tab = false, $delimiter = ';')
if ($GLOBALS['cfg']['AjaxEnable']) {
echo ' class="ajax"';
}
echo ' id="sqlqueryform"'
.' onsubmit="return checkSqlQuery(this)" name="sqlform">' . "\n";
echo ' id="sqlqueryform" name="sqlform">' . "\n";
}
if ($is_querywindow) {

View File

@ -112,7 +112,7 @@ unset($tabs);
if(PMA_Tracker::isActive() and PMA_Tracker::isTracked($GLOBALS["db"], $GLOBALS["table"]))
{
$msg = PMA_Message::notice('<a href="tbl_tracking.php?'.$url_query.'">'.sprintf(__('Tracking of %s.%s is activated.'), $GLOBALS["db"], $GLOBALS["table"]).'</a>');
$msg = PMA_Message::notice('<a href="tbl_tracking.php?'.$url_query.'">'.sprintf(__('Tracking of %s.%s is activated.'), htmlspecialchars($GLOBALS["db"]), htmlspecialchars($GLOBALS["table"])).'</a>');
$msg->display();
}

View File

@ -27,6 +27,13 @@
*/
class zipfile
{
/**
* Whether to echo zip as it's built or return as string from -> file
*
* @var boolean $doWrite
*/
var $doWrite = false;
/**
* Array to store compressed data
*
@ -56,6 +63,21 @@ class zipfile
var $old_offset = 0;
/**
* Sets member variable this -> doWrite to true
* - Should be called immediately after class instantiantion
* - If set to true, then ZIP archive are echo'ed to STDOUT as each
* file is added via this -> addfile(), and central directories are
* echoed to STDOUT on final call to this -> file(). Also,
* this -> file() returns an empty string so it is safe to issue a
* "echo $zipfile;" command
*
* @access public
*/
function setDoWrite() {
$this -> doWrite = true;
} // end of the 'setDoWrite()' method
/**
* Converts an Unix timestamp to a four byte DOS date and time format (date
* in high two bytes, time in low two bytes allowing magnitude comparison).
@ -133,8 +155,12 @@ class zipfile
//$fr .= pack('V', $c_len); // compressed filesize
//$fr .= pack('V', $unc_len); // uncompressed filesize
// add this entry to array
$this -> datasec[] = $fr;
// echo this entry on the fly, ...
if ( $this -> doWrite) {
echo $fr;
} else { // ... OR add this entry to array
$this -> datasec[] = $fr;
}
// now add to central directory record
$cdrec = "\x50\x4b\x01\x02";
@ -165,26 +191,30 @@ class zipfile
/**
* Dumps out file
* Echo central dir if ->doWrite==true, else build string to return
*
* @return string the zipped file
* @return string if ->doWrite {empty string} else the ZIP file contents
*
* @access public
*/
function file()
{
$data = implode('', $this -> datasec);
$ctrldir = implode('', $this -> ctrl_dir);
return
$data .
$ctrldir .
$header = $ctrldir .
$this -> eof_ctrl_dir .
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
"\x00\x00"; // .zip file comment length
if ( $this -> doWrite ) { // Send central directory & end ctrl dir to STDOUT
echo $header;
return ""; // Return empty string
} else { // Return entire ZIP archive as string
$data = implode('', $this -> datasec);
return $data . $header;
}
} // end of the 'file()' method
} // end of the 'zipfile' class

View File

@ -202,7 +202,10 @@ echo '<div class="group pmagroup">';
echo '<h2>phpMyAdmin</h2>';
echo '<ul>';
$class = null;
if ($GLOBALS['cfg']['VersionCheck']) {
// workaround for bug 3302733; some browsers don't like the situation
// where phpMyAdmin is called on a secure page but a part of the page
// (the version check) refers to a non-secure page
if ($GLOBALS['cfg']['VersionCheck'] && ! $GLOBALS['PMA_Config']->get('is_https')) {
$class = 'jsversioncheck';
}
PMA_printListItem(__('Version information') . ': ' . PMA_VERSION, 'li_pma_version', null, null, null, null, $class);

View File

@ -53,6 +53,16 @@ function PMA_exitNavigationFrame()
exit;
}
require_once './libraries/common.lib.php';
require_once './libraries/RecentTable.class.php';
/**
* Check if it is an ajax request to reload the recent tables list.
*/
if ($GLOBALS['is_ajax_request'] && $_REQUEST['recent_table']) {
PMA_ajaxResponse('', true, array('options' => RecentTable::getInstance()->getHtmlSelectOption()) );
}
// keep the offset of the db list in session before closing it
if (! isset($_SESSION['tmp_user_values']['navi_limit_offset'])) {
$_SESSION['tmp_user_values']['navi_limit_offset'] = 0;
@ -179,6 +189,14 @@ require_once './libraries/header_http.inc.php';
<body id="body_leftFrame">
<?php
require './libraries/navigation_header.inc.php';
// display recently used tables
if ($GLOBALS['cfg']['LeftRecentTable'] > 0) {
echo '<div id="recentTableList">';
echo RecentTable::getInstance()->getHtmlSelect();
echo '</div>';
}
if (! $GLOBALS['server']) {
// no server selected
PMA_exitNavigationFrame();

335
po/af.po

File diff suppressed because it is too large Load Diff

340
po/ar.po

File diff suppressed because it is too large Load Diff

340
po/az.po

File diff suppressed because it is too large Load Diff

340
po/be.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

1363
po/bg.po

File diff suppressed because it is too large Load Diff

340
po/bn.po

File diff suppressed because it is too large Load Diff

340
po/bs.po

File diff suppressed because it is too large Load Diff

338
po/ca.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\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"
@ -70,8 +70,8 @@ msgstr "Cerca"
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -125,7 +125,7 @@ msgid "Database comment: "
msgstr "Comentaris de la base de dades: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Comentaris de la taula"
@ -294,15 +294,15 @@ msgstr "Esborra la base de dades (DROP)"
msgid "Copy database to"
msgstr "Còpia base de dades a"
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Només l'estructura"
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Estructura i dades"
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Només dades"
@ -312,17 +312,17 @@ msgstr "Inclou CREATE DATABASE abans de copiar"
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Afegeix %s"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Afegeix valor AUTO_INCREMENT"
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Afegeix restriccions"
@ -334,7 +334,7 @@ msgstr "Canvia a la base de dades copiada"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -427,14 +427,14 @@ msgstr "Classificació"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr "Ascendent"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr "Descendent"
@ -588,17 +588,17 @@ msgstr "Dins la columna:"
msgid "No tables found in database"
msgstr "Base de dades sense taules"
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "S'ha buidat la taula %s"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Vista %s esborrada"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "S'ha esborrat la taula %s"
@ -641,20 +641,20 @@ msgstr "%s és el motor d'emmagatzematge per defecte en aquest servidor MySQL."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Amb marca:"
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Marcar-ho tot"
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Desmarcar tot"
@ -684,25 +684,25 @@ msgstr "Buida"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Elimina"
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr "Verifica la taula"
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimitza la taula"
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr "Repara la taula"
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analitza la taula"
@ -737,7 +737,7 @@ msgstr "Taules seguides"
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -764,7 +764,7 @@ msgid "Status"
msgstr "Estat"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -932,7 +932,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "La vostra comanda SQL ha estat executada amb èxit"
@ -1130,6 +1130,18 @@ msgstr "Amaga el criteri de cerca"
msgid "Show search results"
msgstr "Mostrar criteri de cerca"
#: js/messages.php:86
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Navega"
#: js/messages.php:87
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Esborrant %s"
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1147,7 +1159,16 @@ msgstr "Mostrar quadre de consultes"
msgid "Inline Edit"
msgstr "Edició en linia"
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edita"
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1155,67 +1176,67 @@ msgstr "Edició en linia"
msgid "Save"
msgstr "Desa"
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Amaga"
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr "Amaga el criteri de cerca"
#: js/messages.php:101
#: js/messages.php:102
msgid "Show search criteria"
msgstr "Mostrar criteri de cerca"
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignora"
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr "Tria la clau referenciada"
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr "Tria una clau externa"
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr "Tria la clau principal o una clau única"
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Tria la columna a mostrar"
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr "Afegeix una opció per a la columna"
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr "Genera una contrasenya"
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Genera"
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr "Canvi de contrasenya"
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr "Més"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1225,28 +1246,28 @@ msgstr ""
"actualitzar-la. La nova versió és la %s, alliberada el %s."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
msgid ", latest stable version:"
msgstr ", darrera versió estable:"
#: js/messages.php:128
#: js/messages.php:129
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Vés a la base de dades"
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr "Fet"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1254,231 +1275,231 @@ msgid "Next"
msgstr "Següent"
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr "Avui"
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr "Gener"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr "Febrer"
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr "Març"
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr "Abril"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "Maig"
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr "Juny"
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr "Juliol"
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr "Agost"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr "Setembre"
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr "Octubre"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr "Novembre"
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr "Desembre"
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Des"
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr "Diumenge"
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr "Dilluns"
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr "Dimarts"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr "Dimecres"
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr "Dijous"
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr "Divendres"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr "Dissabte"
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Diu"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Dll"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Dma"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Dcr"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Dij"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Div"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Dis"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr "Dg"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr "Dl"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr "Dm"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr "Dc"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr "Dj"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr "Dv"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr "Ds"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr "Se"
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr "Hora"
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr "Minut"
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr "Segon"
@ -1554,14 +1575,6 @@ msgstr "Cardinalitat"
msgid "Comment"
msgstr "Comentari"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edita"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr "S'ha esborrat la clau principal"
@ -1589,7 +1602,7 @@ msgstr "Bases de dades"
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Error"
@ -1859,7 +1872,7 @@ msgid "Data"
msgstr "Dades"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Total"
@ -2001,7 +2014,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr "Documentació"
@ -4599,7 +4612,9 @@ msgstr "Compatible amb MySQL 4.0"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
#, fuzzy
#| msgid "Create new database"
msgid "Create database"
msgstr "Crea una nova base de dades"
#: libraries/display_create_database.lib.php:33
@ -5000,7 +5015,7 @@ msgstr "Crea una vista"
msgid "Link not found"
msgstr "No s'ha trobat l'enllaç "
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr "Informació de versió"
@ -6781,7 +6796,7 @@ msgstr ""
"a l'autor qué fa %s."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr "Motor d'emmagatzematge"
@ -7022,27 +7037,27 @@ msgstr "Extensió PHP"
msgid "Show PHP information"
msgstr "Mostra informació de PHP"
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr "Wiki"
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr "Pàgina oficial del phpMyAdmin"
#: main.php:214
#: main.php:217
msgid "Contribute"
msgstr "Contribueix"
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr "Obtenir suport"
#: main.php:216
#: main.php:219
msgid "List of changes"
msgstr "Llista de canvis"
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -7055,7 +7070,7 @@ msgstr ""
"i s'exposa a intrusions, pel que recomanem la reparació urgent d'aquest "
"forat de seguretat."
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@ -7065,7 +7080,7 @@ msgstr ""
"PHP. Aquesta opció és incompatible amb phpMyAdmin i pot provocar la perdua "
"de dades!"
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@ -7075,7 +7090,7 @@ msgstr ""
"de caràcters multibyte. Sense l'extensió -mbstring-, phpMyAdmin és incapaç "
"de dividir cadenes de text correctament i pot generar resultats inesperats."
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -7087,7 +7102,7 @@ msgstr ""
"caducitat de galetes -cookies- configurat a phpMyAdmin, degut a aixó, la "
"vostra conenexió caducarà abans del establert a phpMyAdmin."
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@ -7096,13 +7111,13 @@ msgstr ""
"configuració a phpMyAdmin, degut a aixó, la teva sessió caducarà més aviat "
"que el que indica la configuració de phpMyAdmin."
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"L'arxiu de configuració necessita ara una frase de pas secreta "
"(blowfish_secret)."
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@ -7112,7 +7127,7 @@ msgstr ""
"encara existeix dins del vostre directori de phpMyAdmin. Heu d'esborrar-ho "
"un cop heu acabat de configurar phpMyAdmin."
#: main.php:296
#: main.php:299
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@ -7122,7 +7137,7 @@ msgstr ""
"completa, s'han desactivat algunes característiques avançades. Per saber "
"perquè, clica %saquí%s."
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@ -7132,7 +7147,7 @@ msgstr ""
"algunes funcions de phpMyAdmin poden estar desactivades. Per exemple, el "
"marc de navegació no s'actualitzarà automàticament."
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@ -7141,7 +7156,7 @@ msgstr ""
"La teva llibreria MySQL de PHP MySQL versió %s és diferent del teu servidor "
"MySQL versió %s. Aixó pot provocar comportaments inesperats."
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@ -7150,7 +7165,7 @@ msgstr ""
"Servidor executant-se amb Suhosin. Si us plau, consulta %sdocumentation%s "
"per a possibles assumptes."
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr "No hi ha bases de dades"
@ -7499,20 +7514,20 @@ msgstr "%s bases de dades s'han esborrat correctament."
msgid "Databases statistics"
msgstr "Estadístiques de les bases de dades"
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr "Replicació del mestre"
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr "Replicació de l'esclau"
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr "Activa Estadístiques"
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -7992,8 +8007,9 @@ msgid "Unable to change master"
msgstr "No es pot canviar el mestre"
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
#, fuzzy, php-format
#| msgid "Master server changed succesfully to %s"
msgid "Master server changed successfully to %s"
msgstr "S'ha canviat correctament el servidor mestre a %s"
#: server_replication.php:180
@ -9717,97 +9733,97 @@ msgstr "La taula %s s'ha copiat a %s."
msgid "The table name is empty!"
msgstr "El nom de la taula és buit!"
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr "Altera la taula i ordena per"
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr "(només)"
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr "Mou la taula a (base-de-dades<b>.</b>taula):"
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr "Opcions de taula"
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr "Reanomena les taules a"
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr "Còpia taula a (base-de-dades<b>.</b>taula):"
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr "Canvia a una taula copiada"
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr "Manteniment de la taula"
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr "Desfragmenta la taula"
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr "S'ha buidat la memòria cau de la taula %s"
#: tbl_operations.php:669
#: tbl_operations.php:668
msgid "Flush the table (FLUSH)"
msgstr "Buida la memòria cau de la taula (FLUSH)"
#: tbl_operations.php:678
#: tbl_operations.php:677
msgid "Delete data or table"
msgstr "Esborra les dades o la taula"
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr "Buida la taula (TRUNCATE)"
#: tbl_operations.php:713
#: tbl_operations.php:712
msgid "Delete the table (DROP)"
msgstr "Esborra la taula (DROP)"
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr "Manteniment de particions"
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr "Partició %s"
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr "Analitza"
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr "Comprova"
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr "Optimitza"
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr "Reconstrueix"
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr "Repara"
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr "Elimina particionament"
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr "Comprova la integritat referencial:"
@ -10024,7 +10040,7 @@ msgstr "Instantània de la versió %s (codi SQL)"
#: tbl_tracking.php:382
#, fuzzy
#| msgid "Track these data definition statements:"
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr "Segueix aquestes declaracions de definició de dades:"
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -10036,7 +10052,7 @@ msgstr "Recopila errors"
#: tbl_tracking.php:399
#, fuzzy
#| msgid "Track these data manipulation statements:"
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr "Segueix aquestes declaracions de manipulació de dades:"
#: tbl_tracking.php:411

461
po/cs.po

File diff suppressed because it is too large Load Diff

388
po/cy.po

File diff suppressed because it is too large Load Diff

340
po/da.po

File diff suppressed because it is too large Load Diff

338
po/de.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
"PO-Revision-Date: 2011-04-23 04:28+0200\n"
"Last-Translator: Dominik Geyer <dominik.geyer@gmx.de>\n"
"Language-Team: german <de@li.org>\n"
@ -70,8 +70,8 @@ msgstr "Suche"
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -125,7 +125,7 @@ msgid "Database comment: "
msgstr "Datenbankkommentar: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Tabellen-Kommentar"
@ -294,15 +294,15 @@ msgstr "Datenbank löschen (DROP)"
msgid "Copy database to"
msgstr "Datenbank kopieren nach"
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Nur Struktur"
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktur und Daten"
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Nur Daten"
@ -312,17 +312,17 @@ msgstr "Vor dem Kopieren CREATE DATABASE ausführen."
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Füge %s hinzu"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT-Wert hinzufügen"
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Constraints hinzufügen"
@ -334,7 +334,7 @@ msgstr "Zu kopierter Datenbank wechseln"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -427,14 +427,14 @@ msgstr "Sortierung"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr "aufsteigend"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr "absteigend"
@ -588,17 +588,17 @@ msgstr "In Spalte:"
msgid "No tables found in database"
msgstr "Diese Datenbank enthält keine Tabellen."
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Die Tabelle %s wurde geleert."
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Die Ansicht %s wurde gelöscht"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Die Tabelle %s wurde gelöscht."
@ -642,20 +642,20 @@ msgstr "Neue Tabellen werden standardmäßig im Format %s angelegt."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "markierte:"
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Alle auswählen"
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Auswahl entfernen"
@ -685,25 +685,25 @@ msgstr "Leeren"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Löschen"
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr "Überprüfe Tabelle"
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimiere Tabelle"
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr "Repariere Tabelle"
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analysiere Tabelle"
@ -738,7 +738,7 @@ msgstr "Verfolgte Tabellen"
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -765,7 +765,7 @@ msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -936,7 +936,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt."
@ -1132,6 +1132,18 @@ msgstr "Suchkriterien ausblenden"
msgid "Show search results"
msgstr "Suchkriterien anzeigen"
#: js/messages.php:86
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Anzeigen"
#: js/messages.php:87
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Lösche %s"
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1149,7 +1161,16 @@ msgstr "SQL-Querybox anzeigen"
msgid "Inline Edit"
msgstr "Direkt bearbeiten"
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Bearbeiten"
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1158,67 +1179,67 @@ msgid "Save"
msgstr "Speichern"
# Hide heist im deutschen in der EDV ausblenden
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Verstecken"
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr "Suchkriterien ausblenden"
#: js/messages.php:101
#: js/messages.php:102
msgid "Show search criteria"
msgstr "Suchkriterien anzeigen"
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorieren"
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr "Wählen Sie den referenzierten Schlüssel"
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr "Wähle Fremdschlüssel"
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr "Bitte den PRIMARY KEY oder einen UNIQUE KEY wählen"
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Anzuzeigende Spalte auswählen"
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr "Option hinzufügen zu Spalte "
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr "Passwort generieren"
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generieren"
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr "Passwort ändern"
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr "Mehr"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1228,28 +1249,28 @@ msgstr ""
"sollten. Die neuste Version ist %s, erschienen am %s."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
msgid ", latest stable version:"
msgstr ", aktuellste stabile Version:"
#: js/messages.php:128
#: js/messages.php:129
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Springe zu Datenbank"
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr "Fertig"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr "Vorherige"
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1257,231 +1278,231 @@ msgid "Next"
msgstr "Nächste"
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr "Heute"
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr "Januar"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr "Februar"
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr "März"
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr "April"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "Mai"
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr "Juni"
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr "Juli"
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr "August"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr "September"
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr "Oktober"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr "November"
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr "Dezember"
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mrz"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dez"
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr "Sonntag"
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr "Montag"
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr "Dienstag"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr "Mittwoch"
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr "Donnerstag"
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr "Freitag"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr "Samstag"
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "So"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Mo"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Mi"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Fr"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sa"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr "So"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr "Mo"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr "Di"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr "Mi"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr "Do"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr "Wo"
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr "Stunde"
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr "Minute"
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr "Sekunde"
@ -1556,14 +1577,6 @@ msgstr "Kardinalität"
msgid "Comment"
msgstr "Kommentar"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Bearbeiten"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr "Der Primärschlüssel wurde gelöscht."
@ -1591,7 +1604,7 @@ msgstr "Datenbanken"
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Fehler"
@ -1866,7 +1879,7 @@ msgid "Data"
msgstr "Daten"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Insgesamt"
@ -2007,7 +2020,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentation"
@ -4599,7 +4612,9 @@ msgstr "MySQL&nbsp;4.0 kompatibel"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
#, fuzzy
#| msgid "Create new database"
msgid "Create database"
msgstr "Neue Datenbank anlegen"
#: libraries/display_create_database.lib.php:33
@ -5002,7 +5017,7 @@ msgstr "Erzeuge View"
msgid "Link not found"
msgstr "Der Verweis wurde nicht gefunden."
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr "Versionsinformationen"
@ -6788,7 +6803,7 @@ msgstr ""
"s&quot;."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr "Tabellenformat"
@ -7036,27 +7051,27 @@ msgstr "PHP Erweiterung"
msgid "Show PHP information"
msgstr "PHP-Informationen anzeigen"
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr "Wiki"
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr "Offizielle Homepage "
#: main.php:214
#: main.php:217
msgid "Contribute"
msgstr "Mitmachen"
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr "Unterstützung erhalten"
#: main.php:216
#: main.php:219
msgid "List of changes"
msgstr "Liste der Änderungen"
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -7069,7 +7084,7 @@ msgstr ""
"leicht von außen auf ihn zugreifen. Sie sollten diese Sicherheitslücke "
"unbedingt schließen!"
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@ -7079,7 +7094,7 @@ msgstr ""
"aktiviert. Diese ist nicht kompatibel zu phpMyAdmin, weshalb es zu Problemen "
"und Datenverlust kommen kann."
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@ -7090,7 +7105,7 @@ msgstr ""
"Erweiterung ist phpMyAdmin nicht in der Lage Zeichenketten zu trennen, was "
"zu unerwarteten Ergebnissen führen kann."
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -7102,7 +7117,7 @@ msgstr ""
"die in phpMyAdmin konfigurierte Cookiegültigkeit, deshalb wird Ihre "
"Anmeldung eher ablaufen als in phpMyAdmin konfiguriert."
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@ -7111,13 +7126,13 @@ msgstr ""
"phpMyAdmin eingestellt ist, daher wird Ihre Anmeldung eher ablaufen als in "
"phpMyAdmin konfiguriert."
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Ab sofort muss ein geheimes Passwort zur Verschlüsselung in der "
"Konfigurationsdatei gesetzt werden (blowfish_secret)."
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@ -7126,7 +7141,7 @@ msgstr ""
"Das [code]config[/code] Unterverzeichnis des Installationsskripts ist noch "
"vorhanden. Sie sollten es nach der Konfiguration von phpMyAdmin entfernen."
#: main.php:296
#: main.php:299
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@ -7136,7 +7151,7 @@ msgstr ""
"einige erweiterte Funktionen wurden deaktiviert. Klicken Sie %shier%s, um "
"herauszufinden warum."
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@ -7146,7 +7161,7 @@ msgstr ""
"von phpMyAdmin stehen daher nicht zur Verfügung. Zum Beispiel wird die "
"Navigation nicht automatisch aktualisiert."
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@ -7155,7 +7170,7 @@ msgstr ""
"Die Version der verwendeten PHP MySQL Bibliothek %s unterscheidet sich von "
"der Version des MySQL Servers %s. Dies kann zu unerwartetem Verhalten führen."
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@ -7164,7 +7179,7 @@ msgstr ""
"Der Server läuft mit Suhosin. Bitte lesen Sie die %sDokumentation%s wegen "
"möglicher Probleme."
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr "Keine Datenbanken"
@ -7516,20 +7531,20 @@ msgstr "Es wurden %s Datenbanken gelöscht."
msgid "Databases statistics"
msgstr "Statistik über alle Datenbanken"
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr "Master Replikation"
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr "Slave Replikation"
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr "Datenbankstatistiken aktivieren"
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -8017,8 +8032,9 @@ msgid "Unable to change master"
msgstr "Kann Master nicht wechseln"
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
#, fuzzy, php-format
#| msgid "Master server changed succesfully to %s"
msgid "Master server changed successfully to %s"
msgstr "Master-Server wurde erfolgreich auf %s geändert."
#: server_replication.php:180
@ -9761,98 +9777,98 @@ msgstr "Tabelle %s wurde nach %s kopiert."
msgid "The table name is empty!"
msgstr "Der Tabellenname ist leer!"
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr "Tabelle sortieren nach"
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr "(einmalig)"
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr "Verschiebe Tabelle nach (Datenbank<b>.</b>Tabellenname):"
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr "Tabellenoptionen"
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr "Tabelle umbenennen in"
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr "Kopiere Tabelle nach (Datenbank<b>.</b>Tabellenname):"
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr "Zur kopierten Tabelle wechseln"
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr "Hilfsmittel"
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr "Tabelle defragmentieren"
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr ""
"Die Tabelle %s wurde geschlossen und zwischengespeicherte Daten gespeichert."
#: tbl_operations.php:669
#: tbl_operations.php:668
msgid "Flush the table (FLUSH)"
msgstr "Leeren des Tabellencaches (\"FLUSH\")"
#: tbl_operations.php:678
#: tbl_operations.php:677
msgid "Delete data or table"
msgstr "Daten oder Tabelle löschen"
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr "Tabelle leeren (TRUNCATE)"
#: tbl_operations.php:713
#: tbl_operations.php:712
msgid "Delete the table (DROP)"
msgstr "Tabelle löschen (DROP)"
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr "Partitions-Hilfsmittel"
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr "Partition %s"
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr "Analysieren"
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr "Überprüfen"
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr "Optimieren"
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr "Neuaufbauen"
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr "Reparieren"
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr "Entferne die Partitionierung"
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr "Prüfe referentielle Integrität:"
@ -10072,7 +10088,7 @@ msgstr "Version %s Schnappschuss (SQL code)"
#: tbl_tracking.php:382
#, fuzzy
#| msgid "Track these data definition statements:"
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr "Verfolge diese Datenbeschreibungsbefehle (DDL):"
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -10084,7 +10100,7 @@ msgstr "Fehler sammeln"
#: tbl_tracking.php:399
#, fuzzy
#| msgid "Track these data manipulation statements:"
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr "Verfolge diese Datenbearbeitungsbefehle (DML):"
#: tbl_tracking.php:411

418
po/el.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

398
po/es.po

File diff suppressed because it is too large Load Diff

340
po/et.po

File diff suppressed because it is too large Load Diff

340
po/eu.po

File diff suppressed because it is too large Load Diff

335
po/fa.po

File diff suppressed because it is too large Load Diff

338
po/fi.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
"PO-Revision-Date: 2010-11-26 21:29+0200\n"
"Last-Translator: <asdfsdf@asdfasdfasdf.com>\n"
"Language-Team: finnish <fi@li.org>\n"
@ -70,8 +70,8 @@ msgstr "Etsi"
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -125,7 +125,7 @@ msgid "Database comment: "
msgstr "Tietokannan kommentti: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Taulun kommentit"
@ -294,15 +294,15 @@ msgstr "Tuhoa tietokanta (DROP)"
msgid "Copy database to"
msgstr "Luo tietokannasta toinen tietokanta nimellä"
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Vain rakenne"
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Rakenne ja tiedot"
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Vain tiedot"
@ -312,17 +312,17 @@ msgstr "Suorita CREATE DATABASE ennen kopiointia"
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Lisää %s"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Lisää AUTO_INCREMENT-arvo"
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Lisää rajoitteet"
@ -334,7 +334,7 @@ msgstr "Siirry kopioituun tietokantaan"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -427,14 +427,14 @@ msgstr "Järjestys"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr "Nouseva"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr "Laskeva"
@ -588,17 +588,17 @@ msgstr "Sarakkeen sisältä:"
msgid "No tables found in database"
msgstr "Tietokannassa ei ole tauluja."
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Taulu %s on tyhjennetty"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Näkymä %s on poistettu"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Taulu %s on poistettu"
@ -642,20 +642,20 @@ msgstr "%s on tämän MySQL-palvelimen oletustallennusmoottori."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Valitut:"
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Valitse kaikki"
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Poista valinta kaikista"
@ -685,25 +685,25 @@ msgstr "Tyhjennä"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Tuhoa"
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr "Tarkista taulu"
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimoi taulu"
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr "Korjaa taulu"
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analysoi taulu"
@ -738,7 +738,7 @@ msgstr "Seurattavat taulut"
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -765,7 +765,7 @@ msgid "Status"
msgstr "Tila"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -932,7 +932,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "SQL-kyselyn suoritus onnistui"
@ -1128,6 +1128,18 @@ msgstr "Piilota SQL-kyselykenttä"
msgid "Show search results"
msgstr "Näytä kyselykenttä"
#: js/messages.php:86
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Selaa"
#: js/messages.php:87
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Poistetaan: %s"
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1145,7 +1157,16 @@ msgstr "Näytä kyselykenttä"
msgid "Inline Edit"
msgstr "Rivin muokkaus"
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Muokkaa"
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1153,71 +1174,71 @@ msgstr "Rivin muokkaus"
msgid "Save"
msgstr "Tallenna"
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Kätke"
#: js/messages.php:100
#: js/messages.php:101
#, fuzzy
#| msgid "Hide query box"
msgid "Hide search criteria"
msgstr "Piilota SQL-kyselykenttä"
#: js/messages.php:101
#: js/messages.php:102
#, fuzzy
#| msgid "Show query box"
msgid "Show search criteria"
msgstr "Näytä kyselykenttä"
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Älä huomioi"
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr "Valitse viitattava avain"
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr "Valitse liiteavain"
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr "Valitse perusavain tai uniikki avain"
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Valitse näytettävä sarake"
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr "Lisää asetus sarakkeelle"
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr "Keksi salasana"
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Keksi"
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr "Vaihda salasana"
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr "Lisää"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1227,30 +1248,30 @@ msgstr ""
"Uusin versio on %s, ja se on julkaistu %s."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "Tarkista uusin versio"
#: js/messages.php:128
#: js/messages.php:129
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Siirry tietokantaan"
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr "Valmis"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr "Edellinen"
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1258,231 +1279,231 @@ msgid "Next"
msgstr "Seuraava"
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr "Tänään"
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr "Tammi"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr "Helmi"
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr "Maalis"
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr "Huhti"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "Touko"
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr "Kesä"
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr "Heinä"
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr "Elo"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr "Syys"
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr "Loka"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr "Marras"
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr "Joulu"
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Tammi"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Helmi"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Maalis"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Huhti"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Touko"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Kesä"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Heinä"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Elo"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Syys"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Loka"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Marras"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Joulu"
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr "Su"
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr "Ma"
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr "Ti"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr "Ke"
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr "To"
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr "Pe"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr "La"
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Su"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Ti"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Ke"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "To"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Pe"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "La"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr "Ma"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr "Ti"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr "Ke"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr "To"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr "Pe"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr "La"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr "Vko"
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr "Tunti"
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr "Minuutti"
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr "Sekunti"
@ -1557,14 +1578,6 @@ msgstr "Kardinaliteetti"
msgid "Comment"
msgstr "Kommentti"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Muokkaa"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr "Perusavain on poistettu"
@ -1592,7 +1605,7 @@ msgstr "Tietokannat"
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Virhe"
@ -1863,7 +1876,7 @@ msgid "Data"
msgstr "Tietoa"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Yhteensä"
@ -1999,7 +2012,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr "Ohjeet"
@ -4692,7 +4705,9 @@ msgstr "MySQL&nbsp;4.0 -yhteensopiva"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
#, fuzzy
#| msgid "Create new database"
msgid "Create database"
msgstr "Luo uusi tietokanta"
#: libraries/display_create_database.lib.php:33
@ -5161,7 +5176,7 @@ msgstr "Luo käyttäjä"
msgid "Link not found"
msgstr "Linkkiä ei löydy"
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr "Versiotiedot"
@ -6965,7 +6980,7 @@ msgstr ""
"tekee."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr "Tallennusmoottori"
@ -7260,32 +7275,32 @@ msgstr "PHP-laajennus"
msgid "Show PHP information"
msgstr "Näytä PHP:n asetustiedot"
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr "Wiki"
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr "phpMyAdminin kotisivut"
#: main.php:214
#: main.php:217
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Attribuutit"
#: main.php:215
#: main.php:218
#, fuzzy
msgid "Get support"
msgstr "Vienti"
#: main.php:216
#: main.php:219
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Ei muutoksia"
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -7296,7 +7311,7 @@ msgstr ""
"(root ilman salasanaa). Tällaisin asetuksin MySQL-palvelin on altis "
"hyökkäyksille. Tämä tietoturvariski on syytä korjata pikimmiten!"
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@ -7306,7 +7321,7 @@ msgstr ""
"valinta ei sovi yhteen phpMyAdminin kanssa ja saattaa johtaa tietojen "
"katoamiseen!"
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@ -7316,7 +7331,7 @@ msgstr ""
"olevan käytössä. Ilman mbstring-laajennusta phpMyAdmin ei osaa jaotella "
"merkkijonoja oikein, ja tästä saattaa koitua odottamattomia seurauksia."
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -7328,7 +7343,7 @@ msgstr ""
"phpMyAdminissa määritetty evästekelpoisuus. Siksi kirjautumisesi erääntyy "
"nopeammin kuin phpMyAdminissa on määritetty."
#: main.php:271
#: main.php:274
#, fuzzy
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
@ -7344,11 +7359,11 @@ msgstr ""
"phpMyAdminissa määritetty evästekelpoisuus. Siksi kirjautumisesi erääntyy "
"nopeammin kuin phpMyAdminissa on määritetty."
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Asetustiedosto vaatii nyt salalausetta (blowfish_secret)."
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@ -7358,7 +7373,7 @@ msgstr ""
"hakemistossa. Sinun tulee poistaa kansio, kun phpMyAdminin asetukset on "
"määritetty."
#: main.php:296
#: main.php:299
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@ -7370,14 +7385,14 @@ msgstr ""
"Linkitettyihin tauluihin liittyvät lisäominaisuudet eivät ole käytössä. "
"Katso %slisätietoja%s."
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@ -7386,7 +7401,7 @@ msgstr ""
"PHP:n MySQL-kirjaston versio %s poikkeaa MySQL-palvelimen versiosta %s. "
"Tästä voi koitua arvaamattomia seurauksia."
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@ -7395,7 +7410,7 @@ msgstr ""
"Palvelin käyttää Suhosin-suojausjärjestelmää. Lue %sohjeista%s tietoja "
"mahdollisista ongelmista."
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr "Ei tietokantoja"
@ -7788,20 +7803,20 @@ msgstr "%s tietokantaa poistettiin onnistuneesti."
msgid "Databases statistics"
msgstr "Tietokantatilastot"
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr "Isäntäpalvelimen kahdennus"
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr "Alipalvelimen kahdennus"
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr "Näytä tilastot"
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -8290,8 +8305,9 @@ msgid "Unable to change master"
msgstr "Pääpalvelinta ei voitu vaihtaa"
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
#, fuzzy, php-format
#| msgid "Master server changed succesfully to %s"
msgid "Master server changed successfully to %s"
msgstr "Isäntäpalvelimeksi on onnistuen vaihdettu %s"
#: server_replication.php:180
@ -10105,103 +10121,103 @@ msgstr "Taulu %s on kopioitu uuteen tauluun %s."
msgid "The table name is empty!"
msgstr "Taulun nimi puuttuu!"
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr "Lajittele taulu"
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr "(yksitellen)"
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr "Siirrä taulu toiseen tauluun (tietokanta<b>.</b>taulu):"
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr "Taulun valinnat"
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr "Nimeä taulu uudelleen"
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr "Kopioi taulu toiseen tauluun nimellä (tietokanta<b>.</b>taulu):"
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr "Siirry kopioituun tauluun"
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr "Taulun ylläpito"
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr "Eheytä taulu"
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr "Taulun %s välimuisti on tyhjennetty"
#: tbl_operations.php:669
#: tbl_operations.php:668
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Tyhjennä taulun välimuisti (\"FLUSH\")"
#: tbl_operations.php:678
#: tbl_operations.php:677
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
msgstr "Poista tämän taulun seurantatiedot"
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr ""
#: tbl_operations.php:713
#: tbl_operations.php:712
#, fuzzy
#| msgid "Go to database"
msgid "Delete the table (DROP)"
msgstr "Siirry tietokantaan"
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr "Osituksen ylläpito"
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr "Ositus %s"
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr "Analysoi"
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr "Tarkasta"
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr "Optimoi"
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr "Rakenna uudestaan"
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr "Korjaa"
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr "Poista ositus"
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr "Tarkista viitteiden eheys:"
@ -10435,7 +10451,7 @@ msgstr "Version %s kuvaus (SQL-koodi)"
#: tbl_tracking.php:382
#, fuzzy
#| msgid "Track these data definition statements:"
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr "Seuraa näitä tiedon määritelmän lauseita:"
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -10447,7 +10463,7 @@ msgstr "Älä välitä virheistä"
#: tbl_tracking.php:399
#, fuzzy
#| msgid "Track these data manipulation statements:"
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr "Seuraa näitä tiedon käsittelyn lauseita:"
#: tbl_tracking.php:411

415
po/fr.po

File diff suppressed because it is too large Load Diff

338
po/gl.po

File diff suppressed because it is too large Load Diff

340
po/he.po

File diff suppressed because it is too large Load Diff

338
po/hi.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
"PO-Revision-Date: 2011-05-06 09:13+0200\n"
"Last-Translator: <manojonemail@gmail.com>\n"
"Language-Team: hindi <hi@li.org>\n"
@ -69,8 +69,8 @@ msgstr "खोजें"
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -124,7 +124,7 @@ msgid "Database comment: "
msgstr "डाटाबेस टिप्पणि: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr " टेबल टिप्पणि:"
@ -293,15 +293,15 @@ msgstr "ड्रॉप डेटाबेस (छोड़ें)"
msgid "Copy database to"
msgstr "डेटाबेस को ______ में कॉपी करें"
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "केवल संरचना"
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "संरचना और डाटा"
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "केवल डाटा"
@ -311,17 +311,17 @@ msgstr "डेटाबेस कॉपी करने से पहले ड
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "%s जोडें"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT मूल्य जोडें"
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "शर्तें जोडें"
@ -333,7 +333,7 @@ msgstr "नक़ल किये गए डाटाबेस पर जाय
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -426,14 +426,14 @@ msgstr "सॉर्ट"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr "आरोही"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr "अवरोही"
@ -587,17 +587,17 @@ msgstr "काँलम के अंदर:"
msgid "No tables found in database"
msgstr "डाटाबेस में कोई टेबल नहीं।"
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr " टेबल %s को खाली किया गया है."
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "द्रश्य %s रद्द दिया गया है."
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr " टेबल %s को रद्द किया गया है."
@ -639,20 +639,20 @@ msgstr "%s इस MySQL सर्वर पर डिफ़ॉल्ट भं
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "चुने हुओं को:"
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "सभी को चेक करें"
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr " सभी को अनचेक करें"
@ -682,25 +682,25 @@ msgstr "खाली करें"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "छोड़ें"
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr " टेबल को चेक करें"
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr "टेबल को अनुकूलित करें"
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr "टेबल को टीक करें"
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr "टेबल का विश्लेषण करें"
@ -735,7 +735,7 @@ msgstr "ट्रैक की गयी टेबलएं"
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -762,7 +762,7 @@ msgid "Status"
msgstr "स्थिति"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -926,7 +926,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "आपकी SQL कुएरी सफलता के साथ पूरी की गई है."
@ -1121,6 +1121,18 @@ msgstr "खोज मापदंड छिपाना"
msgid "Show search results"
msgstr "खोज मापदंड दिखाना"
#: js/messages.php:86
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "ब्राउज़"
#: js/messages.php:87
#, fuzzy
#| msgid "Delete"
msgid "Deleting"
msgstr "मिटाएँ"
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1138,7 +1150,16 @@ msgstr "क्वेरी बॉक्स दिखाएँ"
msgid "Inline Edit"
msgstr "इनलाइन संपादन"
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "सम्पादन"
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1146,67 +1167,67 @@ msgstr "इनलाइन संपादन"
msgid "Save"
msgstr "बचाना"
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "छिपाना"
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr "खोज मापदंड छिपाना"
#: js/messages.php:101
#: js/messages.php:102
msgid "Show search criteria"
msgstr "खोज मापदंड दिखाना"
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "ध्यान न देना"
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr "संदर्भित कुंजी का चयन करें."
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr "विदेश कुंजी का चयन करें."
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें"
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "प्रदर्शित करने के लिए काँलम चयन करें."
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr "काँलम के लिए एक विकल्प जोड़ें"
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr "पासव्रड उत्पन्न करें"
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "उत्पन्न"
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr "पासवर्ड बदलिये "
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr "अधिक"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1215,28 +1236,28 @@ msgstr ""
"phpMyAdmin का एक नया संस्करण उपलब्ध है, यह नया संस्करण %s है,और यह %s को प्रकाशित हुआ"
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
msgid ", latest stable version:"
msgstr ", नवीनतम स्थिर संस्करण:"
#: js/messages.php:128
#: js/messages.php:129
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "डेटाबेस को कूद"
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr "किया"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr "पिछला"
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1244,231 +1265,231 @@ msgid "Next"
msgstr " अगला"
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr "आज"
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr "जनवरी"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr "फरवरी"
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr "मार्च"
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr "अप्रैल"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "मई"
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr "जून"
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr "जुलाई"
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr "अगस्त"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr "सितम्बर"
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr "अक्तूबर"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr "नवम्बर"
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr "दिसम्बर"
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "जनवरी"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "फरवरी"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "मार्च"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "अप्रैल"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "मई"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "जून"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "जुलाई"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "अगस्त"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "सितम्बर"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "अक्तूबर"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "नवम्बर"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "दिसमबर"
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr "रविवार"
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr "सोमवार"
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr "मन्गलवार"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr "बुधवार"
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr "गुरूवार"
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr "शुक्रवार"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr "शनिवार"
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "रविवार"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "सोमवार"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "मन्गलवार"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "बुधवार"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "गुरुवार"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "शुक्रवार"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "शनिवार"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr "रविवार"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr "सोमवार"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr "मन्गलवार"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr "बुधवार"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr "गुरुवार"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr "शुक्रवार"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr "शनिवार"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr "हफ्ता"
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr "घंटा"
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr "मिनट"
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr "सेकंड"
@ -1541,14 +1562,6 @@ msgstr "प्रमुखता"
msgid "Comment"
msgstr "टिप्पणी"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "सम्पादन"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr "प्राथमिक कुंजी गिरा दी गयी है"
@ -1574,7 +1587,7 @@ msgstr " डाटाबेस"
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "त्रुटि"
@ -1838,7 +1851,7 @@ msgid "Data"
msgstr "डाटा"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "कुल"
@ -1974,7 +1987,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr "डोक्युमेंटेशन"
@ -4428,7 +4441,9 @@ msgstr "MySQL 4.0 संगत"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
#, fuzzy
#| msgid "Create new database"
msgid "Create database"
msgstr " नया डाटाबेस बनाओ"
#: libraries/display_create_database.lib.php:33
@ -4814,7 +4829,7 @@ msgstr "दृश्य बनाइये"
msgid "Link not found"
msgstr "लिंक नहीं मिला"
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr "संस्करण जानकारी"
@ -6491,7 +6506,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr ""
@ -6699,31 +6714,31 @@ msgstr "PHPविस्तार"
msgid "Show PHP information"
msgstr "PHP कि जानकारी दिखाओ"
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr "विकी"
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr "phpMyAdmin का आधिकारिक होमपेज"
#: main.php:214
#: main.php:217
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "विकी"
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr "समर्थन पाएं"
#: main.php:216
#: main.php:219
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "परिवर्तनों की सूची"
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -6731,21 +6746,21 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -6753,24 +6768,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
#: main.php:296
#: main.php:299
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@ -6782,28 +6797,28 @@ msgstr ""
"लिंक्ड टेबलओं के साथ काम करने के लिए अतिरिक्त सुविधाओं को निष्क्रिय कर दिया गया है. क्यों ये "
"किया गया है, जानने के लिए %shere%s पर क्लिक करें."
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr "कोइ डाटाबेस नहिं"
@ -7174,20 +7189,20 @@ msgstr "%s डाटाबेस को सफलता से डिलीट
msgid "Databases statistics"
msgstr " डाटाबेसों के आँकडे"
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr ""
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr ""
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr "आँकडे Enable करें"
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -7654,8 +7669,9 @@ msgid "Unable to change master"
msgstr "मास्टर बदलने मैं असमर्थ"
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
#, fuzzy, php-format
#| msgid "Master server changed succesfully to %s"
msgid "Master server changed successfully to %s"
msgstr "मास्टर सर्वर सफलतापूर्वक परिवर्तित %s"
#: server_replication.php:180
@ -9171,97 +9187,97 @@ msgstr " %s टेबल को %s में कापी कर दिया."
msgid "The table name is empty!"
msgstr " टेबल का नाम खाली है!"
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr "टेबल क्रमांक को बदलिये "
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr "(अकेले)"
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr " टेबल को (database<b>.</b>table) में मूव करें:"
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr "टेबल विकल्प"
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr "टेबल का नाम बदलें"
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr " (database<b>.</b>table) में टेबल को कापी करें:"
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr "नकल की टेबल पर स्विच करें"
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr " टेबल रख-रखाव"
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr "देफ्रागमेंट टेबल"
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr " टेबल %s को flush किया"
#: tbl_operations.php:669
#: tbl_operations.php:668
msgid "Flush the table (FLUSH)"
msgstr " टेबल को Flush करें (\"FLUSH\")"
#: tbl_operations.php:678
#: tbl_operations.php:677
msgid "Delete data or table"
msgstr "टेबल या डेटा हटाएँ"
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr "टेबल को खाली करें"
#: tbl_operations.php:713
#: tbl_operations.php:712
msgid "Delete the table (DROP)"
msgstr "डेटाबेस को ______ छोड़ें "
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr "विभाजन रखरखाव"
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr "विभाजन %s"
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr "विश्लेषण"
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr "चेक"
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr "सुधारना"
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr "फिर से बनाना"
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr "मरम्मत"
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr "विभाजन हटायें"
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr "Referential अखंडता की जाँच करें"
@ -9475,7 +9491,7 @@ msgstr "संस्करण %s क्षणचित्र (SQL कोड)"
#: tbl_tracking.php:382
#, fuzzy
#| msgid "Track these data definition statements:"
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr "डेटा परिभाषा पर नज़र रखना"
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -9487,7 +9503,7 @@ msgstr "त्रुटियों को इकट्ठा करें"
#: tbl_tracking.php:399
#, fuzzy
#| msgid "Track these data manipulation statements:"
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr "डेटा आपरेशन पर नज़र रखना"
#: tbl_tracking.php:411

340
po/hr.po

File diff suppressed because it is too large Load Diff

445
po/hu.po

File diff suppressed because it is too large Load Diff

340
po/id.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
"PO-Revision-Date: 2011-04-16 22:04+0200\n"
"Last-Translator: <aris_feryanto@yahoo.com>\n"
"Language-Team: indonesian <id@li.org>\n"
@ -70,8 +70,8 @@ msgstr "Cari"
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -125,7 +125,7 @@ msgid "Database comment: "
msgstr "Komentar Database: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Komentar tabel"
@ -294,15 +294,15 @@ msgstr "Buang database (DROP)"
msgid "Copy database to"
msgstr "Salin database ke"
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Struktur saja"
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktur dan data"
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Data saja"
@ -312,17 +312,17 @@ msgstr "CIPTAKAN DATABASE sebelum menyalin"
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Tambah %s"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Menambahkan nilai AUTO_INCREMENT"
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Menambahkan pembatas"
@ -334,7 +334,7 @@ msgstr "Pindah ke database yang disalin"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -426,14 +426,14 @@ msgstr "Urutkan"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr "Urutan menaik"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr "Urutan menurun"
@ -585,17 +585,17 @@ msgstr "Di dalam kolom:"
msgid "No tables found in database"
msgstr "Tidak ada tabel dalam database."
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabel %s telah dikosongkan"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Pandangan %s telah dibubarkan"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabel %s telah dihapus"
@ -639,20 +639,20 @@ msgstr "%s adalah mesin penyimpan utama pada server MySQL ini."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "yang ditandai:"
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Pilih semua"
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Balik pilihan"
@ -682,25 +682,25 @@ msgstr "Mengosongkan"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Hapus"
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr "Periksa tabel"
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimasikan tabel"
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr "Perbaiki tabel"
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analisa tabel"
@ -733,7 +733,7 @@ msgstr "Tabel-tabel yang dilacak"
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -760,7 +760,7 @@ msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -927,7 +927,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Query SQL Anda berhasil dieksekusi"
@ -1125,6 +1125,18 @@ msgstr "Sembunyikan kriteria pencarian"
msgid "Show search results"
msgstr "Tampilkan kriteria pencarian"
#: js/messages.php:86
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Browse"
#: js/messages.php:87
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Menghapus %s"
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1142,7 +1154,16 @@ msgstr "Tampilkan kotak query"
msgid "Inline Edit"
msgstr "Inline Edit"
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ubah"
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1150,67 +1171,67 @@ msgstr "Inline Edit"
msgid "Save"
msgstr "Simpan"
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Sembunyikan"
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr "Sembunyikan kriteria pencarian"
#: js/messages.php:101
#: js/messages.php:102
msgid "Show search criteria"
msgstr "Tampilkan kriteria pencarian"
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Abaikan"
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr "Pilih kunci rujukan"
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr "Pilih Foreign Key"
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr "Silakan pilih primary key atau sebuah unique key"
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Pilih kolom untuk ditampilkan"
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr "Tambahkan pilihan untuk kolom"
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr "Menghasilkan kata sandi"
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Menghasilkan"
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr "Ubah Kata Sandi"
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr "Selebihnya"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1220,28 +1241,28 @@ msgstr ""
"untuk meng-upgrade. Versi terbaru adalah %s, dirilis pada %s."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
msgid ", latest stable version:"
msgstr ", versi stabil terakhir:"
#: js/messages.php:128
#: js/messages.php:129
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Beralih ke database"
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr "Selesai"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr "Sebelumnya"
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1249,231 +1270,231 @@ msgid "Next"
msgstr "Berikutnya"
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr "Hari ini"
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr "Januari"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr "Februari"
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr "Maret"
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr "April"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "Mei"
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr "Juni"
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr "Juli"
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr "Agustus"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr "September"
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr "Oktober"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr "November"
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr "Desember"
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Januari"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Februari"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Maret"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "April"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Mei"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Juni"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Juli"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Agustus"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "September"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Oktober"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nopember"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Desember"
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr "Minggu"
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr "Senin"
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr "Selasa"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr "Rabu"
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr "Kamis"
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr "Jumat"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr "Sabtu"
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Minggu"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Senin"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Selasa"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Rabu"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Kamis"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Jumat"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sabtu"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr "Minggu"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr "Senin"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr "Selasa"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr "Rabu"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr "Kamis"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr "Jumat"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr "Sabtu"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr "Mingguan"
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr "Jam"
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr "Menit"
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr "Detik"
@ -1548,14 +1569,6 @@ msgstr "Bilangan Pokok"
msgid "Comment"
msgstr "Komentar"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ubah"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr "Kunci utama telah dihapus"
@ -1583,7 +1596,7 @@ msgstr "Basisdata"
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Error"
@ -1856,7 +1869,7 @@ msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Jumlah"
@ -1995,7 +2008,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentasi"
@ -4503,7 +4516,9 @@ msgstr "MySQL&nbsp;4.0 compatible"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
#, fuzzy
#| msgid "Create new database"
msgid "Create database"
msgstr "Ciptakan database baru"
#: libraries/display_create_database.lib.php:33
@ -4940,7 +4955,7 @@ msgstr "Membuat versi"
msgid "Link not found"
msgstr "Link tidak ditemukan"
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr "Informasi tentang versi"
@ -6704,7 +6719,7 @@ msgstr ""
"penulis tentang artinya %s."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr "Mesin Penyimpan"
@ -6978,31 +6993,31 @@ msgstr "Versi PHP"
msgid "Show PHP information"
msgstr "Tampilkan informasi PHP"
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr "Wiki"
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr "Homepage resmi phpMyAdmin"
#: main.php:214
#: main.php:217
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Atribut"
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr ""
#: main.php:216
#: main.php:219
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Tidak ada perubahan"
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -7015,7 +7030,7 @@ msgstr ""
"penyerangan. Disarankan untuk memperbaiki kelemahan keamanan (security hole) "
"ini."
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@ -7024,7 +7039,7 @@ msgstr ""
"Fungsi mbstring.func_overload aktif pada konfigurasi PHP Anda. Pilihan ini "
"tidak cocok dengan phpMyAdmin dan mampu merusak sebagian data!"
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@ -7035,7 +7050,7 @@ msgstr ""
"baris-baris dengan cara yang benar. Hal ini mampu mengakibatkan hasil yang "
"tidak diinginkan."
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -7043,18 +7058,18 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"File konfigurasi membutuhkan susunan kata-kata rahasia (blowfish_secret)."
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@ -7064,7 +7079,7 @@ msgstr ""
"di direktori phpMyAdmin Anda. Anda harus menghapus nya setelah phpMyAdmin di "
"konfigurasi."
#: main.php:296
#: main.php:299
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@ -7076,28 +7091,28 @@ msgstr ""
"Fasilitas penambahan untuk bekerja dengan tabel yang di-link di nonaktifkan. "
"Untuk mengetahui sebabnya silakan klik %sdisini%s."
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr "Database tidak ditemukan"
@ -7479,20 +7494,20 @@ msgstr "Sukses menghapus database %s."
msgid "Databases statistics"
msgstr "Statistik Database"
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr ""
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr ""
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr "Menggiatkan Statistik"
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -7989,9 +8004,10 @@ msgid "Unable to change master"
msgstr ""
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
msgstr ""
#, fuzzy, php-format
#| msgid "The privileges were reloaded successfully."
msgid "Master server changed successfully to %s"
msgstr "Sukses reload Hak Istimewa (Privileges)."
#: server_replication.php:180
msgid "This server is configured as master in a replication process."
@ -9542,103 +9558,103 @@ msgstr "Tabel %s telah disalin ke %s."
msgid "The table name is empty!"
msgstr "Nama tabel kosong!"
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr "Urutkan tabel berdasarkan"
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr "(unik)"
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr "Pindahkan tabel ke (database<b>.</b>tabel):"
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr "Pilihan untuk tabel"
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr "Ubah nama tabel menjadi "
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr "Salin tabel ke (database<b>.</b>nama tabel):"
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr "Pindah ke tabel salinan"
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr "Pemeliharaan tabel"
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr "Defragmentasikan tabel"
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabel %s telah dibuang"
#: tbl_operations.php:669
#: tbl_operations.php:668
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Tutup tabel (\"FLUSH\")"
#: tbl_operations.php:678
#: tbl_operations.php:677
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
msgstr "Hapus pelacakan data untuk tabel ini"
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr ""
#: tbl_operations.php:713
#: tbl_operations.php:712
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "Database tidak ditemukan"
#: tbl_operations.php:734
#: tbl_operations.php:733
#, fuzzy
msgid "Partition maintenance"
msgstr "Pemeliharaan tabel"
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr ""
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr "Analisa"
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr "Tandai"
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr ""
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr ""
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr "Perbaiki"
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr ""
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr "Cek integriti referensial:"
@ -9863,7 +9879,7 @@ msgstr "Versi %s snapshot (kode SQL)"
#: tbl_tracking.php:382
#, fuzzy
#| msgid "Track these data definition statements:"
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr "Lacak definisi data dari pernyataan berikut:"
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -9875,7 +9891,7 @@ msgstr "Tipe Pencarian"
#: tbl_tracking.php:399
#, fuzzy
#| msgid "Track these data manipulation statements:"
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr "Lacak manipulasi data dari pernyataan berikut:"
#: tbl_tracking.php:411

338
po/it.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
"PO-Revision-Date: 2011-04-05 14:27+0200\n"
"Last-Translator: <rebeluca@gmail.com>\n"
"Language-Team: italian <it@li.org>\n"
@ -71,8 +71,8 @@ msgstr "Cerca"
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -126,7 +126,7 @@ msgid "Database comment: "
msgstr "Commento del database: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Commenti alla tabella"
@ -295,15 +295,15 @@ msgstr "Cancella il database (DROP)"
msgid "Copy database to"
msgstr "Copia il database a"
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Solo struttura"
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struttura e dati"
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Solo dati"
@ -313,17 +313,17 @@ msgstr "CREATE DATABASE prima di copiare"
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Aggiungi %s"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Aggiungi valore AUTO_INCREMENT"
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Aggiungi vincoli"
@ -335,7 +335,7 @@ msgstr "Passa al database copiato"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -428,14 +428,14 @@ msgstr "Ordinamento"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr "Crescente"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr "Decrescente"
@ -589,17 +589,17 @@ msgstr "All'interno della colonna:"
msgid "No tables found in database"
msgstr "Non ci sono tabelle nel database"
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "La tabella %s è stata svuotata"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "La vista %s è stata eliminata"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "La tabella %s è stata eliminata"
@ -643,20 +643,20 @@ msgstr "%s è il motore di memorizzazione predefinito su questo server MySQL."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Se selezionati:"
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Seleziona tutti"
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Deseleziona tutti"
@ -686,25 +686,25 @@ msgstr "Svuota"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Elimina"
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr "Controlla tabella"
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Ottimizza tabella"
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr "Ripara tabella"
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analizza tabella"
@ -739,7 +739,7 @@ msgstr "Tabelle monitorate"
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -766,7 +766,7 @@ msgid "Status"
msgstr "Stato"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -939,7 +939,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "La query SQL è stata eseguita con successo"
@ -1135,6 +1135,18 @@ msgstr "Nascondi criteri di ricerca"
msgid "Show search results"
msgstr "Mostra criteri di ricerca"
#: js/messages.php:86
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Mostra"
#: js/messages.php:87
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Cancellazione in corso di %s"
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1152,7 +1164,16 @@ msgstr "Mostra riquadro query SQL"
msgid "Inline Edit"
msgstr "Modifica in linea"
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Modifica"
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1160,67 +1181,67 @@ msgstr "Modifica in linea"
msgid "Save"
msgstr "Salva"
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Nascondi"
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr "Nascondi criteri di ricerca"
#: js/messages.php:101
#: js/messages.php:102
msgid "Show search criteria"
msgstr "Mostra criteri di ricerca"
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignora"
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr "Seleziona le chiavi referenziali"
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr "Seleziona Foreign Key"
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr "Seleziona la chiave primaria o una chiave univoca"
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Scegli la colonna da mostrare"
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr "Aggiungi un'opzione alla colonna "
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr "Genera password"
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Genera"
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr "Cambia password"
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr "Più"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1230,28 +1251,28 @@ msgstr ""
"l'aggiornamento. La versione più recente è la %s, rilasciata il %s."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
msgid ", latest stable version:"
msgstr ", versione stabile piú recente:"
#: js/messages.php:128
#: js/messages.php:129
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Vai al database"
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr "Fatto"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr "Precedente"
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1259,231 +1280,231 @@ msgid "Next"
msgstr "Prossimo"
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr "Oggi"
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr "Gennaio"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr "Febbraio"
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr "Marzo"
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr "Aprile"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "Maggio"
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr "Giugno"
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr "Luglio"
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr "Agosto"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr "Setttembre"
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr "Ottobre"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr "Novembre"
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr "Dicembre"
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Mag"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Giu"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Lug"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Ott"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Dic"
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr "Domenica"
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr "Lunedì"
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr "Martedì"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr "Mercoledì"
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr "Giovedì"
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr "Venerdì"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr "Sabato"
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Gio"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr "Do"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr "Gi"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr "Sett"
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr "Ora"
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr "Minuto"
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr "Secondo"
@ -1557,14 +1578,6 @@ msgstr "Cardinalità"
msgid "Comment"
msgstr "Commenti"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Modifica"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr "La chiave primaria è stata eliminata"
@ -1592,7 +1605,7 @@ msgstr "Database"
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Errore"
@ -1863,7 +1876,7 @@ msgid "Data"
msgstr "Dati"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Totale"
@ -2003,7 +2016,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr "Documentazione"
@ -4629,7 +4642,9 @@ msgstr "Compatibile con MySQL 4.0"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
#, fuzzy
#| msgid "Create new database"
msgid "Create database"
msgstr "Crea un nuovo database"
#: libraries/display_create_database.lib.php:33
@ -5032,7 +5047,7 @@ msgstr "Crea vista"
msgid "Link not found"
msgstr "Link non trovato"
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr "Informazioni sulla versione"
@ -6817,7 +6832,7 @@ msgstr ""
"chiedere all'autore cosa %s faccia."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr "Motore di Memorizzazione"
@ -7063,27 +7078,27 @@ msgstr "Estensioni PHP"
msgid "Show PHP information"
msgstr "Mostra le info sul PHP"
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr "Wiki"
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr "Home page ufficiale di phpMyAdmin"
#: main.php:214
#: main.php:217
msgid "Contribute"
msgstr "Contribuisci"
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr "Ricevi Auito"
#: main.php:216
#: main.php:219
msgid "List of changes"
msgstr "Lista dei cambiamenti"
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -7096,7 +7111,7 @@ msgstr ""
"dovresti realmente riparare a questa falla nella sicurezza impostando una "
"password per l'utente 'root'."
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@ -7106,7 +7121,7 @@ msgstr ""
"opzione è incompatibile con phpMyAdmin e potrebbe causare la corruzione di "
"alcuni dati!"
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@ -7117,7 +7132,7 @@ msgstr ""
"phpMyAdmin non è in grado di dividere correttamente le stringhe di caratteri "
"e questo può portare a risultati inaspettati."
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -7129,7 +7144,7 @@ msgstr ""
"validitá del cookie configurata in phpMyAdmin, per questo motivo, i dati di "
"login scadranno prima di come configurato in phpMyAdmin."
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@ -7138,13 +7153,13 @@ msgstr ""
"phpMyAdmin, per questo motivo, it tuo login scadrá prima di quanto "
"configurato in phpMyAdmin."
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Adesso c'è bisogno di una password per il file di configurazione "
"(blowfish_secret)."
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@ -7154,7 +7169,7 @@ msgstr ""
"installazione, esiste ancora nella cartella del tuo phpMyAdmin. Si consiglia "
"di rimuoverla una volta configurato phpMyAdmin."
#: main.php:296
#: main.php:299
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@ -7164,7 +7179,7 @@ msgstr ""
"caratteristiche aggiuntive sono state disattivate. Per scoprire perché "
"clicca %squi%s."
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@ -7174,7 +7189,7 @@ msgstr ""
"funzioni di phpMyAdmin saranno mancanti. Per esempio la navigazione dei "
"frame non sarà aggiornata automaticamente."
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@ -7183,7 +7198,7 @@ msgstr ""
"Le tue librerie di PHP per MySQL versione %s sono diverse dalla versione di "
"MySQL server %s. Potrebbe causare comportamenti imprevedibili."
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@ -7192,7 +7207,7 @@ msgstr ""
"Sul server è in esecuzione Suhosin. Controlla la documentazione: %"
"sdocumentation%s per possibili problemi."
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr "Nessun database"
@ -7543,20 +7558,20 @@ msgstr "%s databases sono stati cancellati correttamente."
msgid "Databases statistics"
msgstr "Statistiche dei databases"
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr "Replicazione master"
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr "Replicazione slave"
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr "Abilita le Statistiche"
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -8041,8 +8056,9 @@ msgid "Unable to change master"
msgstr "Impossibile modificare il master"
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
#, fuzzy, php-format
#| msgid "Master server changed succesfully to %s"
msgid "Master server changed successfully to %s"
msgstr "Il server master modificato a %s con successo"
#: server_replication.php:180
@ -9782,97 +9798,97 @@ msgstr "La tabella %s è stata copiata su %s."
msgid "The table name is empty!"
msgstr "Il nome della tabella è vuoto!"
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr "Altera tabella ordinata per"
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr "(singolarmente)"
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr "Sposta la tabella nel (database<b>.</b>tabella):"
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr "Opzioni della tabella"
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr "Rinomina la tabella in"
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr "Copia la tabella nel (database<b>.</b>tabella):"
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr "Passa alla tabella copiata"
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr "Amministrazione tabella"
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr "Deframmenta la tabella"
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr "La tabella %s è stata inizializzata"
#: tbl_operations.php:669
#: tbl_operations.php:668
msgid "Flush the table (FLUSH)"
msgstr "Ricarica la tabella (FLUSH)"
#: tbl_operations.php:678
#: tbl_operations.php:677
msgid "Delete data or table"
msgstr "Rimouvi la tabella o i dati"
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr "Svuota la tabella (TRUNCATE)"
#: tbl_operations.php:713
#: tbl_operations.php:712
msgid "Delete the table (DROP)"
msgstr "Elimina la tabbella (DROP)"
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr "Manutenzione partizione"
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr "Partizione %s"
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr "Analizza"
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr "Controlla"
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr "Ottimizza"
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr "Ricrea"
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr "Ripara"
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr "Rimuove partizionamento"
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr "Controlla l'integrità delle referenze:"
@ -10088,7 +10104,7 @@ msgstr "Versione %s del snapshot (codice SQL)"
#: tbl_tracking.php:382
#, fuzzy
#| msgid "Track these data definition statements:"
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr "Monitora le istuzioni delle definizioni dei dati:"
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -10100,7 +10116,7 @@ msgstr "Accumula gli errori"
#: tbl_tracking.php:399
#, fuzzy
#| msgid "Track these data manipulation statements:"
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr "Monitora le istuzioni delle manipulazioni dei dati:"
#: tbl_tracking.php:411

416
po/ja.po

File diff suppressed because it is too large Load Diff

340
po/ka.po

File diff suppressed because it is too large Load Diff

340
po/ko.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
"PO-Revision-Date: 2010-06-16 18:18+0200\n"
"Last-Translator: <cihar@nvyu.net>\n"
"Language-Team: korean <ko@li.org>\n"
@ -69,8 +69,8 @@ msgstr "검색"
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -124,7 +124,7 @@ msgid "Database comment: "
msgstr "데이터베이스 설명:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr "테이블 설명"
@ -296,15 +296,15 @@ msgstr "데이터베이스가 없습니다"
msgid "Copy database to"
msgstr "데이터베이스 복사"
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "구조만"
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "구조와 데이터 모두"
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "데이터만"
@ -314,17 +314,17 @@ msgstr "복사 전에 CREATE DATABASE 실행"
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "%s 추가"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT 값 추가"
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "제약조건 추가"
@ -336,7 +336,7 @@ msgstr "복사한 테이블로 옮겨감"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -431,14 +431,14 @@ msgstr "정렬"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr "오름차순"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr "내림차순(역순)"
@ -595,17 +595,17 @@ msgstr "검색할 컬럼:"
msgid "No tables found in database"
msgstr "데이터베이스에 테이블이 없습니다."
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "테이블 %s 을 비웠습니다"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "뷰 %s가 제거되었습니다."
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "테이블 %s 을 제거했습니다."
@ -647,20 +647,20 @@ msgstr "%s는 이 MySQL 서버의 기본 스토리지 엔진입니다."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "선택한 것을:"
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "모두 체크"
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "모두 체크안함"
@ -690,25 +690,25 @@ msgstr "비우기"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "삭제"
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr "테이블 검사"
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr "테이블 최적화"
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr "테이블 복구"
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr "테이블 분석"
@ -741,7 +741,7 @@ msgstr ""
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -769,7 +769,7 @@ msgid "Status"
msgstr "상태"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -934,7 +934,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "SQL 질의가 바르게 실행되었습니다."
@ -1147,6 +1147,18 @@ msgstr "SQL 질의"
msgid "Show search results"
msgstr "SQL 질의"
#: js/messages.php:86
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "보기"
#: js/messages.php:87
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr " %s 을 삭제합니다"
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1166,7 +1178,16 @@ msgstr "SQL 질의"
msgid "Inline Edit"
msgstr ""
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "수정"
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1174,77 +1195,77 @@ msgstr ""
msgid "Save"
msgstr "저장"
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
#: js/messages.php:100
#: js/messages.php:101
#, fuzzy
msgid "Hide search criteria"
msgstr "SQL 질의"
#: js/messages.php:101
#: js/messages.php:102
#, fuzzy
msgid "Show search criteria"
msgstr "SQL 질의"
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignore"
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr ""
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr ""
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr ""
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
#, fuzzy
#| msgid "Choose field to display"
msgid "Choose column to display"
msgstr "출력할 필드 선택"
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr ""
#: js/messages.php:117
#: js/messages.php:118
#, fuzzy
#| msgid "Change password"
msgid "Generate password"
msgstr "암호 변경"
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
#: js/messages.php:119
#: js/messages.php:120
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "암호 변경"
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
#, fuzzy
#| msgid "Mo"
msgid "More"
msgstr "월"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1252,27 +1273,27 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
msgid ", latest stable version:"
msgstr ""
#: js/messages.php:128
#: js/messages.php:129
#, fuzzy
msgid "up to date"
msgstr "데이터베이스가 없습니다"
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr "완료"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr "이전"
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1280,231 +1301,231 @@ msgid "Next"
msgstr "다음"
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr "오늘"
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr "1월"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr "2월"
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr "3월"
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr "4월"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "5월"
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr "6월"
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr "7월"
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr "8월"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr "9월"
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr "10월"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr "11월"
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr "12월"
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "1월"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "2월"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "3월"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "4월"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "5월"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "6월"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "7월"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "8월"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "9월"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "10월"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "11월"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "12월"
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr "일요일"
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr "월요일"
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr "화요일"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr "수요일"
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr "목요일"
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr "금요일"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr "토요일"
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "일"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "월"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "화"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "수"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "목"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "금"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "토"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr "일"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr "월"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr "화"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr "수"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr "목"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr "금"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr "토"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr "주"
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr "시"
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr "분"
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr "초"
@ -1580,14 +1601,6 @@ msgstr "Cardinality"
msgid "Comment"
msgstr "설명(코멘트)"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "수정"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr "기본 키를 제거했습니다"
@ -1613,7 +1626,7 @@ msgstr "데이터베이스 "
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "오류"
@ -1875,7 +1888,7 @@ msgid "Data"
msgstr "데이터"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "전체 사용량"
@ -2015,7 +2028,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr "문서"
@ -4524,7 +4537,9 @@ msgstr ""
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
#, fuzzy
#| msgid "Create new database"
msgid "Create database"
msgstr "새 데이터베이스 만들기"
#: libraries/display_create_database.lib.php:33
@ -4954,7 +4969,7 @@ msgstr "서버 버전"
msgid "Link not found"
msgstr ""
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr "버전 정보"
@ -6654,7 +6669,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr ""
@ -6856,31 +6871,31 @@ msgstr "PHP 버전"
msgid "Show PHP information"
msgstr "PHP 정보 보기"
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr ""
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr "phpMyAdmin 공식 홈"
#: main.php:214
#: main.php:217
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "보기"
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr ""
#: main.php:216
#: main.php:219
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "변화 없음"
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -6891,21 +6906,21 @@ msgstr ""
"가 작동한다면 누구나 침입할 수 있으므로, 이 보안상 허점을 수정하시기 바랍니"
"다."
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -6913,24 +6928,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
#: main.php:296
#: main.php:299
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@ -6942,28 +6957,28 @@ msgstr ""
"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %"
"s여기를 클릭%s하십시오."
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr "데이터베이스가 없습니다"
@ -7341,20 +7356,20 @@ msgstr "%s 데이터베이스를 삭제했습니다."
msgid "Databases statistics"
msgstr "데이터베이스 사용량 통계"
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr ""
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr ""
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr "통계 보기"
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -7830,9 +7845,10 @@ msgid "Unable to change master"
msgstr ""
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
msgstr ""
#, fuzzy, php-format
#| msgid "The privileges were reloaded successfully."
msgid "Master server changed successfully to %s"
msgstr "권한을 다시 로딩했습니다."
#: server_replication.php:180
msgid "This server is configured as master in a replication process."
@ -9376,104 +9392,104 @@ msgstr "%s 테이블이 %s 으로 복사되었습니다."
msgid "The table name is empty!"
msgstr "테이블명이 없습니다!"
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr "다음 순서대로 테이블 정렬(변경)"
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr "(단독으로)"
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr "테이블 이동 (데이터베이스명<b>.</b>테이블명):"
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr ""
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr "테이블 이름 바꾸기"
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr "테이블 복사 (데이터베이스명<b>.</b>테이블명):"
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr "복사한 테이블로 옮겨감"
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr "테이블 유지보수"
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr ""
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr "테이블 %s 을 닫았습니다(캐시 삭제)"
#: tbl_operations.php:669
#: tbl_operations.php:668
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "테이블 닫기(캐시 삭제)"
#: tbl_operations.php:678
#: tbl_operations.php:677
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "테이블의 덤프 데이터"
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr ""
#: tbl_operations.php:713
#: tbl_operations.php:712
#, fuzzy
msgid "Delete the table (DROP)"
msgstr "데이터베이스가 없습니다"
#: tbl_operations.php:734
#: tbl_operations.php:733
#, fuzzy
msgid "Partition maintenance"
msgstr "테이블 유지보수"
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr ""
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr ""
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr ""
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr ""
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr ""
#: tbl_operations.php:749
#: tbl_operations.php:748
#, fuzzy
msgid "Repair"
msgstr "테이블 복구"
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr ""
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr "referential 무결성 검사:"
@ -9692,7 +9708,7 @@ msgid "Version %s snapshot (SQL code)"
msgstr ""
#: tbl_tracking.php:382
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr ""
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -9702,7 +9718,7 @@ msgid "Query error"
msgstr "질의 종류"
#: tbl_tracking.php:399
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr ""
#: tbl_tracking.php:411

338
po/lt.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\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"
@ -70,8 +70,8 @@ msgstr "Paieška"
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -125,7 +125,7 @@ msgid "Database comment: "
msgstr "Duomenų bazės komentaras: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Lentelės komentarai"
@ -294,15 +294,15 @@ msgstr "Pašalinti duomenų bazę (DROP)"
msgid "Copy database to"
msgstr "Kopijuoti duomenų bazę į"
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Tik struktūra"
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktūra ir duomenys"
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Tik duomenys"
@ -312,17 +312,17 @@ msgstr "CREATE DATABASE prieš kopijuojant"
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Pridėti %s"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Pridėti AUTO_INCREMENT reikšmę"
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Pridėti apribojimą"
@ -334,7 +334,7 @@ msgstr "Pereiti į nukopijuotą duomenų bazę"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -427,14 +427,14 @@ msgstr "Rūšiuoti"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr "Didėjimo tvarka"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr "Mažėjimo tvarka"
@ -590,17 +590,17 @@ msgstr "Stulpelio viduje:"
msgid "No tables found in database"
msgstr "Duomenų bazėje nerasta jokių lentelių."
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Lentelės reikšmės %s ištuštintos"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Rodinys %s buvo panaikintas"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Lentelė %s panaikinta"
@ -644,20 +644,20 @@ msgstr "%s yra standartinis saugojimo variklis šiame MySQL serveryje."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Pasirinktus:"
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Pažymėti visas"
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Atžymėti visas"
@ -687,25 +687,25 @@ msgstr "Išvalyti"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Šalinti"
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr "Patikrinti lentelę"
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimizuoti"
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr "Taisyti lentelę"
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analizuoti lentelę"
@ -740,7 +740,7 @@ msgstr "Sekamos lentelės"
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -767,7 +767,7 @@ msgid "Status"
msgstr "Būsena"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -934,7 +934,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Jūsų SQL užklausa sėkmingai įvykdyta"
@ -1130,6 +1130,18 @@ msgstr "Slėpti paieškos kriterijų"
msgid "Show search results"
msgstr "Rodyti paieškos kriterijų"
#: js/messages.php:86
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Peržiūrėti"
#: js/messages.php:87
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Šaliname: %s"
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1147,7 +1159,16 @@ msgstr "Rodyti užklausos laukelį"
msgid "Inline Edit"
msgstr "Redaguoti čia"
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Redaguoti"
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1155,67 +1176,67 @@ msgstr "Redaguoti čia"
msgid "Save"
msgstr "Išsaugoti"
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Paslėpti"
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr "Slėpti paieškos kriterijų"
#: js/messages.php:101
#: js/messages.php:102
msgid "Show search criteria"
msgstr "Rodyti paieškos kriterijų"
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignoruoti"
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr "Pasirinkite siejamą raktą"
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr "Pasirinkti Foreign Key"
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr "Prašome pasirinkti pirminį raktą arba unikalųjį raktą"
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Pasirinkite laukus peržiūrai"
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr "Pridėti parinktį stulpeliui/skilčiai"
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr "Generuoti slaptažodį"
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generuoti"
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr "Pakeisti slaptažodį"
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr "Daugiau"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1225,28 +1246,28 @@ msgstr ""
"atnaujinimą. Naujausia versija yra %s, išleista %s."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
msgid ", latest stable version:"
msgstr ", naujausia stabili versija:"
#: js/messages.php:128
#: js/messages.php:129
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Eiti į duomenų bazę"
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr "Atlikta"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr "Ankstesnis"
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1254,231 +1275,231 @@ msgid "Next"
msgstr "Kitas"
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr "Šiandien"
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr "sausio"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr "vasario"
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr "kovo"
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr "balandžio"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "Geg"
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr "birželio"
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr "liepos"
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr "rugpjūčio"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr "rugsėjo"
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr "spalio"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr "lapkričio"
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr "gruodžio"
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Sau"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Vas"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Kov"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Bal"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Geg"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Bir"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Lie"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Rgp"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Rgs"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Spa"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Lap"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Grd"
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr "Sekmadienis"
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr "Pirmadienis"
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr "Antradienis"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr "Trečiadienis"
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr "Ketvirtadienis"
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr "Penktadienis"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr "Šeštadienis"
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Sek"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Pir"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Ant"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Tre"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Ket"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Pen"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Šeš"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr "Sk"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr "Pr"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr "An"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr "Tr"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr "Kt"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr "Pn"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr "Št"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr "Sav."
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr "Valanda"
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr "Minutė"
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr "Sekundės"
@ -1553,14 +1574,6 @@ msgstr "Elementų skaičius"
msgid "Comment"
msgstr "Komentaras"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Redaguoti"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr "Panaikintas pirminis raktas"
@ -1587,7 +1600,7 @@ msgstr "Duomenų bazės"
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Klaida"
@ -1859,7 +1872,7 @@ msgid "Data"
msgstr "Duomenys"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Iš viso"
@ -1997,7 +2010,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentacija"
@ -4516,7 +4529,9 @@ msgstr "Suderinamas su MySQL 4.0"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
#, fuzzy
#| msgid "Create new database"
msgid "Create database"
msgstr "Sukurti naują duomenų bazę"
#: libraries/display_create_database.lib.php:33
@ -4915,7 +4930,7 @@ msgstr "Sukurti naudotoją"
msgid "Link not found"
msgstr "Sąryšis nerastas"
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr "Versija"
@ -6644,7 +6659,7 @@ msgstr ""
"Ši transformacija neturi paaiškinimo.<br />Klauskite autoriaus ką %s daro."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr "Saugojimo variklis"
@ -6905,27 +6920,27 @@ msgstr "PHP plėtinys"
msgid "Show PHP information"
msgstr "Rodyti PHP informaciją"
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr "Wiki"
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr "Oficialus phpMyAdmin tinklalapis"
#: main.php:214
#: main.php:217
msgid "Contribute"
msgstr "Prisidėti"
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr "Gauti pagalbą"
#: main.php:216
#: main.php:219
msgid "List of changes"
msgstr "Pakeitimų sąrašas"
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -6937,7 +6952,7 @@ msgstr ""
"nesaugi, bei gali būti atvira įsilaužimams, todėl rekomenduotina pakeisti "
"šias parinktis."
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@ -6946,7 +6961,7 @@ msgstr ""
"Savo PHP konfigūracijoje Jūs įjungėte mbstring.func_overload. Šis nustatymas "
"nėra suderinamas su phpMyAdmin ir gali pažeisti Jūsų duomenis!"
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@ -6956,7 +6971,7 @@ msgstr ""
"simbolių kodaciją. Be mbstring plėtinio phpMyAdmin negali tesingai skaidyti "
"stringų, todėl galite sulaukti netikėtų rezultatų."
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -6964,17 +6979,17 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Nustatymų faile nurodykite slaptą frazę (blowfish_secret)."
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@ -6984,7 +6999,7 @@ msgstr ""
"yra Jūsų phpMyAdmin kataloge. Jūs turėtumėte jį pašalinti iškart po to kai "
"sukonfigūruosite phpMyAdmin."
#: main.php:296
#: main.php:299
#, fuzzy, php-format
#| msgid ""
#| "The phpMyAdmin configuration storage has been deactivated. To find out "
@ -6995,7 +7010,7 @@ msgid ""
msgstr ""
"phpMyAdmin konfigūracijos talpinimo vieta išjungta. %sIšsiaiškinti kodėl%s."
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@ -7005,7 +7020,7 @@ msgstr ""
"kurios phpMyAdmin funkcijos gali būti išnykę. Pavyzdžiui, navigacijos "
"rėmelis automatiškai neatsinaujins."
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@ -7014,7 +7029,7 @@ msgstr ""
"Jūsų PHP MySQL bibliotekos versija %s skiriasi nuo Jūsų MySQL serverio "
"versijos %s. Tai gali sukelti nenuspėjamą elgesį."
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@ -7023,7 +7038,7 @@ msgstr ""
"Serveris veikia su Suhosin. Prašome perskaityti %sdokumentaciją%s dėl galimų "
"problemų."
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr "Nėra duomenų bazių"
@ -7403,20 +7418,20 @@ msgstr "Sėkmingai pašalintos %s duomenų bazės."
msgid "Databases statistics"
msgstr "Duomenų bazių statistika"
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr "Pagrindinio serverio replikavimas"
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr "Pavaldžiojo serverio replikavimas"
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr "Leisti statistiką"
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -7900,8 +7915,9 @@ msgid "Unable to change master"
msgstr "Nepavyko pakeisti pagrindinio (master) serverio"
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
#, fuzzy, php-format
#| msgid "Master server changed succesfully to %s"
msgid "Master server changed successfully to %s"
msgstr "Pagrindinis (master) serveris pakeistas sėkmingai į %s"
#: server_replication.php:180
@ -9551,97 +9567,97 @@ msgstr "Letelė %s nukopijuota į %s."
msgid "The table name is empty!"
msgstr "Tuščias lentelės vardas!"
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr "Pakeisti lentelės rikiavimą pagal:"
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr "(pavieniui)"
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr "Perkelti lentelę į (duomenų_bazė<b>.</b>lentelė):"
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr "Lentelės parinktys"
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr "Pervadinti lentelę į"
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr "Kopijuoti lentelę į (duomenų_bazė<b>.</b>lentelė):"
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr "Pereiti į lentelės kopiją"
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr "Lentelės diagnostika"
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr "Defragmentuoti lentelę"
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr "Lentelės buferis %s išvalytas"
#: tbl_operations.php:669
#: tbl_operations.php:668
msgid "Flush the table (FLUSH)"
msgstr "Išvalyti ir perkrauti lentelės podėlį (FLUSH)"
#: tbl_operations.php:678
#: tbl_operations.php:677
msgid "Delete data or table"
msgstr "Ištrinti duomenis arba lentelę"
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr "Ištrinti lentelės duomenis (TRUNCATE)"
#: tbl_operations.php:713
#: tbl_operations.php:712
msgid "Delete the table (DROP)"
msgstr "Ištrinti lentelę (DROP)"
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr "Skaidinio diagnostika"
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr "Skaidinys %s"
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr "Analizuoti"
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr "Pažymėti"
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr "Optimizuoti"
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr "Perdaryti"
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr "Taisyti"
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr "Pašalinti skaidymą"
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr "Patikrinti sąryšių vientisumą:"
@ -9865,7 +9881,7 @@ msgid "Version %s snapshot (SQL code)"
msgstr ""
#: tbl_tracking.php:382
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr ""
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -9875,7 +9891,7 @@ msgid "Query error"
msgstr "Rinkti klaidas"
#: tbl_tracking.php:399
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr ""
#: tbl_tracking.php:411

340
po/lv.po

File diff suppressed because it is too large Load Diff

355
po/mk.po

File diff suppressed because it is too large Load Diff

329
po/ml.po
View File

@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\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"
@ -68,8 +68,8 @@ msgstr ""
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -121,7 +121,7 @@ msgid "Database comment: "
msgstr ""
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr ""
@ -290,15 +290,15 @@ msgstr ""
msgid "Copy database to"
msgstr ""
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr ""
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr ""
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr ""
@ -308,17 +308,17 @@ msgstr ""
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr ""
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr ""
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr ""
@ -330,7 +330,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -421,14 +421,14 @@ msgstr ""
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr ""
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr ""
@ -582,17 +582,17 @@ msgstr ""
msgid "No tables found in database"
msgstr ""
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr ""
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr ""
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr ""
@ -634,20 +634,20 @@ msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr ""
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr ""
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr ""
@ -677,25 +677,25 @@ msgstr ""
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr ""
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr ""
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr ""
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr ""
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr ""
@ -724,7 +724,7 @@ msgstr ""
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -751,7 +751,7 @@ msgid "Status"
msgstr ""
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -904,7 +904,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr ""
@ -1091,6 +1091,14 @@ msgstr ""
msgid "Show search results"
msgstr ""
#: js/messages.php:86
msgid "Browsing"
msgstr ""
#: js/messages.php:87
msgid "Deleting"
msgstr ""
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1108,7 +1116,16 @@ msgstr ""
msgid "Inline Edit"
msgstr ""
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1116,67 +1133,67 @@ msgstr ""
msgid "Save"
msgstr ""
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr ""
#: js/messages.php:101
#: js/messages.php:102
msgid "Show search criteria"
msgstr ""
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr ""
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr ""
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr ""
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr ""
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr ""
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr ""
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr ""
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr ""
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr ""
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1184,26 +1201,26 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
msgid ", latest stable version:"
msgstr ""
#: js/messages.php:128
#: js/messages.php:129
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr ""
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr ""
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1211,231 +1228,231 @@ msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr ""
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr ""
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr ""
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr ""
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr ""
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr ""
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr ""
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr ""
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr ""
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr ""
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr ""
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr ""
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr ""
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr ""
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr ""
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr ""
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr ""
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr ""
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr ""
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr ""
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr ""
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr ""
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr ""
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr ""
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr ""
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr ""
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr ""
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr ""
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr ""
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr ""
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr ""
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr ""
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr ""
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr ""
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr ""
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr ""
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr ""
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr ""
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr ""
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr ""
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr ""
@ -1506,14 +1523,6 @@ msgstr ""
msgid "Comment"
msgstr ""
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr ""
@ -1539,7 +1548,7 @@ msgstr ""
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr ""
@ -1798,7 +1807,7 @@ msgid "Data"
msgstr ""
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr ""
@ -1929,7 +1938,7 @@ msgstr ""
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr ""
@ -4330,7 +4339,7 @@ msgstr ""
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
msgid "Create database"
msgstr ""
#: libraries/display_create_database.lib.php:33
@ -4712,7 +4721,7 @@ msgstr ""
msgid "Link not found"
msgstr ""
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr ""
@ -6338,7 +6347,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr ""
@ -6533,27 +6542,27 @@ msgstr ""
msgid "Show PHP information"
msgstr ""
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr ""
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr ""
#: main.php:214
#: main.php:217
msgid "Contribute"
msgstr ""
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr ""
#: main.php:216
#: main.php:219
msgid "List of changes"
msgstr ""
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -6561,21 +6570,21 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -6583,52 +6592,52 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
#: main.php:296
#: main.php:299
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr ""
@ -6971,20 +6980,20 @@ msgstr ""
msgid "Databases statistics"
msgstr ""
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr ""
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr ""
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr ""
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -7442,7 +7451,7 @@ msgstr ""
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
msgid "Master server changed successfully to %s"
msgstr ""
#: server_replication.php:180
@ -8944,97 +8953,97 @@ msgstr ""
msgid "The table name is empty!"
msgstr ""
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr ""
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr ""
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr ""
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr ""
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr ""
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr ""
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr ""
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr ""
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr ""
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr ""
#: tbl_operations.php:669
#: tbl_operations.php:668
msgid "Flush the table (FLUSH)"
msgstr ""
#: tbl_operations.php:678
#: tbl_operations.php:677
msgid "Delete data or table"
msgstr ""
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr ""
#: tbl_operations.php:713
#: tbl_operations.php:712
msgid "Delete the table (DROP)"
msgstr ""
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr ""
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr ""
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr ""
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr ""
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr ""
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr ""
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr ""
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr ""
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr ""
@ -9244,7 +9253,7 @@ msgid "Version %s snapshot (SQL code)"
msgstr ""
#: tbl_tracking.php:382
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr ""
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -9252,7 +9261,7 @@ msgid "Query error"
msgstr ""
#: tbl_tracking.php:399
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr ""
#: tbl_tracking.php:411

340
po/mn.po

File diff suppressed because it is too large Load Diff

340
po/ms.po

File diff suppressed because it is too large Load Diff

338
po/nb.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\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"
@ -69,8 +69,8 @@ msgstr "Søk"
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -124,7 +124,7 @@ msgid "Database comment: "
msgstr "Database kommentar: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Tabellkommentarer"
@ -293,15 +293,15 @@ msgstr "Drop databasen (DROP)"
msgid "Copy database to"
msgstr "Kopier databasen til"
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Kun struktur"
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktur og data"
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Bare data"
@ -311,17 +311,17 @@ msgstr "CREATE DATABASE før kopiering"
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Legg til %s"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Legg til AUTO_INCREMENT verdi"
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Legg til begrensninger"
@ -333,7 +333,7 @@ msgstr "Bytt til kopiert database"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -425,14 +425,14 @@ msgstr "Sorter"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr "Stigende"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr "Synkende"
@ -586,17 +586,17 @@ msgstr "I kolonne:"
msgid "No tables found in database"
msgstr "Ingen tabeller funnet i databasen"
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabellen %s har blitt tømt"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Visningen %s har blitt slettet"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabellen %s har blitt slettet"
@ -638,20 +638,20 @@ msgstr "%s er standard lagringsmotor for denne MySQL tjeneren."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Med avkrysset:"
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Merk alle"
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Fjern merking"
@ -681,25 +681,25 @@ msgstr "Tøm"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Slett"
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr "Kontroller tabell"
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimiser tabell"
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr "Reparer tabell"
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analyser tabell"
@ -734,7 +734,7 @@ msgstr "Overvåkede tabeller"
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -761,7 +761,7 @@ msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -930,7 +930,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Kommandoen/spørringen er utført"
@ -1126,6 +1126,18 @@ msgstr "Skjul søkekriterier"
msgid "Show search results"
msgstr "Vis søkekriterier"
#: js/messages.php:86
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Se på"
#: js/messages.php:87
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Sletter %s"
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1143,7 +1155,16 @@ msgstr "Vis spørringsboks"
msgid "Inline Edit"
msgstr "Inline Edit"
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Rediger"
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1151,67 +1172,67 @@ msgstr "Inline Edit"
msgid "Save"
msgstr "Lagre"
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Skjul"
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr "Skjul søkekriterier"
#: js/messages.php:101
#: js/messages.php:102
msgid "Show search criteria"
msgstr "Vis søkekriterier"
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorer"
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr "Velg referert nøkkel"
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr "Velg fremmednøkkel"
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr "Velg primærnøkkelen eller en unik nøkkel"
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Velg kolonne for visning"
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr "Legg til valg for kolonne"
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr "Generer passord"
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generer"
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr "Endre passord"
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr "Mer"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1221,28 +1242,28 @@ msgstr ""
"versjon er %s, utgitt den %s."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
msgid ", latest stable version:"
msgstr ", siste tilgjengelige versjon:"
#: js/messages.php:128
#: js/messages.php:129
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Gå til database"
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr "Utført"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr "Forrige"
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1250,231 +1271,231 @@ msgid "Next"
msgstr "Neste"
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr "I dag"
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr "Januar"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr "Februar"
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr "Mars"
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr "April"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "Mai"
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr "Juni"
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr "Juli"
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr "August"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr "September"
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr "Oktober"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr "November"
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr "Desember"
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Des"
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr "Søndag"
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr "Mandag"
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr "Tirsdag"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr "Onsdag"
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr "Torsdag"
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr "Fredag"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr "Lørdag"
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Søn"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Man"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Tir"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Tor"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Lør"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr "Søndag"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr "Man"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr "Tir"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr "Ons"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr "Tor"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr "Fre"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr "Lør"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr "Uke"
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr "Time"
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr "Minutt"
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr "Sekund"
@ -1550,14 +1571,6 @@ msgstr "Kardinalitet"
msgid "Comment"
msgstr "Kommentar"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Rediger"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr "Primærnøkkelen har blitt slettet"
@ -1585,7 +1598,7 @@ msgstr "Databaser"
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Feil"
@ -1852,7 +1865,7 @@ msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Totalt"
@ -1990,7 +2003,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentasjon"
@ -4568,7 +4581,9 @@ msgstr "MySQL 4.0 kompatibel"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
#, fuzzy
#| msgid "Create new database"
msgid "Create database"
msgstr "Opprett ny database"
#: libraries/display_create_database.lib.php:33
@ -4991,7 +5006,7 @@ msgstr "Opprett bruker"
msgid "Link not found"
msgstr "Link ikke funnet"
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr "Versionsinformasjon"
@ -6761,7 +6776,7 @@ msgstr ""
"forfatteren hva %s gjør."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr "Lagringsmotor"
@ -7002,32 +7017,32 @@ msgstr "PHP tillegg"
msgid "Show PHP information"
msgstr "Vis PHP-informasjon"
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr "Wiki"
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr "Offisiell phpMyAdmin-hjemmeside"
#: main.php:214
#: main.php:217
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Attributter"
#: main.php:215
#: main.php:218
#, fuzzy
msgid "Get support"
msgstr "Eksporter"
#: main.php:216
#: main.php:219
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Ingen endring"
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -7039,7 +7054,7 @@ msgstr ""
"tjener kjører med denne standardinnstillingen, er åpen for misbruk, og du "
"burde fikse dette sikkerhetshullet snarest."
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@ -7048,7 +7063,7 @@ msgstr ""
"Du har slått på mbstring.func_overload i din PHP konfigurasjon. Denne "
"opsjonen er ikke kompatibel med phpMyAdmin og kan medføre skader på data!"
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@ -7058,7 +7073,7 @@ msgstr ""
"flerbyte tegnsett. Uten mbstring-tillegget så kan ikke phpMyAdmin splitte "
"strenger korrekt og dette kan medføre uønskede resultater."
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -7070,7 +7085,7 @@ msgstr ""
"gyldighet konfigurert i phpMyAdmin, på grunn av dette så vil din innlogging "
"utløpe raskere enn konfigurert i phpMyAdmin."
#: main.php:271
#: main.php:274
#, fuzzy
#| msgid ""
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
@ -7086,12 +7101,12 @@ msgstr ""
"gyldighet konfigurert i phpMyAdmin, på grunn av dette så vil din innlogging "
"utløpe raskere enn konfigurert i phpMyAdmin."
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Konfigurasjonsfila trenger nå et hemmelig passordfrase (blowfish_secret)."
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@ -7101,7 +7116,7 @@ msgstr ""
"fortsatt i din phpMyAdmin mappe. Du bør fjerne den så fort phpMyAdming har "
"blitt konfigurert."
#: main.php:296
#: main.php:299
#, fuzzy, php-format
#| msgid ""
#| "The phpMyAdmin configuration storage has been deactivated. To find out "
@ -7112,7 +7127,7 @@ msgid ""
msgstr ""
"phpMyAdmin konfigurasjonslager har blitt deaktivert. Finn ut hvorfor %sher%s."
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@ -7122,7 +7137,7 @@ msgstr ""
"phpMyAdmin funksjonalitet vil mangle. F.eks. navigasjonsrammen vil ikke "
"oppdatere seg automatisk."
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@ -7131,7 +7146,7 @@ msgstr ""
"Din PHP MySQL bibliotekfilversjon %s er forskjellig fra din MySQL "
"tjenerversjon %s. Dette kan forårsake uforutsett oppførsel."
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@ -7140,7 +7155,7 @@ msgstr ""
"Tjeneren kjører med Suhosin. Sjekk %sdokumentasjonen%s for potensielle "
"problemer."
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr "Ingen databaser"
@ -7526,20 +7541,20 @@ msgstr "%s databasene har blitt slettet."
msgid "Databases statistics"
msgstr "Statistikk for databaser"
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr "Masterreplikasjon"
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr "Slavereplikasjon"
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr "Slå på statistikk"
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -8016,8 +8031,9 @@ msgid "Unable to change master"
msgstr "Kan ikke endre master"
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
#, fuzzy, php-format
#| msgid "Master server changed succesfully to %s"
msgid "Master server changed successfully to %s"
msgstr "Mastertjener endret til %s"
#: server_replication.php:180
@ -9798,101 +9814,101 @@ msgstr "Tabellen %s er kopiert til %s."
msgid "The table name is empty!"
msgstr "Tabellnavnet er tomt!"
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr "Endre tabellrekkefølge ved"
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr "(enkeltvis)"
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr "Flytt tabell til (database<b>.</b>tabell):"
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr "Tabellinnstillinger"
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr "Endre tabellens navn"
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr "Kopier tabell til (database<b>.</b>tabell):"
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr "Bytt til kopiert tabell"
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr "Tabellvedlikehold"
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr "Defragmenter tabell"
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabelen %s har blitt oppfrisket"
#: tbl_operations.php:669
#: tbl_operations.php:668
msgid "Flush the table (FLUSH)"
msgstr "Oppfrisk tabellen (\"FLUSH\")"
#: tbl_operations.php:678
#: tbl_operations.php:677
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
msgstr "Slett overvåkningsdata for denne tabellen"
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr ""
#: tbl_operations.php:713
#: tbl_operations.php:712
#, fuzzy
#| msgid "Go to database"
msgid "Delete the table (DROP)"
msgstr "Gå til database"
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr "Partisjonsvedlikehold"
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr "Partisjon %s"
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr "Analyser"
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr "Kontroller"
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr "Optimaliser"
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr "Gjenoppbygg"
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr "Reparer"
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr "Fjern partisjonering"
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr "Sjekk referanseintegritet:"
@ -10116,7 +10132,7 @@ msgstr "Versjon %s øyeblikksbilde (SQL kode)"
#: tbl_tracking.php:382
#, fuzzy
#| msgid "Track these data definition statements:"
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr "Spor disse datadefinisjonsspørringene:"
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -10128,7 +10144,7 @@ msgstr "Samle feilmeldinger"
#: tbl_tracking.php:399
#, fuzzy
#| msgid "Track these data manipulation statements:"
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr "Spor disse datamanipulasjonsspørringene:"
#: tbl_tracking.php:411

338
po/nl.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
"PO-Revision-Date: 2011-03-16 20:18+0200\n"
"Last-Translator: Dieter Adriaenssens <ruleant@users.sourceforge.net>\n"
"Language-Team: dutch <nl@li.org>\n"
@ -69,8 +69,8 @@ msgstr "Zoeken"
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -124,7 +124,7 @@ msgid "Database comment: "
msgstr "Database opmerking: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Tabelopmerkingen"
@ -293,15 +293,15 @@ msgstr "Laat de database vervallen (DROP)"
msgid "Copy database to"
msgstr "Kopieer database naar"
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Alleen structuur"
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Structuur en gegevens"
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Alleen data"
@ -311,17 +311,17 @@ msgstr "CREATE DATABASE voor het kopiëren"
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Voeg %s toe"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Voeg AUTO_INCREMENT waarde toe"
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Voeg beperkingen toe"
@ -333,7 +333,7 @@ msgstr "Overschakelen naar de gekopieerde database"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -426,14 +426,14 @@ msgstr "Sorteren"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr "Oplopend"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr "Aflopend"
@ -587,17 +587,17 @@ msgstr "In de kolom:"
msgid "No tables found in database"
msgstr "Geen tabellen gevonden in de database"
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabel %s is leeg gemaakt"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "View %s is verwijderd"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabel %s is vervallen"
@ -640,20 +640,20 @@ msgstr "%s is de standaard storage engine op deze MySQL-server."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Met geselecteerd:"
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Selecteer alles"
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Deselecteer alles"
@ -683,25 +683,25 @@ msgstr "Legen"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Verwijderen"
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr "Controleer tabel"
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimaliseer tabel"
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr "Repareer tabel"
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analyseer tabel"
@ -736,7 +736,7 @@ msgstr "Tabellen met tracker"
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -763,7 +763,7 @@ msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -936,7 +936,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Uw SQL-query is succesvol uitgevoerd"
@ -1135,6 +1135,18 @@ msgstr "Verberg zoekcriteria"
msgid "Show search results"
msgstr "Toon zoek-criteria"
#: js/messages.php:86
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Verkennen"
#: js/messages.php:87
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Verwijderen van %s"
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1154,7 +1166,16 @@ msgstr "SQL-query veld tonen"
msgid "Inline Edit"
msgstr "Wijzig inline"
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Wijzig"
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1162,67 +1183,67 @@ msgstr "Wijzig inline"
msgid "Save"
msgstr "Opslaan"
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Verberg"
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr "Verberg zoekcriteria"
#: js/messages.php:101
#: js/messages.php:102
msgid "Show search criteria"
msgstr "Toon zoek-criteria"
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Negeer"
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr "Selecteer de gerefereerde sleutel"
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr "Selecteer vreemde sleutel"
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr "Selecteer de primaire sleutel of een unieke sleutel"
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Kies weer te geven veld"
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr "Voeg een optie toe voor komom "
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr "Genereer wachtwoord"
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Genereer"
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr "Wijzig wachtwoord"
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr "Meer"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1232,28 +1253,28 @@ msgstr ""
"overwegen. De nieuwe versie is %s, uitgebracht op %s."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
msgid ", latest stable version:"
msgstr ", meest recente versie:"
#: js/messages.php:128
#: js/messages.php:129
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Ga naar database"
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr "Klaar"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr "Vorige"
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1261,231 +1282,231 @@ msgid "Next"
msgstr "Volgende"
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr "Vandaag"
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr "januari"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr "februari"
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr "maart"
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr "april"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "mei"
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr "juni"
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr "juli"
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr "augustus"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr "september"
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr "oktober"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr "november"
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr "december"
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "mrt"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "mei"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "dec"
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr "zondag"
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr "maandag"
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr "dinsdag"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr "woensdag"
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr "donderdag"
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr "vrijdag"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr "zaterdag"
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "zo"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "ma"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "di"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "wo"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "do"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "vr"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "za"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr "zo"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr "ma"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr "di"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr "wo"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr "do"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr "vr"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr "za"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr "Week"
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr "Uur"
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr "Minuut"
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr "Seconde"
@ -1562,14 +1583,6 @@ msgstr "Kardinaliteit"
msgid "Comment"
msgstr "Opmerking"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Wijzig"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr "De primaire sleutel is vervallen"
@ -1597,7 +1610,7 @@ msgstr "Databases"
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Fout"
@ -1868,7 +1881,7 @@ msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Totaal"
@ -2008,7 +2021,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr "Documentatie"
@ -4617,7 +4630,9 @@ msgstr "Compatibel met MySQL&nbsp;4.0"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
#, fuzzy
#| msgid "Create new database"
msgid "Create database"
msgstr "Nieuwe database aanmaken"
#: libraries/display_create_database.lib.php:33
@ -5020,7 +5035,7 @@ msgstr "VIEW aanmaken"
msgid "Link not found"
msgstr "Link niet gevonden"
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr "Versie informatie"
@ -6804,7 +6819,7 @@ msgstr ""
"maker over wat %s doet."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr "Opslag Engine"
@ -7046,27 +7061,27 @@ msgstr "PHP uitbreiding"
msgid "Show PHP information"
msgstr "Laat informatie over PHP zien"
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr "Wiki"
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr "Officiële phpMyAdmin Website"
#: main.php:214
#: main.php:217
msgid "Contribute"
msgstr "Bijdragen"
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr "Ondersteuning krijgen"
#: main.php:216
#: main.php:219
msgid "List of changes"
msgstr "Lijst met wijzigingen"
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -7078,7 +7093,7 @@ msgstr ""
"met deze standaard waardes, en is open voor ongewilde toegang. Het wordt dus "
"aangeraden dit op te lossen."
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@ -7088,7 +7103,7 @@ msgstr ""
"optie is incompatibel met phpMyAdmin en kan ervoor zorgen dat sommige data "
"corrupt raakt!"
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@ -7098,7 +7113,7 @@ msgstr ""
"karakterset te gebruiken. Zonder de mbstring extensie kan phpMyAdmin strings "
"niet correct splitsen, wat tot onverwachte resultaten kan leiden."
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -7110,7 +7125,7 @@ msgstr ""
"ingestelde cookie geldigheid in phpMyAdmin. Hierdoor verloopt uw sessie "
"eerder dan in phpMyAdmin is ingesteld."
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@ -7119,13 +7134,13 @@ msgstr ""
"ingestelde cookie geldigheid in phpMyAdmin. Hierdoor verloopt uw sessie "
"eerder dan in phpMyAdmin is ingesteld."
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Het configuratiebestand heeft nu een geheime wachtwoordzin nodig "
"(blowfish_secret)."
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@ -7135,7 +7150,7 @@ msgstr ""
"nog in de phpMyAdmin directory. Het kan beter worden verwijderd zodra "
"phpMyAdmin is geconfigureerd."
#: main.php:296
#: main.php:299
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@ -7145,7 +7160,7 @@ msgstr ""
"uitgebreide mogelijkheden zijn uitgeschakeld. Om te weten te komen waarom "
"klik %shier%s."
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@ -7156,7 +7171,7 @@ msgstr ""
"beschikbaar zijn. Zo zal bijvoorbeeld het navigatieframe zich niet "
"automatisch vernieuwen."
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@ -7165,7 +7180,7 @@ msgstr ""
"Uw PHP MySQL bibliotheek versie %s verschilt van uw MySQL-server versie %s. "
"Dit kan onvoorspelbaar gedrag veroorzaken."
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@ -7173,7 +7188,7 @@ msgid ""
msgstr ""
"De server gebruikt Suhosin. Zie de %sdocumentatie%s voor mogelijke problemen."
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr "Geen databases"
@ -7529,20 +7544,20 @@ msgstr "%s databases zijn succesvol verwijderd."
msgid "Databases statistics"
msgstr "Database statistieken"
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr "Master replicatie"
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr "Slave replicatie"
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr "Statistieken aanzetten"
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -8038,8 +8053,9 @@ msgid "Unable to change master"
msgstr "Wijzigen master mislukt"
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
#, fuzzy, php-format
#| msgid "Master server changed succesfully to %s"
msgid "Master server changed successfully to %s"
msgstr "Master server gewijzigd in %s"
#: server_replication.php:180
@ -9774,97 +9790,97 @@ msgstr "Tabel %s is gekopieerd naar %s."
msgid "The table name is empty!"
msgstr "De tabelnaam is leeg!"
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr "Sorteer de tabel volgens"
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr "(apart)"
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr "Verplaats tabel naar (database<b>.</b>tabel):"
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr "Tabelopties"
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr "Tabel hernoemen naar"
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr "Kopieer tabel naar (database<b>.</b>tabel):"
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr "Wissel naar de gekopieerde tabel"
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr "Tabelonderhoud"
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr "Defragmenteer tabel"
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabel %s is geschoond"
#: tbl_operations.php:669
#: tbl_operations.php:668
msgid "Flush the table (FLUSH)"
msgstr "Maak de tabel leeg (FLUSH)"
#: tbl_operations.php:678
#: tbl_operations.php:677
msgid "Delete data or table"
msgstr "Verwijder data of tabel"
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr "Maak de tabel leeg (TRUNCATE)"
#: tbl_operations.php:713
#: tbl_operations.php:712
msgid "Delete the table (DROP)"
msgstr "Verwijder de tabel (DROP)"
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr "Partitie onderhoud"
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr "Partitie %s"
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr "Analyseer"
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr "Controleer"
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr "Optimaliseer"
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr "Regenereer"
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr "Repareer"
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr "Verwijder partitionering"
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr "Controleer referentiële integriteit:"
@ -10083,7 +10099,7 @@ msgstr "Versie %s snapshot (SQL-code)"
#: tbl_tracking.php:382
#, fuzzy
#| msgid "Track these data definition statements:"
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr "Deze definitie-statements tracken:"
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -10095,7 +10111,7 @@ msgstr "Verzamel foutmeldingen"
#: tbl_tracking.php:399
#, fuzzy
#| msgid "Track these data manipulation statements:"
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr "Deze manipulatie-statements tracken:"
#: tbl_tracking.php:411

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -70,8 +70,8 @@ msgstr ""
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -123,7 +123,7 @@ msgid "Database comment: "
msgstr ""
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr ""
@ -292,15 +292,15 @@ msgstr ""
msgid "Copy database to"
msgstr ""
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr ""
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr ""
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr ""
@ -310,17 +310,17 @@ msgstr ""
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, possible-php-format
msgid "Add %s"
msgstr ""
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr ""
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr ""
@ -332,7 +332,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -423,14 +423,14 @@ msgstr ""
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr ""
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr ""
@ -584,17 +584,17 @@ msgstr ""
msgid "No tables found in database"
msgstr ""
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, possible-php-format
msgid "Table %s has been emptied"
msgstr ""
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, possible-php-format
msgid "View %s has been dropped"
msgstr ""
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, possible-php-format
msgid "Table %s has been dropped"
msgstr ""
@ -636,20 +636,20 @@ msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr ""
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr ""
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr ""
@ -679,25 +679,25 @@ msgstr ""
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr ""
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr ""
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr ""
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr ""
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr ""
@ -726,7 +726,7 @@ msgstr ""
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -753,7 +753,7 @@ msgid "Status"
msgstr ""
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -906,7 +906,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr ""
@ -1093,6 +1093,14 @@ msgstr ""
msgid "Show search results"
msgstr ""
#: js/messages.php:86
msgid "Browsing"
msgstr ""
#: js/messages.php:87
msgid "Deleting"
msgstr ""
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1110,7 +1118,16 @@ msgstr ""
msgid "Inline Edit"
msgstr ""
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1118,67 +1135,67 @@ msgstr ""
msgid "Save"
msgstr ""
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr ""
#: js/messages.php:101
#: js/messages.php:102
msgid "Show search criteria"
msgstr ""
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr ""
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr ""
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr ""
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr ""
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr ""
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr ""
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr ""
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr ""
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr ""
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, possible-php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1186,26 +1203,26 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
msgid ", latest stable version:"
msgstr ""
#: js/messages.php:128
#: js/messages.php:129
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr ""
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr ""
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1213,231 +1230,231 @@ msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr ""
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr ""
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr ""
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr ""
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr ""
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr ""
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr ""
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr ""
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr ""
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr ""
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr ""
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr ""
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr ""
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr ""
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr ""
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr ""
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr ""
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr ""
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr ""
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr ""
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr ""
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr ""
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr ""
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr ""
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr ""
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr ""
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr ""
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr ""
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr ""
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr ""
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr ""
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr ""
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr ""
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr ""
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr ""
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr ""
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr ""
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr ""
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr ""
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr ""
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr ""
@ -1508,14 +1525,6 @@ msgstr ""
msgid "Comment"
msgstr ""
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr ""
@ -1541,7 +1550,7 @@ msgstr ""
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr ""
@ -1800,7 +1809,7 @@ msgid "Data"
msgstr ""
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr ""
@ -1931,7 +1940,7 @@ msgstr ""
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr ""
@ -4332,7 +4341,7 @@ msgstr ""
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
msgid "Create database"
msgstr ""
#: libraries/display_create_database.lib.php:33
@ -4714,7 +4723,7 @@ msgstr ""
msgid "Link not found"
msgstr ""
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr ""
@ -6340,7 +6349,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr ""
@ -6535,27 +6544,27 @@ msgstr ""
msgid "Show PHP information"
msgstr ""
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr ""
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr ""
#: main.php:214
#: main.php:217
msgid "Contribute"
msgstr ""
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr ""
#: main.php:216
#: main.php:219
msgid "List of changes"
msgstr ""
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -6563,21 +6572,21 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -6585,52 +6594,52 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
#: main.php:296
#: main.php:299
#, possible-php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
#: main.php:326
#: main.php:329
#, possible-php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
#: main.php:338
#: main.php:341
#, possible-php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr ""
@ -6973,20 +6982,20 @@ msgstr ""
msgid "Databases statistics"
msgstr ""
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr ""
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr ""
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr ""
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -7444,7 +7453,7 @@ msgstr ""
#: server_replication.php:72
#, possible-php-format
msgid "Master server changed succesfully to %s"
msgid "Master server changed successfully to %s"
msgstr ""
#: server_replication.php:180
@ -8946,97 +8955,97 @@ msgstr ""
msgid "The table name is empty!"
msgstr ""
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr ""
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr ""
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr ""
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr ""
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr ""
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr ""
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr ""
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr ""
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr ""
#: tbl_operations.php:663
#: tbl_operations.php:662
#, possible-php-format
msgid "Table %s has been flushed"
msgstr ""
#: tbl_operations.php:669
#: tbl_operations.php:668
msgid "Flush the table (FLUSH)"
msgstr ""
#: tbl_operations.php:678
#: tbl_operations.php:677
msgid "Delete data or table"
msgstr ""
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr ""
#: tbl_operations.php:713
#: tbl_operations.php:712
msgid "Delete the table (DROP)"
msgstr ""
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr ""
#: tbl_operations.php:742
#: tbl_operations.php:741
#, possible-php-format
msgid "Partition %s"
msgstr ""
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr ""
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr ""
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr ""
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr ""
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr ""
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr ""
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr ""
@ -9246,7 +9255,7 @@ msgid "Version %s snapshot (SQL code)"
msgstr ""
#: tbl_tracking.php:382
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr ""
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -9254,7 +9263,7 @@ msgid "Query error"
msgstr ""
#: tbl_tracking.php:399
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr ""
#: tbl_tracking.php:411

338
po/pl.po

File diff suppressed because it is too large Load Diff

340
po/pt.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

340
po/ro.po

File diff suppressed because it is too large Load Diff

338
po/ru.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
"PO-Revision-Date: 2011-03-13 21:17+0200\n"
"Last-Translator: Victor Volkov <hanut@php-myadmin.ru>\n"
"Language-Team: russian <ru@li.org>\n"
@ -71,8 +71,8 @@ msgstr "Поиск"
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -126,7 +126,7 @@ msgid "Database comment: "
msgstr "Комментарий к базе данных:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Комментарий к таблице"
@ -295,15 +295,15 @@ msgstr "Удалить базу данных (DROP)"
msgid "Copy database to"
msgstr "Скопировать базу данных в"
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Только структура"
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Структура и данные"
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Только данные"
@ -313,17 +313,17 @@ msgstr "Перед копированием создать базу данных
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Добавить %s"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Добавить AUTO_INCREMENT"
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Добавить ограничения"
@ -335,7 +335,7 @@ msgstr "Переключиться на скопированную базу да
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -430,14 +430,14 @@ msgstr "Отсортировать"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr "По возрастанию"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr "По убыванию"
@ -593,17 +593,17 @@ msgstr "В поле:"
msgid "No tables found in database"
msgstr "Таблиц в базе данных не найдено"
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Таблица %s была очищена"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Представление %s было удалено"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Таблица %s была удалена"
@ -647,20 +647,20 @@ msgstr "%s - тип таблиц данного MySQL сервера устан
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "С отмеченными:"
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Отметить все"
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Снять выделение"
@ -690,25 +690,25 @@ msgstr "Очистить"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Удалить"
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr "Проверить таблицу"
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Оптимизировать таблицу"
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr "Восстановить таблицу"
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr "Анализ таблицы"
@ -743,7 +743,7 @@ msgstr "Отслеживаемые таблицы"
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -770,7 +770,7 @@ msgid "Status"
msgstr "Состояние"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -941,7 +941,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "SQL-запрос был успешно выполнен"
@ -1136,6 +1136,18 @@ msgstr "Скрыть параметры поиска"
msgid "Show search results"
msgstr "Отобразить параметры поиска"
#: js/messages.php:86
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Обзор"
#: js/messages.php:87
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Удаление %s"
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1153,7 +1165,16 @@ msgstr "Отобразить поле запроса"
msgid "Inline Edit"
msgstr "Быстрая правка"
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Изменить"
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1161,69 +1182,69 @@ msgstr "Быстрая правка"
msgid "Save"
msgstr "Сохранить"
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Скрыть"
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr "Скрыть параметры поиска"
#: js/messages.php:101
#: js/messages.php:102
msgid "Show search criteria"
msgstr "Отобразить параметры поиска"
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Игнорировать"
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr "Выберите ссылочный ключ"
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr "Выберите внешний ключ"
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr ""
"Выберите поле являющееся первичным (PRIMARY), или уникальным (UNIQUE) "
"индексом"
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Выбор отображаемого столбца"
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr "Добавить параметр для столбца"
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr "Создать пароль"
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Генерировать"
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr "Изменить пароль"
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr "Ещё"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1233,28 +1254,28 @@ msgstr ""
"Новейшая версия %s, выпущена %s."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
msgid ", latest stable version:"
msgstr ", последняя стабильная версия:"
#: js/messages.php:128
#: js/messages.php:129
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Перейти к базе данных"
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr "Готово"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr "Предыдущий"
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1262,231 +1283,231 @@ msgid "Next"
msgstr "Следующий"
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr "Сегодня"
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr "Январь"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr "Февраль"
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr "Март"
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr "Апрель"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "Май"
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr "Июнь"
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr "Июль"
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr "Август"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr "Сентябрь"
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr "Октябрь"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr "Ноябрь"
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr "Декабрь"
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Янв"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Фев"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Мар"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Апр"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Май"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Июн"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Июл"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Авг"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Сен"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Окт"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Ноя"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Дек"
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr "Воскресенье"
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr "Понедельник"
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr "Вторник"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr "Среда"
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr "Четверг"
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr "Пятница"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr "Суббота"
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Вс"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Пн"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Вт"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Ср"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Чт"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Пт"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Сб"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr "Вс"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr "Пн"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr "Вт"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr "Ср"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr "Чт"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr "Пт"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr "Сб"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr "Нед."
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr "Час"
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr "Минута"
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr "Секунда"
@ -1563,14 +1584,6 @@ msgstr "Уникальных элементов"
msgid "Comment"
msgstr "Комментарий"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Изменить"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr "Первичный ключ был удален"
@ -1596,7 +1609,7 @@ msgstr "Базы данных"
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Ошибка"
@ -1866,7 +1879,7 @@ msgid "Data"
msgstr "Данные"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Всего"
@ -2008,7 +2021,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr "Документация"
@ -4626,7 +4639,9 @@ msgstr "Совместимо с MySQL 4.0"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
#, fuzzy
#| msgid "Create new database"
msgid "Create database"
msgstr "Новая база данных"
#: libraries/display_create_database.lib.php:33
@ -5026,7 +5041,7 @@ msgstr "Создать представление"
msgid "Link not found"
msgstr "Связь не найдена"
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr "Информация о версии"
@ -6805,7 +6820,7 @@ msgstr ""
"отображения преобразования %s, будет в скором времени описана."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr "Тип таблиц"
@ -7046,27 +7061,27 @@ msgstr "PHP расширение"
msgid "Show PHP information"
msgstr "Показать информацию PHP"
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr "Вики"
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr "Официальная страница phpMyAdmin"
#: main.php:214
#: main.php:217
msgid "Contribute"
msgstr "Пожертвования"
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr "Получение помощи"
#: main.php:216
#: main.php:219
msgid "List of changes"
msgstr "Список изменений"
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -7079,7 +7094,7 @@ msgstr ""
"доступа, поэтому настоятельно рекомендуется установить пароль для "
"пользователя 'root'."
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@ -7089,7 +7104,7 @@ msgstr ""
"func_overload. Для предотвращения возможной потери данных, данный параметр "
"должен быть выключен!"
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@ -7100,7 +7115,7 @@ msgstr ""
"разбиение строк, что может привести к непредсказуемым результатам. "
"Установите расширение PHP &quot;mbstring&quot;."
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -7112,7 +7127,7 @@ msgstr ""
"cookie определенная в phpMyAdmin, по этой причине, данные входа истекут "
"быстрее установленных."
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@ -7120,13 +7135,13 @@ msgstr ""
"Параметр хранения cookie данных меньше, чем длительность cookie определенная "
"в phpMyAdmin, по этой причине, данные входа истекут быстрее установленных."
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"При cookie-аутентификации, в конфигурационном файле необходимо задать "
"парольную фразу установив значение директивы $cfg['blowfish_secret']."
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@ -7136,7 +7151,7 @@ msgstr ""
"находится в установочной директории phpMyAdmin. Обязательно удалите его "
"сразу после настройки phpMyAdmin."
#: main.php:296
#: main.php:299
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@ -7145,7 +7160,7 @@ msgstr ""
"Дополнительные возможности phpMyAdmin не настроены в полной мере, некоторые "
"функции были отключены. Для определения причины нажмите %sздесь%s."
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@ -7155,7 +7170,7 @@ msgstr ""
"функции phpMyAdmin будет отсутствовать. Например, фрейм навигации не будет "
"обновляться автоматически."
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@ -7164,7 +7179,7 @@ msgstr ""
"Версия клиентской библиотеки MySQL (%s) отличается от версии установленного "
"MySQL-сервера (%s). Это может привести к некорректной работе."
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
@ -7173,7 +7188,7 @@ msgstr ""
"Сервер использует защитную систему Suhosin. Для решения возможных проблем "
"обратитесь к %sдокументации%s."
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr "Базы данных отсутствуют"
@ -7523,20 +7538,20 @@ msgstr "Удалено баз данных: %s"
msgid "Databases statistics"
msgstr "Статистика баз данных"
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr "Репликация головного сервера"
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr "Репликация подчинённого сервера"
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr "Включить статистику"
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -8025,8 +8040,9 @@ msgid "Unable to change master"
msgstr "Невозможно изменить головной сервер"
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
#, fuzzy, php-format
#| msgid "Master server changed succesfully to %s"
msgid "Master server changed successfully to %s"
msgstr "Головной сервер успешно изменён на %s"
#: server_replication.php:180
@ -9766,97 +9782,97 @@ msgstr "Таблица %s была скопирована в %s."
msgid "The table name is empty!"
msgstr "Не задано имя таблицы!"
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr "Изменить сортировку таблицы"
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr "(столбец)"
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr "Переместить таблицы в (база данных<b>.</b>таблица):"
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr "Параметры таблицы"
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr "Переименовать таблицу в"
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr "Скопировать таблицу в (база данных<b>.</b>таблица):"
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr "Переключиться на скопированную таблицу"
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr "Обслуживание таблицы"
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr "Дефрагментировать таблицу"
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr "Обновлен кеш таблицы %s"
#: tbl_operations.php:669
#: tbl_operations.php:668
msgid "Flush the table (FLUSH)"
msgstr "Обновить кеш таблицы (FLUSH)"
#: tbl_operations.php:678
#: tbl_operations.php:677
msgid "Delete data or table"
msgstr "Удалить данные или таблицу"
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr "Очистить таблицу (TRUNCATE)"
#: tbl_operations.php:713
#: tbl_operations.php:712
msgid "Delete the table (DROP)"
msgstr "Удалить таблицу (DROP)"
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr "Обслуживание разделов"
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr "Раздел %s"
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr "Анализ"
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr "Проверка"
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr "Оптимизация"
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr "Перестройка"
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr "Исправление"
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr "Удалить разделение"
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr "Проверить целостность данных:"
@ -10073,7 +10089,7 @@ msgstr "Обзор версии %s (SQL код)"
#: tbl_tracking.php:382
#, fuzzy
#| msgid "Track these data definition statements:"
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr "Отслеживать выражения определяющие структуру:"
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -10085,7 +10101,7 @@ msgstr "Собирать ошибки"
#: tbl_tracking.php:399
#, fuzzy
#| msgid "Track these data manipulation statements:"
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr "Отслеживать выражения изменяющие данные:"
#: tbl_tracking.php:411

354
po/si.po

File diff suppressed because it is too large Load Diff

2463
po/sk.po

File diff suppressed because it is too large Load Diff

402
po/sl.po

File diff suppressed because it is too large Load Diff

340
po/sq.po

File diff suppressed because it is too large Load Diff

340
po/sr.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

338
po/sv.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
"PO-Revision-Date: 2011-02-16 21:42+0200\n"
"Last-Translator: <stefan@inkopsforum.se>\n"
"Language-Team: swedish <sv@li.org>\n"
@ -70,8 +70,8 @@ msgstr "Sök"
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -125,7 +125,7 @@ msgid "Database comment: "
msgstr "Databaskommentar: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Tabellkommentarer"
@ -294,15 +294,15 @@ msgstr "Tag bort databasen (DROP)"
msgid "Copy database to"
msgstr "Kopiera databas till"
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Enbart struktur"
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktur och data"
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Enbart data"
@ -312,17 +312,17 @@ msgstr "CREATE DATABASE före kopiering"
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Lägg till %s"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Lägg till AUTO_INCREMENT-värde"
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Lägg till restriktioner"
@ -334,7 +334,7 @@ msgstr "Byt till kopierad databas"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -426,14 +426,14 @@ msgstr "Sortera"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr "Stigande"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr "Fallande"
@ -587,17 +587,17 @@ msgstr "Inuti kolumnen:"
msgid "No tables found in database"
msgstr "Inga tabeller finns i databasen."
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Tabellen %s har tömts"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "Vyn %s har tagits bort"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Tabellen %s har tagits bort"
@ -639,20 +639,20 @@ msgstr "%s är standardlagringsmotorn på denna MySQL-server."
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "Med markerade:"
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Markera alla"
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Avmarkera alla"
@ -682,25 +682,25 @@ msgstr "Töm"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Radera"
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr "Kontrollera tabell"
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Optimera tabell"
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr "Reparera tabell"
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr "Analysera tabell"
@ -735,7 +735,7 @@ msgstr "Spårade tabeller"
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -762,7 +762,7 @@ msgid "Status"
msgstr "Status"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -929,7 +929,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Din SQL-fråga utfördes korrekt"
@ -1124,6 +1124,18 @@ msgstr "Dölj sökkriterier"
msgid "Show search results"
msgstr "Visa sökkriterier"
#: js/messages.php:86
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Visa"
#: js/messages.php:87
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Tar bort %s"
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1141,7 +1153,16 @@ msgstr "Visa frågerutan"
msgid "Inline Edit"
msgstr "Redigera"
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ändra"
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1149,67 +1170,67 @@ msgstr "Redigera"
msgid "Save"
msgstr "Spara"
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "Dölj"
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr "Dölj sökkriterier"
#: js/messages.php:101
#: js/messages.php:102
msgid "Show search criteria"
msgstr "Visa sökkriterier"
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ignorera"
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr "Välj refererad nyckel"
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr "Välj främmande nyckel"
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr "Välj den primära nyckeln eller en unik nyckel"
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Välj kolumn att visa"
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr "Välj ett alternativ för kolumn"
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr "Skapa lösenord"
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "Generera"
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr "Ändra lösenord"
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr "Mera"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1219,28 +1240,28 @@ msgstr ""
"senaste versionen är %s, publicerad den %s."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
msgid ", latest stable version:"
msgstr "senaste stabila version:"
#: js/messages.php:128
#: js/messages.php:129
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Gå till daatabas"
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr "Klart"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr "Föregående"
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1248,231 +1269,231 @@ msgid "Next"
msgstr "Nästa"
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr "Idag"
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr "januari"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr "februari"
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr "mars"
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr "april"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "maj"
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr "juni"
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr "juli"
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr "augusti"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr "september"
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr "oktober"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr "november"
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr "december"
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "mars"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "dec"
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr "Söndag"
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr "Måndag"
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr "Tisdag"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr "Onsdag"
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr "Torsdag"
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr "Fredag"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr "Lördag"
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Sön"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Mån"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Tis"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Tors"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Lör"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr "Sö"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr "Må"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr "Ti"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr "On"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr "To"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr "Lö"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr "Vecka"
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr "Timmar"
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr "Minuter"
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr "Sekunder"
@ -1546,14 +1567,6 @@ msgstr "Kardinalitet"
msgid "Comment"
msgstr "Kommentar"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ändra"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr "Den primära nyckeln har tagits bort"
@ -1581,7 +1594,7 @@ msgstr "Databaserna"
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Fel"
@ -1850,7 +1863,7 @@ msgid "Data"
msgstr "Data"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Total"
@ -1988,7 +2001,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr "Dokumentation"
@ -4557,7 +4570,9 @@ msgstr "Kompatibel med MySQL 4.0"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
#, fuzzy
#| msgid "Create new database"
msgid "Create database"
msgstr "Skapa ny databas"
#: libraries/display_create_database.lib.php:33
@ -4956,7 +4971,7 @@ msgstr "Skapa vy"
msgid "Link not found"
msgstr "Länken hittades inte"
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr "Versionsinformation"
@ -6723,7 +6738,7 @@ msgstr ""
"fråga upphovsmannen vad %s gör."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr "Lagringsmotor"
@ -6964,27 +6979,27 @@ msgstr "PHP-tillägg"
msgid "Show PHP information"
msgstr "Visa PHP-information"
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr "Wiki"
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr "phpMyAdmin:s officiella hemsida"
#: main.php:214
#: main.php:217
msgid "Contribute"
msgstr "Bidra"
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr "Få support"
#: main.php:216
#: main.php:219
msgid "List of changes"
msgstr "Lista över ändringar"
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -6996,7 +7011,7 @@ msgstr ""
"denna standard, är öppen för intrång, och du bör verkligen fixa detta "
"säkerhetshål genom att ange ett lösenord för användare 'root'."
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@ -7006,7 +7021,7 @@ msgstr ""
"alternativ är inkompatibelt med phpMyAdmin och kan leda till att data kan "
"skadas!"
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@ -7016,7 +7031,7 @@ msgstr ""
"flerbitars teckenuppsättning. phpMyAdmin kan inte dela upp strängar korrekt "
"utan tillägget mbstring, vilket kan resultera i oväntade resultat."
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -7028,7 +7043,7 @@ msgstr ""
"giltighet konfigurerad i phpMyAdmin. På grund av detta kommer din inloggning "
"upphöra att gälla tidigare än konfigurerat i phpMyAdmin."
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@ -7037,11 +7052,11 @@ msgstr ""
"grund av detta kommer dina inloggningsuppgifter upphöra att gälla tidigare "
"än konfigurerat i phpMyAdmin."
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Konfigurationsfilen behöver nu ett hemligt lösenord (blowfish_secret)."
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@ -7051,7 +7066,7 @@ msgstr ""
"fortfarande i din phpMyAdmin-katalog. Du borde ta bort den när phpMyAdmin "
"har konfigurerats."
#: main.php:296
#: main.php:299
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@ -7060,7 +7075,7 @@ msgstr ""
" phpMyAdmin konfigurationen är inte fullständigt konfigurerat, vissa utökade "
"funktioner har inaktiverats.. Föra att ta reda på varför klicka%shär%s."
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@ -7070,7 +7085,7 @@ msgstr ""
"phpMyAdmin funktionalitet kommer saknas. Till exempel kommer "
"navigeringsramen inte uppdateras automatiskt."
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@ -7079,14 +7094,14 @@ msgstr ""
"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %"
"s. Detta kan orsaka oförutsägbara beteenden."
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr "Server körs med Suhosin. Se %sdokumentation%s för möjliga problem."
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr "Inga databaser"
@ -7435,20 +7450,20 @@ msgstr "%s databaser har framgångsrikt tagits bort."
msgid "Databases statistics"
msgstr "Databas-statistik"
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr "Master replikering"
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr "Slav replikering"
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr "Aktivera Statistik"
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -7929,8 +7944,9 @@ msgid "Unable to change master"
msgstr "Kan inte ändra master"
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
#, fuzzy, php-format
#| msgid "Master server changed succesfully to %s"
msgid "Master server changed successfully to %s"
msgstr "Master server ändrad framgångsrikt till %s"
#: server_replication.php:180
@ -9629,97 +9645,97 @@ msgstr "Tabellen %s har kopierats till %s."
msgid "The table name is empty!"
msgstr "Tabellnamnet är tomt!"
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr "Sortera om tabellen efter"
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr "(var för sig)"
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr "Flytta tabellen till (databas<b>.</b>tabell):"
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr "Tabellalternativ"
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr "Döp om tabellen till"
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr "Kopiera tabellen till (databas<b>.</b>tabell):"
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr "Byt till kopierad tabell"
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr "Tabellunderhåll"
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr "Defragmentera tabell"
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr "Tabellen %s har rensats"
#: tbl_operations.php:669
#: tbl_operations.php:668
msgid "Flush the table (FLUSH)"
msgstr "Rensa tabellen (flush)"
#: tbl_operations.php:678
#: tbl_operations.php:677
msgid "Delete data or table"
msgstr "Ta bort data eller tabell"
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr "Töm tabellen (TRUNCATE)"
#: tbl_operations.php:713
#: tbl_operations.php:712
msgid "Delete the table (DROP)"
msgstr "Ta bort tabellen (DROP)"
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr "Underhåll av partition"
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr "Partition %s"
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr "Analysera"
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr "Kontrollera"
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr "Optimera"
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr "Återskapa"
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr "Reparera"
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr "Ta bort partitionering"
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr "Kontrollera referensintegritet:"
@ -9935,7 +9951,7 @@ msgstr "Version %s ögonblicksbild (SQL-kod)"
#: tbl_tracking.php:382
#, fuzzy
#| msgid "Track these data definition statements:"
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr "Spåra dessa datadefinitioners kommandon"
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -9947,7 +9963,7 @@ msgstr "Samla fel"
#: tbl_tracking.php:399
#, fuzzy
#| msgid "Track these data manipulation statements:"
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr "Spåra dessa datahanterings kommandon"
#: tbl_tracking.php:411

329
po/ta.po
View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\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"
@ -70,8 +70,8 @@ msgstr ""
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -123,7 +123,7 @@ msgid "Database comment: "
msgstr ""
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr ""
@ -292,15 +292,15 @@ msgstr ""
msgid "Copy database to"
msgstr ""
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr ""
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr ""
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr ""
@ -310,17 +310,17 @@ msgstr ""
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "%sஐ சேர்க்க"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்க்க"
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "தடைகளை சேர்க்க"
@ -332,7 +332,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -423,14 +423,14 @@ msgstr ""
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr ""
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr ""
@ -588,17 +588,17 @@ msgstr ""
msgid "No tables found in database"
msgstr ""
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr ""
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr ""
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr ""
@ -640,20 +640,20 @@ msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr ""
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr ""
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr ""
@ -683,25 +683,25 @@ msgstr ""
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr ""
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr ""
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr ""
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr ""
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr ""
@ -732,7 +732,7 @@ msgstr ""
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -759,7 +759,7 @@ msgid "Status"
msgstr ""
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -912,7 +912,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr ""
@ -1103,6 +1103,14 @@ msgstr ""
msgid "Show search results"
msgstr ""
#: js/messages.php:86
msgid "Browsing"
msgstr ""
#: js/messages.php:87
msgid "Deleting"
msgstr ""
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1122,7 +1130,16 @@ msgstr ""
msgid "Inline Edit"
msgstr "உள்வரிசை"
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1130,69 +1147,69 @@ msgstr "உள்வரிசை"
msgid "Save"
msgstr ""
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr ""
#: js/messages.php:101
#: js/messages.php:102
msgid "Show search criteria"
msgstr ""
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr ""
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr ""
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr ""
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr ""
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr ""
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr ""
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr ""
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr ""
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
#, fuzzy
#| msgid "Mon"
msgid "More"
msgstr "திங்கள்"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1200,28 +1217,28 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
#, fuzzy
#| msgid "Check for latest version"
msgid ", latest stable version:"
msgstr "புதிய பதிப்பை பார்வையிடவும்"
#: js/messages.php:128
#: js/messages.php:129
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr ""
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr ""
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1229,94 +1246,94 @@ msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr ""
#: js/messages.php:155
#: js/messages.php:156
#, fuzzy
#| msgid "Jan"
msgid "January"
msgstr "தை"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr ""
#: js/messages.php:157
#: js/messages.php:158
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "பங்குனி"
#: js/messages.php:158
#: js/messages.php:159
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "சித்திரை"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "வைகாசி"
#: js/messages.php:160
#: js/messages.php:161
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "ஆணி"
#: js/messages.php:161
#: js/messages.php:162
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "ஆடி"
#: js/messages.php:162
#: js/messages.php:163
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "ஆவணி"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr ""
#: js/messages.php:164
#: js/messages.php:165
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "ஐப்பசி"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr ""
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr ""
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "தை"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "மாசி"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "பங்குனி"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "சித்திரை"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@ -1324,174 +1341,174 @@ msgid "May"
msgstr "வைகாசி"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "ஆணி"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "ஆடி"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "ஆவணி"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "புரட்டாதி"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "ஐப்பசி"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "காத்திகை"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "மார்கழி"
#: js/messages.php:195
#: js/messages.php:196
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "ஞாயிறு"
#: js/messages.php:196
#: js/messages.php:197
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "திங்கள்"
#: js/messages.php:197
#: js/messages.php:198
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "செவ்வாய்"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr ""
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr ""
#: js/messages.php:200
#: js/messages.php:201
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "வெள்ளி"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "ஞாயிறு"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "திங்கள்"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "செவ்வாய்"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "புதன்"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "வியாழன்"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "வெள்ளி"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "சனி"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "ஞாயிறு"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "திங்கள்"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "செவ்வாய்"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "புதன்"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "வியாழன்"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "வெள்ளி"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "சனி"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr ""
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr ""
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr ""
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr ""
@ -1562,14 +1579,6 @@ msgstr ""
msgid "Comment"
msgstr ""
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr ""
@ -1595,7 +1604,7 @@ msgstr ""
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr ""
@ -1859,7 +1868,7 @@ msgid "Data"
msgstr ""
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr ""
@ -1990,7 +1999,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr ""
@ -4403,7 +4412,7 @@ msgstr ""
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
msgid "Create database"
msgstr ""
#: libraries/display_create_database.lib.php:33
@ -4787,7 +4796,7 @@ msgstr ""
msgid "Link not found"
msgstr ""
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr ""
@ -6421,7 +6430,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr ""
@ -6621,27 +6630,27 @@ msgstr ""
msgid "Show PHP information"
msgstr ""
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr ""
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr ""
#: main.php:214
#: main.php:217
msgid "Contribute"
msgstr ""
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr ""
#: main.php:216
#: main.php:219
msgid "List of changes"
msgstr ""
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -6649,21 +6658,21 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -6671,52 +6680,52 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
#: main.php:296
#: main.php:299
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr ""
@ -7061,20 +7070,20 @@ msgstr ""
msgid "Databases statistics"
msgstr ""
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr ""
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr ""
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr ""
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -7532,7 +7541,7 @@ msgstr ""
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
msgid "Master server changed successfully to %s"
msgstr ""
#: server_replication.php:180
@ -9038,97 +9047,97 @@ msgstr ""
msgid "The table name is empty!"
msgstr ""
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr ""
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr ""
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr ""
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr ""
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr ""
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr ""
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr ""
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr ""
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr ""
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr ""
#: tbl_operations.php:669
#: tbl_operations.php:668
msgid "Flush the table (FLUSH)"
msgstr ""
#: tbl_operations.php:678
#: tbl_operations.php:677
msgid "Delete data or table"
msgstr ""
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr ""
#: tbl_operations.php:713
#: tbl_operations.php:712
msgid "Delete the table (DROP)"
msgstr ""
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr ""
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr ""
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr ""
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr ""
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr ""
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr ""
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr ""
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr ""
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr ""
@ -9340,7 +9349,7 @@ msgid "Version %s snapshot (SQL code)"
msgstr ""
#: tbl_tracking.php:382
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr ""
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -9348,7 +9357,7 @@ msgid "Query error"
msgstr ""
#: tbl_tracking.php:399
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr ""
#: tbl_tracking.php:411

337
po/te.po
View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
"PO-Revision-Date: 2011-04-07 17:06+0200\n"
"Last-Translator: <veeven@gmail.com>\n"
"Language-Team: Telugu <te@li.org>\n"
@ -71,8 +71,8 @@ msgstr "శోధించు"
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -124,7 +124,7 @@ msgid "Database comment: "
msgstr "డేటాబేస్ వ్యాఖ్య:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr "పట్టిక వ్యాఖ్యలు"
@ -299,15 +299,15 @@ msgstr "డేటాబేస్ ను తుడిచివేయి"
msgid "Copy database to"
msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ చేయి"
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "నిర్మాణం మాత్రమే"
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "నిర్మాణం, మరియు డేటా"
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "డేటా మాత్రమే"
@ -317,17 +317,17 @@ msgstr "కాపీ చేయబోయే ముందు డేటాబేస
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "%s cErcu"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr ""
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr ""
@ -339,7 +339,7 @@ msgstr ""
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -432,14 +432,14 @@ msgstr "క్రమంలో పేర్చు"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr "ఆరోహణ"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr "అవరోహణ"
@ -596,17 +596,17 @@ msgstr ""
msgid "No tables found in database"
msgstr ""
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr ""
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr ""
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr ""
@ -650,20 +650,20 @@ msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr ""
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr ""
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr ""
@ -694,25 +694,25 @@ msgstr "ఖాళీ"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr ""
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr ""
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr ""
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr ""
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr ""
@ -744,7 +744,7 @@ msgstr ""
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -771,7 +771,7 @@ msgid "Status"
msgstr "స్థితి"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -924,7 +924,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "మీ SQL క్వెరీ విజయవంతంగా నిర్వహించబడింది"
@ -1135,6 +1135,16 @@ msgstr ""
msgid "Show search results"
msgstr ""
#: js/messages.php:86
msgid "Browsing"
msgstr ""
#: js/messages.php:87
#, fuzzy
#| msgid "Delete"
msgid "Deleting"
msgstr "తొలగించు"
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1152,7 +1162,16 @@ msgstr ""
msgid "Inline Edit"
msgstr ""
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "మార్చు"
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1161,67 +1180,67 @@ msgid "Save"
msgstr "భద్రపరచు"
# మొదటి అనువాదము
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "దాచు"
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr ""
#: js/messages.php:101
#: js/messages.php:102
msgid "Show search criteria"
msgstr ""
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr ""
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr ""
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr ""
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr ""
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr ""
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr ""
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr ""
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr "సంకేతపదాన్ని మార్చు"
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr "మరిన్ని"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1229,28 +1248,28 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
msgid ", latest stable version:"
msgstr ""
#: js/messages.php:128
#: js/messages.php:129
msgid "up to date"
msgstr ""
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr ""
# మొదటి అనువాదము
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr "గత"
# మొదటి అనువాదము
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1258,232 +1277,232 @@ msgid "Next"
msgstr "తదుపరి"
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr "ఈరోజు"
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr "జనవరి"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr "ఫిబ్రవరి"
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr "మార్చి"
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr "ఏప్రిల్"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "మే"
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr "జూన్"
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr "జూలై"
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr "ఆగస్ట్"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr "సెప్టెంబర్"
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr "అక్టోబర్"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr "నవంబర్"
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr "డిసెంబర్"
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "జన"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "ఫిబ్ర"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "మార్చి"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "ఏప్రి"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "మే"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "జూన్"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "జూలై"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "ఆగ"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "సెప్టె"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "అక్టో"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "నవం"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "డిసెం"
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr "ఆదివారం"
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr "సోమవారం"
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr "మంగళవారం"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr "బుధవారం"
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr "గురువారం"
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr "శుక్రవారం"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr "శనివారం"
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "ఆది"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "సోమ"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "మంగళ"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "బుధ"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "గురు"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "శుక్ర"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "శని"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr "ఆ"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr "సో"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr "మం"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr "బు"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr "గు"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr "శు"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr "శ"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr "వారం"
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr "గంట"
# మొదటి అనువాదము
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr "నిమిషం"
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr "క్షణం"
@ -1554,14 +1573,6 @@ msgstr ""
msgid "Comment"
msgstr "వ్యాఖ్య"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "మార్చు"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr ""
@ -1587,7 +1598,7 @@ msgstr ""
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "పొరపాటు"
@ -1853,7 +1864,7 @@ msgid "Data"
msgstr ""
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "మొత్తం"
@ -1987,7 +1998,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr "పత్రావళి"
@ -4410,10 +4421,14 @@ msgstr ""
msgid "MySQL 4.0 compatible"
msgstr ""
# మొదటి అనువాదము
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
msgstr ""
#, fuzzy
#| msgctxt "short form"
#| msgid "Create table"
msgid "Create database"
msgstr "పట్టికను సృష్టించు"
# మొదటి అనువాదము
#: libraries/display_create_database.lib.php:33
@ -4802,7 +4817,7 @@ msgstr "సృష్టించు"
msgid "Link not found"
msgstr ""
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr "సంచిక సమాచారం"
@ -6458,7 +6473,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr ""
@ -6667,27 +6682,27 @@ msgstr ""
msgid "Show PHP information"
msgstr ""
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr "వికీ"
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr ""
#: main.php:214
#: main.php:217
msgid "Contribute"
msgstr ""
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr "సహాయాన్ని పొందండి"
#: main.php:216
#: main.php:219
msgid "List of changes"
msgstr "మార్పుల జాబితా"
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -6695,21 +6710,21 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -6717,52 +6732,52 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
#: main.php:296
#: main.php:299
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr ""
@ -7125,20 +7140,20 @@ msgstr ""
msgid "Databases statistics"
msgstr ""
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr ""
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr ""
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr "గణాంకాలని చేతనంచేయి"
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -7602,7 +7617,7 @@ msgstr ""
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
msgid "Master server changed successfully to %s"
msgstr ""
#: server_replication.php:180
@ -9122,98 +9137,98 @@ msgstr ""
msgid "The table name is empty!"
msgstr ""
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr ""
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr ""
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr ""
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr "పట్టిక ఎంపికలు"
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr ""
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr ""
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr ""
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr ""
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr ""
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr ""
#: tbl_operations.php:669
#: tbl_operations.php:668
msgid "Flush the table (FLUSH)"
msgstr ""
#: tbl_operations.php:678
#: tbl_operations.php:677
msgid "Delete data or table"
msgstr ""
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr ""
#: tbl_operations.php:713
#: tbl_operations.php:712
msgid "Delete the table (DROP)"
msgstr ""
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr ""
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr ""
# మొదటి అనువాదము
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr "విశదీకరించు"
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr ""
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr ""
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr ""
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr ""
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr ""
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr ""
@ -9427,7 +9442,7 @@ msgid "Version %s snapshot (SQL code)"
msgstr ""
#: tbl_tracking.php:382
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr ""
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -9435,7 +9450,7 @@ msgid "Query error"
msgstr ""
#: tbl_tracking.php:399
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr ""
#: tbl_tracking.php:411

340
po/th.po

File diff suppressed because it is too large Load Diff

400
po/tr.po

File diff suppressed because it is too large Load Diff

340
po/tt.po

File diff suppressed because it is too large Load Diff

335
po/ug.po
View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
"PO-Revision-Date: 2010-08-26 11:59+0200\n"
"Last-Translator: <gheni@yahoo.cn>\n"
"Language-Team: Uyghur <ug@li.org>\n"
@ -72,8 +72,8 @@ msgstr "ئىزدەش"
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -125,7 +125,7 @@ msgid "Database comment: "
msgstr "ساندان ئىزاھاتى:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr "جەدۋەل ئىزاھى"
@ -294,15 +294,15 @@ msgstr "كۆچۈرۈلگەن ساندان"
msgid "Copy database to"
msgstr "كۆچۈرۈلگەن ساندان"
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "تۈزىلىشىنىلا"
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "تۈزۈلىشى ۋە ئۇچۇر"
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "ئۇچۇرنىلا"
@ -312,17 +312,17 @@ msgstr "ئاندىنقى سانداننى كۆپەيتىپ ساندان قۇرۇ
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "قوشۇلغىنى %s"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT قوشۇش"
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "مەجبۇرى قوشۇش"
@ -334,7 +334,7 @@ msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -428,14 +428,14 @@ msgstr "تۈرلەش"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr "ئارتىش"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr "كېمىيىش"
@ -590,17 +590,17 @@ msgstr "ئىچىدىكى سۆزلەم:"
msgid "No tables found in database"
msgstr "سانداندا جەدۋەل يوق"
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr " %s جەدۋەل تازىلاندى"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "%s كۆرۈنمە ئۆچۈرۈلدى"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "%s جەدىۋەل ئۆچۈرۈلدى"
@ -642,20 +642,20 @@ msgstr "%s بولسا MySQL مۇلازىمىتېرنىڭ ساقلاش ئەندى
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "تاللانغىنى:"
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "ھەممىنى تاللاش"
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "تاللاشنى بىكار قىلىش"
@ -685,25 +685,25 @@ msgstr "تازىلاش"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "ئۆچۈرۈش"
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr "جەدۋەل تەكشۈرۈش"
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr "جەدۋەلنى ئەلالاش"
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr "جەدۋەلنى ئوڭشاش"
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr "جەدۋەل تەھلىلى"
@ -734,7 +734,7 @@ msgstr "ئىزلانغان جەدۋەل"
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -761,7 +761,7 @@ msgid "Status"
msgstr "ھالەت"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -927,7 +927,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "SQL بۇيرىقى غەلبىلىك بىجىرىلدى"
@ -1138,6 +1138,18 @@ msgstr ""
msgid "Show search results"
msgstr "SQL سورىقى"
#: js/messages.php:86
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "كۆزەت"
#: js/messages.php:87
#, fuzzy
#| msgid "Delete"
msgid "Deleting"
msgstr "ئۆچۈرۈش"
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1159,7 +1171,16 @@ msgstr "SQL سورىقى"
msgid "Inline Edit"
msgstr " ئىچكى بىرلىشىش"
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "تەھىرلەش"
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1167,72 +1188,72 @@ msgstr " ئىچكى بىرلىشىش"
msgid "Save"
msgstr ""
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr ""
#: js/messages.php:101
#: js/messages.php:102
#, fuzzy
#| msgid "SQL query"
msgid "Show search criteria"
msgstr "SQL سورىقى"
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr ""
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr "سېرتقى ئۇلىنىشنى تاللاش"
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr "تاشقى ئاچقۇق قىممىتى"
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ"
# column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "سۆزلەمنى كۆرسەتمەسلىك"
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr ""
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr "پارول ھاسىللاش"
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "ھاسىللاش"
#: js/messages.php:119
#: js/messages.php:120
#, fuzzy
#| msgid "Change password"
msgid "Change Password"
msgstr "پارولنى ئۆزگەرتىش"
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr "تېخىمۇ كۆپ"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1240,13 +1261,13 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
#, fuzzy
#| msgid "Last version"
msgid ", latest stable version:"
msgstr "ېيڭى نەشىر"
#: js/messages.php:128
#: js/messages.php:129
#, fuzzy
#| msgid "%s table"
#| msgid_plural "%s tables"
@ -1254,17 +1275,17 @@ msgid "up to date"
msgstr "%s جەدۋەل"
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr "تامام"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr "ئالدىنقى ئاي"
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1272,231 +1293,231 @@ msgid "Next"
msgstr "كىيىنكى ئاي"
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr "بۈگۈن"
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr "قەھرىتان"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr "ھۇت"
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr "نورۇز"
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr "ئۈمىد"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "باھار"
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr "6-ئاي"
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr "7-ئاي"
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr "8-ئاي"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr "9-ئاي"
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr "10-ئاي"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr "11-ئاي"
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr "12-ئاي"
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "1-ئاي"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "2-ئاي"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "3-ئاي"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "4-ئاي"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "5-ئاي"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "6-ئاي"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "چىللە"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "تومۇز"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "مىزان"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "ئوغۇز"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "ئوغلاق"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "كۆنەك"
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr "يەكشەنبە"
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr "دۈشەنبە"
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr "سەيشەنبە"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr "چارشەنبە"
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr "پەيشەنبە"
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr "جۈمە"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr "شەنبە"
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "يەكشەنبە"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "دۈشەنبە"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "سەيشەنبە"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "چارشەنبە"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "پەيشەنبە"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "جۈمە"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "شەنبە"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr "يەكشەنبە"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr "دۈشەنبە"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr "سەيشەنبە"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr "چارشەنبە"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr "پەيشەنبە"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr "جۈمە"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr "شەنبە"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr "ھەپتە"
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr "سائەت"
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr "مىنۇت"
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr "سېكنۇت"
@ -1571,14 +1592,6 @@ msgstr "تۈپ سان"
msgid "Comment"
msgstr "ئىزاھات"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "تەھىرلەش"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr "ئاساسىي قىممەت ئۆچۈرۈلدى"
@ -1606,7 +1619,7 @@ msgstr "ساندان"
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "خاتالىق"
@ -1868,7 +1881,7 @@ msgid "Data"
msgstr "سانلىق مەلۇمات"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "يىغىندىسى"
@ -2004,7 +2017,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr "قوللانما"
@ -4453,7 +4466,9 @@ msgstr "MySQL 4.0 بىلەن سەپلەش"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
#, fuzzy
#| msgid "Create new database"
msgid "Create database"
msgstr "ساندان قۇرۇش"
#: libraries/display_create_database.lib.php:33
@ -4882,7 +4897,7 @@ msgstr "نەشىرنى قۇىماق"
msgid "Link not found"
msgstr "ئۇلىنىشنى تاپالمىدى"
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr ""
@ -6554,7 +6569,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr ""
@ -6759,27 +6774,27 @@ msgstr ""
msgid "Show PHP information"
msgstr ""
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr ""
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr ""
#: main.php:214
#: main.php:217
msgid "Contribute"
msgstr ""
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr ""
#: main.php:216
#: main.php:219
msgid "List of changes"
msgstr ""
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -6787,21 +6802,21 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -6809,24 +6824,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
#: main.php:296
#: main.php:299
#, fuzzy, php-format
#| msgid ""
#| "The phpMyAdmin configuration storage has been deactivated. To find out "
@ -6838,28 +6853,28 @@ msgstr ""
"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %"
"sبۇ يەرنى كۆرۈڭ%s."
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr ""
@ -7226,20 +7241,20 @@ msgstr ""
msgid "Databases statistics"
msgstr ""
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr ""
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr ""
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr ""
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -7697,7 +7712,7 @@ msgstr ""
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
msgid "Master server changed successfully to %s"
msgstr ""
#: server_replication.php:180
@ -9221,101 +9236,101 @@ msgstr ""
msgid "The table name is empty!"
msgstr ""
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr ""
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr ""
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr ""
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr ""
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr ""
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr ""
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr ""
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr ""
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr ""
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr ""
#: tbl_operations.php:669
#: tbl_operations.php:668
msgid "Flush the table (FLUSH)"
msgstr ""
#: tbl_operations.php:678
#: tbl_operations.php:677
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش"
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr ""
#: tbl_operations.php:713
#: tbl_operations.php:712
#, fuzzy
#| msgid "Drop the database (DROP)"
msgid "Delete the table (DROP)"
msgstr "كۆچۈرۈلگەن ساندان"
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr ""
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr ""
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr ""
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr ""
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr ""
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr ""
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr ""
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr ""
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr ""
@ -9525,7 +9540,7 @@ msgid "Version %s snapshot (SQL code)"
msgstr ""
#: tbl_tracking.php:382
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr ""
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -9535,7 +9550,7 @@ msgid "Query error"
msgstr "تەكشۈرۈش"
#: tbl_tracking.php:399
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr ""
#: tbl_tracking.php:411

340
po/uk.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
"PO-Revision-Date: 2010-12-28 22:26+0200\n"
"Last-Translator: Olexiy Zagorskyi <zalex_ua@i.ua>\n"
"Language-Team: ukrainian <uk@li.org>\n"
@ -71,8 +71,8 @@ msgstr "Шукати"
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -124,7 +124,7 @@ msgid "Database comment: "
msgstr "Коментар бази даних: "
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr "Коментар до таблиці"
@ -293,15 +293,15 @@ msgstr "Знищити базу даних (DROP)"
msgid "Copy database to"
msgstr "Копіювати базу даних в"
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Лише структуру"
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Структуру і дані"
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Лише дані"
@ -311,17 +311,17 @@ msgstr "Перед копіюванням створити базу даних (
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Додати %s"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Додати AUTO_INCREMENT значення"
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Додати constraints"
@ -333,7 +333,7 @@ msgstr "Перейти до скопійованої бази даних"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -427,14 +427,14 @@ msgstr "Посортувати"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr "Зростаючий"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr "Спадаючий"
@ -590,17 +590,17 @@ msgstr "Всередині стовпчика:"
msgid "No tables found in database"
msgstr "В БД не виявлено таблиць."
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "Таблицю %s було очищено"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr ""
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "Таблицю %s було знищено"
@ -642,20 +642,20 @@ msgstr ""
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "З відміченими:"
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "Відмітити все"
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "Зняти усі відмітки"
@ -685,25 +685,25 @@ msgstr "Очистити"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "Знищити"
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr "Перевірити таблицю"
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr "Оптимізувати таблицю"
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr "Ремонтувати таблицю"
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr "Аналіз таблиці"
@ -736,7 +736,7 @@ msgstr ""
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -763,7 +763,7 @@ msgid "Status"
msgstr "Статус"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -918,7 +918,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Ваш SQL-запит було успішно виконано"
@ -1109,6 +1109,18 @@ msgstr "Сховати критерії пошуку"
msgid "Show search results"
msgstr "Показати критерії пошуку"
#: js/messages.php:86
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "Переглянути"
#: js/messages.php:87
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "Усунути %s"
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1126,7 +1138,16 @@ msgstr "Показати блок запиту"
msgid "Inline Edit"
msgstr "Редагування рядків"
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Редагувати"
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1134,67 +1155,67 @@ msgstr "Редагування рядків"
msgid "Save"
msgstr "Зберегти"
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr "Сховати критерії пошуку"
#: js/messages.php:101
#: js/messages.php:102
msgid "Show search criteria"
msgstr "Показати критерії пошуку"
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "Ігнорувати"
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr ""
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr ""
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr ""
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "Виберіть колонку для відображення"
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr ""
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr "Згенерувати пароль"
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr ""
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr "Змінити пароль"
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr "Більше"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1202,28 +1223,28 @@ msgid ""
msgstr ""
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
msgid ", latest stable version:"
msgstr ""
#: js/messages.php:128
#: js/messages.php:129
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "Перейти до бази даних"
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr "Готово"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr "Попередні"
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1231,231 +1252,231 @@ msgid "Next"
msgstr "Наступні"
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr "Сьогодні"
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr "Січень"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr "Лютий"
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr "Березень"
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr "Квітень"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "Травень"
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr "Червень"
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr "Липень"
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr "Серпень"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr "Вересень"
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr "Жовтень"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr "Листопад"
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr "Грудень"
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "Січ"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "Лют"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "Бер"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "Квт"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "Трв"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "Чрв"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "Лип"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "Сер"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "Вер"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "Жов"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "Лис"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "Гру"
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr "Неділя"
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr "Понеділок"
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr "Вівторок"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr ""
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr ""
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr "П'ятниця"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "Нд"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "Пн"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "Вт"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "Ср"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "Чт"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "Пт"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "Сб"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr "Нд"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr "Пн"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr "Вт"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr "Ср"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr "Чт"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr "Пт"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr "Сб"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr ""
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr ""
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr "Хвилина"
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr "Секунда"
@ -1526,14 +1547,6 @@ msgstr "Кількість елементів"
msgid "Comment"
msgstr ""
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Редагувати"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr "Первинний ключ було знищено"
@ -1559,7 +1572,7 @@ msgstr "Бази Даних"
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "Помилка"
@ -1822,7 +1835,7 @@ msgid "Data"
msgstr "Дані"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "Разом"
@ -1962,7 +1975,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr "Документація"
@ -4367,7 +4380,9 @@ msgstr ""
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
#, fuzzy
#| msgid "Create new database"
msgid "Create database"
msgstr "Створити нову БД"
#: libraries/display_create_database.lib.php:33
@ -4771,7 +4786,7 @@ msgstr "Створити користувача"
msgid "Link not found"
msgstr "Лінк не знайдено"
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr ""
@ -6485,7 +6500,7 @@ msgstr ""
"робить %s."
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr ""
@ -6729,31 +6744,31 @@ msgstr ""
msgid "Show PHP information"
msgstr "Показати інформацію про PHP"
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr ""
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr "Офіційна сторінка phpMyAdmin"
#: main.php:214
#: main.php:217
#, fuzzy
#| msgid "Attributes"
msgid "Contribute"
msgstr "Атрибути"
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr ""
#: main.php:216
#: main.php:219
#, fuzzy
#| msgid "No change"
msgid "List of changes"
msgstr "Змін немає"
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -6765,21 +6780,21 @@ msgstr ""
"відкритий для вторгнення і тому Вам обов'язково слід виправити цю прогалину "
"у безпеці."
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -6787,24 +6802,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Конфігураційний файл потребує секретну фразу (пароль)."
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
#: main.php:296
#: main.php:299
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@ -6816,28 +6831,28 @@ msgstr ""
"Додаткова можливість роботи із залінкованими таблицями деактивована. Для "
"того, щоб довідатись чому, натисніть %sтут%s."
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr "БД відсутні"
@ -7212,20 +7227,20 @@ msgstr "%s база(и) даних успішно знищено."
msgid "Databases statistics"
msgstr "Статистика баз даних"
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr ""
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr ""
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr "Дозволити статистику"
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -7708,9 +7723,10 @@ msgid "Unable to change master"
msgstr ""
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
msgstr ""
#, fuzzy, php-format
#| msgid "The privileges were reloaded successfully."
msgid "Master server changed successfully to %s"
msgstr "Права успішно перезавантажено."
#: server_replication.php:180
msgid "This server is configured as master in a replication process."
@ -9239,101 +9255,101 @@ msgstr "Таблицю %s було скопійовано в %s."
msgid "The table name is empty!"
msgstr "Порожня назва таблиці!"
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr "Змінити порядок таблиці"
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr "(окремо)"
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr "Перенести таблицю в (база даних<b>.</b>таблиця):"
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr "Налаштування таблиці"
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr "Перейменувати таблицю в"
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr "Скопіювати таблицю в (база даних<b>.</b>таблиця):"
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr "Перейти до скопійованої таблиці"
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr "Обслговування таблиці"
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr ""
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr "Було очищено кеш таблиці %s"
#: tbl_operations.php:669
#: tbl_operations.php:668
#, fuzzy
#| msgid "Flush the table (\"FLUSH\")"
msgid "Flush the table (FLUSH)"
msgstr "Очистити кеш таблиці (\"FLUSH\")"
#: tbl_operations.php:678
#: tbl_operations.php:677
#, fuzzy
#| msgid "Dumping data for table"
msgid "Delete data or table"
msgstr "Дамп даних таблиці"
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr ""
#: tbl_operations.php:713
#: tbl_operations.php:712
msgid "Delete the table (DROP)"
msgstr "Видалити таюлицю (DROP)"
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr ""
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr ""
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr ""
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr ""
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr ""
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr ""
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr ""
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr ""
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr "Перевір цілісність даних на рівні посилань:"
@ -9555,7 +9571,7 @@ msgid "Version %s snapshot (SQL code)"
msgstr ""
#: tbl_tracking.php:382
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr ""
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -9565,7 +9581,7 @@ msgid "Query error"
msgstr "Тип запиту"
#: tbl_tracking.php:399
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr ""
#: tbl_tracking.php:411

337
po/ur.po
View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\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"
@ -72,8 +72,8 @@ msgstr "تلاش"
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -128,7 +128,7 @@ msgid "Database comment: "
msgstr "کوائفیہ تبصرہ:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr "جدول تبصرے"
@ -299,15 +299,15 @@ msgstr "کوائفیہ چھوڑیں (DROP)"
msgid "Copy database to"
msgstr "کوائفیہ نقل کریں بطرف"
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "صرف ساخت"
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "ساخت اور کوائف"
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "کوائف صرف"
@ -317,17 +317,17 @@ msgstr "CREATE DATABASE نقل سے قبل"
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "اضافہ کریں %s"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT قدر اضافہ کریں"
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "پابندیاں لگائیں"
@ -339,7 +339,7 @@ msgstr "نقل شدہ کوائفیہ پر جائیں"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -433,14 +433,14 @@ msgstr "چھانٹیں"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr "صعودی"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr "نزولی"
@ -594,17 +594,17 @@ msgstr "کالم میں:"
msgid "No tables found in database"
msgstr "کوائیفیہ میں کوئی جدول نہیں ملا"
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "جدول %s خالی ہوچکا ہے"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "جدول نقل %s چھوڑا جاچکا ہے۔"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "جدول %s چھوڑا جاچکا ہے"
@ -647,20 +647,20 @@ msgstr "%sاس MySQL سرور میں طے شدہ ذخیرہ انجن ہے۔"
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "مع منتخب:"
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "تمام پڑتال کریں"
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "تمام غیر پڑتال کریں"
@ -690,25 +690,25 @@ msgstr "خالی"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "چھوڑیں"
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr "جدول پڑتال کریں"
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr "جدول احسن کریں"
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr "جدول مرمت کریں"
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr "جدول تجزیہ کریں"
@ -741,7 +741,7 @@ msgstr "کھوج شدہ جداول"
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -768,7 +768,7 @@ msgid "Status"
msgstr "حالت"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -934,7 +934,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "آپ کی SQL طلب کامیابی سے چلائی جاچکی ہے۔"
@ -1130,6 +1130,18 @@ msgstr "تلاش کسوٹی چھپائیں"
msgid "Show search results"
msgstr "تلاش کسوٹی دکھائیں"
#: js/messages.php:86
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "براؤز"
#: js/messages.php:87
#, fuzzy
#| msgid "Delete"
msgid "Deleting"
msgstr "حذف"
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1147,7 +1159,16 @@ msgstr "طلب خانہ دکھائیں"
msgid "Inline Edit"
msgstr "ان لائن تدوین"
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "تدوین"
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1155,67 +1176,67 @@ msgstr "ان لائن تدوین"
msgid "Save"
msgstr ""
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr ""
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr "تلاش کسوٹی چھپائیں"
#: js/messages.php:101
#: js/messages.php:102
msgid "Show search criteria"
msgstr "تلاش کسوٹی دکھائیں"
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "نظر انداز کریں"
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr "محولہ کلید منتخب کریں"
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr "فارن کلید منتخب کریں"
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr "ایک بنیادی یا منفرد کلید منتخب کریں"
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "کالم دکھانے کے لیے انتخاب کریں"
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr "کالم کے لیے ایک اختیار اضافہ کریں"
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr "پاس ورڈ بنائیں"
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "بنائیں"
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr "پاس ورڈ تبدیل کریں"
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr "مزید"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1225,28 +1246,28 @@ msgstr ""
"s, جاری کیا گیا %s."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
msgid ", latest stable version:"
msgstr ", حالیہ مستحکم نسخہ:"
#: js/messages.php:128
#: js/messages.php:129
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "کوائفیہ جائیں"
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr "ہوچکا"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr "پچھلا"
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1254,231 +1275,231 @@ msgid "Next"
msgstr "اگلا"
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr "آج"
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr "جنوری"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr "فروری"
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr "مارچ"
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr "اپریل"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "مئی"
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr "جون"
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr "جولائی"
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr "اگست"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr "ستمبر"
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr "اکتوبر"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr "نومبر"
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr "دسمبر"
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "جنوری"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "فروری"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "مارچ"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "اپریل"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "مئی"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "جون"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "جولائی"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "اگست"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "ستمبر"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "اکتوبر"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "نومبر"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "دسمبر"
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr "اتوار"
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr "پیر"
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr "منگل"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr "بدھ"
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr "جمعرات"
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr "جمعہ"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr "ہفتہ"
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "اتوار"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "پیر"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "منگل"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "بدھ"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "جمعرات"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "جمعہ"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "ہفتہ"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr "اتوار"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr "پیر"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr "منگل"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr "بدھ"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr "جمعرات"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr "جمعہ"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr "ہفتہ"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr "ہفتہ وار"
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr "گھنٹہ"
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr "منٹ"
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr "سیکنڈ"
@ -1552,14 +1573,6 @@ msgstr "درجہ تعلق داری"
msgid "Comment"
msgstr "تبصرہ"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "تدوین"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr "بنیادی کلید چھوڑ دیا گیا ہے"
@ -1587,7 +1600,7 @@ msgstr "کوائفیے"
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "نقص"
@ -1851,7 +1864,7 @@ msgid "Data"
msgstr "کوائف"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "میزان"
@ -1988,7 +2001,7 @@ msgstr "انگریزی"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr "دستاویزات"
@ -4481,8 +4494,10 @@ msgstr ""
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
msgstr ""
#, fuzzy
#| msgid "Create Table"
msgid "Create database"
msgstr "جدول بنائیں"
#: libraries/display_create_database.lib.php:33
msgid "Create"
@ -4879,7 +4894,7 @@ msgstr "تخلیق کیا گیا"
msgid "Link not found"
msgstr ""
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr ""
@ -6531,7 +6546,7 @@ msgid ""
msgstr ""
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr ""
@ -6736,27 +6751,27 @@ msgstr ""
msgid "Show PHP information"
msgstr ""
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr ""
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr ""
#: main.php:214
#: main.php:217
msgid "Contribute"
msgstr ""
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr ""
#: main.php:216
#: main.php:219
msgid "List of changes"
msgstr ""
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -6764,21 +6779,21 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
"corrupted!"
msgstr ""
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
"split strings correctly and it may result in unexpected results."
msgstr ""
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -6786,24 +6801,24 @@ msgid ""
"sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
msgstr ""
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
"has been configured."
msgstr ""
#: main.php:296
#: main.php:299
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@ -6815,28 +6830,28 @@ msgstr ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
"automatically."
msgstr ""
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr ""
@ -7199,20 +7214,20 @@ msgstr ""
msgid "Databases statistics"
msgstr ""
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr ""
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr ""
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr ""
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -7670,7 +7685,7 @@ msgstr ""
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
msgid "Master server changed successfully to %s"
msgstr ""
#: server_replication.php:180
@ -9180,101 +9195,101 @@ msgstr ""
msgid "The table name is empty!"
msgstr ""
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr ""
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr ""
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr ""
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr ""
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr ""
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr ""
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr ""
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr ""
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr ""
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr ""
#: tbl_operations.php:669
#: tbl_operations.php:668
msgid "Flush the table (FLUSH)"
msgstr ""
#: tbl_operations.php:678
#: tbl_operations.php:677
#, fuzzy
#| msgid "Delete tracking data for this table"
msgid "Delete data or table"
msgstr "اس ٹیبل کیلئے ٹریکنگ ڈیٹا حذف کریں "
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr ""
#: tbl_operations.php:713
#: tbl_operations.php:712
#, fuzzy
#| msgid "Copy database to"
msgid "Delete the table (DROP)"
msgstr "ڈیٹا بیس کاپی کریں"
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr ""
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr ""
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr ""
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr ""
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr ""
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr ""
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr ""
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr ""
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr ""
@ -9487,7 +9502,7 @@ msgid "Version %s snapshot (SQL code)"
msgstr ""
#: tbl_tracking.php:382
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr ""
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -9497,7 +9512,7 @@ msgid "Query error"
msgstr "نقائص اکھٹی کریں"
#: tbl_tracking.php:399
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr ""
#: tbl_tracking.php:411

338
po/uz.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2011-05-15 13:41-0400\n"
"POT-Creation-Date: 2011-05-18 07:46-0400\n"
"PO-Revision-Date: 2011-05-06 03:13+0200\n"
"Last-Translator: shanyan baishui <Siramizu@gmail.com>\n"
"Language-Team: chinese_simplified <zh_CN@li.org>\n"
@ -69,8 +69,8 @@ msgstr "搜索"
#: server_replication.php:233 server_replication.php:316
#: server_replication.php:347 server_synchronize.php:1224 tbl_change.php:331
#: tbl_change.php:1102 tbl_change.php:1139 tbl_indexes.php:252
#: tbl_operations.php:281 tbl_operations.php:318 tbl_operations.php:520
#: tbl_operations.php:582 tbl_operations.php:764 tbl_select.php:290
#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:290
#: tbl_structure.php:656 tbl_structure.php:692 tbl_tracking.php:425
#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
msgid "Go"
@ -122,7 +122,7 @@ msgid "Database comment: "
msgstr "数据库注释:"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:363
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:362
#: tbl_printview.php:127
msgid "Table comments"
msgstr "表注释"
@ -291,15 +291,15 @@ msgstr "删除数据库 (DROP)"
msgid "Copy database to"
msgstr "复制数据库到"
#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:418
#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "仅结构"
#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:420
#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "结构和数据"
#: db_operations.php:496 tbl_operations.php:551 tbl_tracking.php:419
#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "仅数据"
@ -309,17 +309,17 @@ msgstr "复制前创建数据库 (CREATE DATABASE)"
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
#: libraries/config/messages.inc.php:132 tbl_operations.php:557
#: libraries/config/messages.inc.php:132 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "添加 %s"
#: db_operations.php:511 libraries/config/messages.inc.php:117
#: tbl_operations.php:315 tbl_operations.php:559
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "添加自增 (AUTO_INCREMENT) 值"
#: db_operations.php:515 tbl_operations.php:566
#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "强制添加"
@ -331,7 +331,7 @@ msgstr "切换到复制的数据库"
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:116 libraries/tbl_properties.inc.php:106
#: libraries/tbl_properties.inc.php:731 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:379 tbl_select.php:114
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:114
#: tbl_structure.php:200 tbl_structure.php:862 tbl_tracking.php:268
#: tbl_tracking.php:319
msgid "Collation"
@ -421,14 +421,14 @@ msgstr "排序"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:505 libraries/display_tbl.lib.php:814
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:276
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:275
#: tbl_select.php:277
msgid "Ascending"
msgstr "递增"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:811
#: server_databases.php:148 server_databases.php:165 tbl_operations.php:277
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:276
#: tbl_select.php:278
msgid "Descending"
msgstr "递减"
@ -580,17 +580,17 @@ msgstr "包含字段:"
msgid "No tables found in database"
msgstr "没有在数据库中找到表"
#: db_structure.php:277 tbl_operations.php:689
#: db_structure.php:277 tbl_operations.php:688
#, php-format
msgid "Table %s has been emptied"
msgstr "已清空表 %s "
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "View %s has been dropped"
msgstr "已删除视图 %s"
#: db_structure.php:286 tbl_operations.php:706
#: db_structure.php:286 tbl_operations.php:705
#, php-format
msgid "Table %s has been dropped"
msgstr "已删除表 %s "
@ -632,20 +632,20 @@ msgstr "%s 是此 MySQL 服务器的默认存储引擎。"
#: db_structure.php:483 db_structure.php:500 db_structure.php:501
#: libraries/display_tbl.lib.php:2178 libraries/display_tbl.lib.php:2183
#: libraries/mult_submits.inc.php:15 server_databases.php:246
#: server_databases.php:251 server_privileges.php:1666 tbl_structure.php:548
#: libraries/mult_submits.inc.php:15 server_databases.php:256
#: server_databases.php:261 server_privileges.php:1666 tbl_structure.php:548
#: tbl_structure.php:557
msgid "With selected:"
msgstr "选中项:"
#: db_structure.php:486 libraries/display_tbl.lib.php:2173
#: server_databases.php:248 server_privileges.php:583
#: server_databases.php:258 server_privileges.php:583
#: server_privileges.php:1669 tbl_structure.php:551
msgid "Check All"
msgstr "全选"
#: db_structure.php:490 libraries/display_tbl.lib.php:2174
#: libraries/replication_gui.lib.php:35 server_databases.php:250
#: libraries/replication_gui.lib.php:35 server_databases.php:260
#: server_privileges.php:586 server_privileges.php:1673 tbl_structure.php:555
msgid "Uncheck All"
msgstr "全不选"
@ -675,25 +675,25 @@ msgstr "清空"
#: db_structure.php:511 db_tracking.php:104 libraries/Index.class.php:487
#: libraries/common.lib.php:3019 libraries/common.lib.php:3020
#: server_databases.php:252 tbl_structure.php:151 tbl_structure.php:152
#: server_databases.php:262 tbl_structure.php:151 tbl_structure.php:152
#: tbl_structure.php:564
msgid "Drop"
msgstr "删除"
#: db_structure.php:513 tbl_operations.php:605
#: db_structure.php:513 tbl_operations.php:604
msgid "Check table"
msgstr "检查表"
#: db_structure.php:515 tbl_operations.php:654 tbl_structure.php:804
#: db_structure.php:515 tbl_operations.php:653 tbl_structure.php:804
#: tbl_structure.php:806
msgid "Optimize table"
msgstr "优化表"
#: db_structure.php:517 tbl_operations.php:641
#: db_structure.php:517 tbl_operations.php:640
msgid "Repair table"
msgstr "修复表"
#: db_structure.php:519 tbl_operations.php:628
#: db_structure.php:519 tbl_operations.php:627
msgid "Analyze table"
msgstr "分析表"
@ -728,7 +728,7 @@ msgstr "已追踪的表"
#: libraries/export/odt.php:120 libraries/export/pdf.php:100
#: libraries/export/sql.php:453 libraries/export/texytext.php:77
#: libraries/export/xml.php:258 libraries/header.inc.php:125
#: libraries/header_printview.inc.php:57 server_databases.php:147
#: libraries/header_printview.inc.php:57 server_databases.php:157
#: server_privileges.php:1740 server_privileges.php:1801
#: server_privileges.php:2059 server_processlist.php:68
#: server_synchronize.php:1194 server_synchronize.php:1198
@ -755,7 +755,7 @@ msgid "Status"
msgstr "状态"
#: db_tracking.php:90 libraries/Index.class.php:439
#: libraries/db_structure.lib.php:44 server_databases.php:181
#: libraries/db_structure.lib.php:44 server_databases.php:191
#: server_privileges.php:1612 server_privileges.php:1805
#: server_privileges.php:2154 tbl_structure.php:208
msgid "Action"
@ -913,7 +913,7 @@ msgstr ""
#: import.php:453 libraries/Message.class.php:185
#: libraries/display_tbl.lib.php:2074 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:229 tbl_relation.php:289 tbl_row_action.php:126
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "您的 SQL 语句已成功运行"
@ -1108,6 +1108,18 @@ msgstr "隐藏搜索条件"
msgid "Show search results"
msgstr "显示搜索条件"
#: js/messages.php:86
#, fuzzy
#| msgid "Browse"
msgid "Browsing"
msgstr "浏览"
#: js/messages.php:87
#, fuzzy
#| msgid "Deleting %s"
msgid "Deleting"
msgstr "正在删除 %s"
#: js/messages.php:90
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
@ -1125,7 +1137,16 @@ msgstr "显示查询框"
msgid "Inline Edit"
msgstr "快速编辑"
#: js/messages.php:96 libraries/config/FormDisplay.tpl.php:332
#: js/messages.php:96 libraries/Index.class.php:465
#: libraries/common.lib.php:626 libraries/common.lib.php:1164
#: libraries/common.lib.php:3023 libraries/config/messages.inc.php:461
#: libraries/display_tbl.lib.php:1187 libraries/import.lib.php:1150
#: libraries/import.lib.php:1174 libraries/schema/User_Schema.class.php:168
#: setup/frames/index.inc.php:137
msgid "Edit"
msgstr "编辑"
#: js/messages.php:97 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:317
#: libraries/tbl_properties.inc.php:777 setup/frames/config.inc.php:39
#: setup/frames/index.inc.php:227 tbl_change.php:1054 tbl_indexes.php:246
@ -1133,67 +1154,67 @@ msgstr "快速编辑"
msgid "Save"
msgstr "保存"
#: js/messages.php:97 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: js/messages.php:98 libraries/display_tbl.lib.php:593 pmd_general.php:158
#: tbl_change.php:315 tbl_change.php:321
msgid "Hide"
msgstr "隐藏"
#: js/messages.php:100
#: js/messages.php:101
msgid "Hide search criteria"
msgstr "隐藏搜索条件"
#: js/messages.php:101
#: js/messages.php:102
msgid "Show search criteria"
msgstr "显示搜索条件"
#: js/messages.php:104 tbl_change.php:303 tbl_indexes.php:198
#: js/messages.php:105 tbl_change.php:303 tbl_indexes.php:198
#: tbl_indexes.php:223
msgid "Ignore"
msgstr "忽略"
#: js/messages.php:107
#: js/messages.php:108
msgid "Select referenced key"
msgstr "选择外键"
#: js/messages.php:108
#: js/messages.php:109
msgid "Select Foreign Key"
msgstr "选择外键"
#: js/messages.php:109
#: js/messages.php:110
msgid "Please select the primary key or a unique key"
msgstr "请选择主键或唯一键"
#: js/messages.php:110 pmd_general.php:87 tbl_relation.php:545
#: js/messages.php:111 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
msgstr "选择要显示的字段"
#: js/messages.php:111
#: js/messages.php:112
msgid ""
"You haven't saved the changes in the layout. They will be lost if you don't "
"save them.Do you want to continue?"
msgstr ""
#: js/messages.php:114
#: js/messages.php:115
msgid "Add an option for column "
msgstr "给字段添加选项 "
#: js/messages.php:117
#: js/messages.php:118
msgid "Generate password"
msgstr "生成密码"
#: js/messages.php:118 libraries/replication_gui.lib.php:365
#: js/messages.php:119 libraries/replication_gui.lib.php:365
msgid "Generate"
msgstr "生成"
#: js/messages.php:119
#: js/messages.php:120
msgid "Change Password"
msgstr "修改密码"
#: js/messages.php:122 tbl_structure.php:471
#: js/messages.php:123 tbl_structure.php:471
msgid "More"
msgstr "更多"
#: js/messages.php:125 setup/lib/index.lib.php:158
#: js/messages.php:126 setup/lib/index.lib.php:158
#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
@ -1201,28 +1222,28 @@ msgid ""
msgstr "有新的 phpMyAdmin 可用,请考虑升级。最新的版本是 %s于 %s 发布。"
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:127
#: js/messages.php:128
msgid ", latest stable version:"
msgstr ",最新稳定版本: "
#: js/messages.php:128
#: js/messages.php:129
#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
msgstr "转到数据库"
#. l10n: Display text for calendar close link
#: js/messages.php:146
#: js/messages.php:147
msgid "Done"
msgstr "完成"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:148
#: js/messages.php:149
msgid "Prev"
msgstr "上个月"
#. l10n: Display text for next month link in calendar
#: js/messages.php:150 libraries/common.lib.php:2371
#: js/messages.php:151 libraries/common.lib.php:2371
#: libraries/common.lib.php:2374 libraries/display_tbl.lib.php:353
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:896
@ -1230,231 +1251,231 @@ msgid "Next"
msgstr "下个月"
#. l10n: Display text for current month link in calendar
#: js/messages.php:152
#: js/messages.php:153
msgid "Today"
msgstr "今天"
#: js/messages.php:155
#: js/messages.php:156
msgid "January"
msgstr "一月"
#: js/messages.php:156
#: js/messages.php:157
msgid "February"
msgstr "二月"
#: js/messages.php:157
#: js/messages.php:158
msgid "March"
msgstr "三月"
#: js/messages.php:158
#: js/messages.php:159
msgid "April"
msgstr "四月"
#: js/messages.php:159
#: js/messages.php:160
msgid "May"
msgstr "五月"
#: js/messages.php:160
#: js/messages.php:161
msgid "June"
msgstr "六月"
#: js/messages.php:161
#: js/messages.php:162
msgid "July"
msgstr "七月"
#: js/messages.php:162
#: js/messages.php:163
msgid "August"
msgstr "八月"
#: js/messages.php:163
#: js/messages.php:164
msgid "September"
msgstr "九月"
#: js/messages.php:164
#: js/messages.php:165
msgid "October"
msgstr "十月"
#: js/messages.php:165
#: js/messages.php:166
msgid "November"
msgstr "十一月"
#: js/messages.php:166
#: js/messages.php:167
msgid "December"
msgstr "十二月"
#. l10n: Short month name
#: js/messages.php:170 libraries/common.lib.php:1569
#: js/messages.php:171 libraries/common.lib.php:1569
msgid "Jan"
msgstr "一月"
#. l10n: Short month name
#: js/messages.php:172 libraries/common.lib.php:1571
#: js/messages.php:173 libraries/common.lib.php:1571
msgid "Feb"
msgstr "二月"
#. l10n: Short month name
#: js/messages.php:174 libraries/common.lib.php:1573
#: js/messages.php:175 libraries/common.lib.php:1573
msgid "Mar"
msgstr "三月"
#. l10n: Short month name
#: js/messages.php:176 libraries/common.lib.php:1575
#: js/messages.php:177 libraries/common.lib.php:1575
msgid "Apr"
msgstr "四月"
#. l10n: Short month name
#: js/messages.php:178 libraries/common.lib.php:1577
#: js/messages.php:179 libraries/common.lib.php:1577
msgctxt "Short month name"
msgid "May"
msgstr "五月"
#. l10n: Short month name
#: js/messages.php:180 libraries/common.lib.php:1579
#: js/messages.php:181 libraries/common.lib.php:1579
msgid "Jun"
msgstr "六月"
#. l10n: Short month name
#: js/messages.php:182 libraries/common.lib.php:1581
#: js/messages.php:183 libraries/common.lib.php:1581
msgid "Jul"
msgstr "七月"
#. l10n: Short month name
#: js/messages.php:184 libraries/common.lib.php:1583
#: js/messages.php:185 libraries/common.lib.php:1583
msgid "Aug"
msgstr "八月"
#. l10n: Short month name
#: js/messages.php:186 libraries/common.lib.php:1585
#: js/messages.php:187 libraries/common.lib.php:1585
msgid "Sep"
msgstr "九月"
#. l10n: Short month name
#: js/messages.php:188 libraries/common.lib.php:1587
#: js/messages.php:189 libraries/common.lib.php:1587
msgid "Oct"
msgstr "十月"
#. l10n: Short month name
#: js/messages.php:190 libraries/common.lib.php:1589
#: js/messages.php:191 libraries/common.lib.php:1589
msgid "Nov"
msgstr "十一月"
#. l10n: Short month name
#: js/messages.php:192 libraries/common.lib.php:1591
#: js/messages.php:193 libraries/common.lib.php:1591
msgid "Dec"
msgstr "十二月"
#: js/messages.php:195
#: js/messages.php:196
msgid "Sunday"
msgstr "星期日"
#: js/messages.php:196
#: js/messages.php:197
msgid "Monday"
msgstr "星期一"
#: js/messages.php:197
#: js/messages.php:198
msgid "Tuesday"
msgstr "星期二"
#: js/messages.php:198
#: js/messages.php:199
msgid "Wednesday"
msgstr "星期三"
#: js/messages.php:199
#: js/messages.php:200
msgid "Thursday"
msgstr "星期四"
#: js/messages.php:200
#: js/messages.php:201
msgid "Friday"
msgstr "星期五"
#: js/messages.php:201
#: js/messages.php:202
msgid "Saturday"
msgstr "星期六"
#. l10n: Short week day name
#: js/messages.php:205 libraries/common.lib.php:1594
#: js/messages.php:206 libraries/common.lib.php:1594
msgid "Sun"
msgstr "周日"
#. l10n: Short week day name
#: js/messages.php:207 libraries/common.lib.php:1596
#: js/messages.php:208 libraries/common.lib.php:1596
msgid "Mon"
msgstr "周一"
#. l10n: Short week day name
#: js/messages.php:209 libraries/common.lib.php:1598
#: js/messages.php:210 libraries/common.lib.php:1598
msgid "Tue"
msgstr "周二"
#. l10n: Short week day name
#: js/messages.php:211 libraries/common.lib.php:1600
#: js/messages.php:212 libraries/common.lib.php:1600
msgid "Wed"
msgstr "周三"
#. l10n: Short week day name
#: js/messages.php:213 libraries/common.lib.php:1602
#: js/messages.php:214 libraries/common.lib.php:1602
msgid "Thu"
msgstr "周四"
#. l10n: Short week day name
#: js/messages.php:215 libraries/common.lib.php:1604
#: js/messages.php:216 libraries/common.lib.php:1604
msgid "Fri"
msgstr "周五"
#. l10n: Short week day name
#: js/messages.php:217 libraries/common.lib.php:1606
#: js/messages.php:218 libraries/common.lib.php:1606
msgid "Sat"
msgstr "周六"
#. l10n: Minimal week day name
#: js/messages.php:221
#: js/messages.php:222
msgid "Su"
msgstr "日"
#. l10n: Minimal week day name
#: js/messages.php:223
#: js/messages.php:224
msgid "Mo"
msgstr "一"
#. l10n: Minimal week day name
#: js/messages.php:225
#: js/messages.php:226
msgid "Tu"
msgstr "二"
#. l10n: Minimal week day name
#: js/messages.php:227
#: js/messages.php:228
msgid "We"
msgstr "三"
#. l10n: Minimal week day name
#: js/messages.php:229
#: js/messages.php:230
msgid "Th"
msgstr "四"
#. l10n: Minimal week day name
#: js/messages.php:231
#: js/messages.php:232
msgid "Fr"
msgstr "五"
#. l10n: Minimal week day name
#: js/messages.php:233
#: js/messages.php:234
msgid "Sa"
msgstr "六"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:235
#: js/messages.php:236
msgid "Wk"
msgstr "周"
#: js/messages.php:237
#: js/messages.php:238
msgid "Hour"
msgstr "时"
#: js/messages.php:238
#: js/messages.php:239
msgid "Minute"
msgstr "分"
#: js/messages.php:239
#: js/messages.php:240
msgid "Second"
msgstr "秒"
@ -1527,14 +1548,6 @@ msgstr "基数"
msgid "Comment"
msgstr "注释"
#: libraries/Index.class.php:465 libraries/common.lib.php:626
#: libraries/common.lib.php:1164 libraries/common.lib.php:3023
#: libraries/config/messages.inc.php:461 libraries/display_tbl.lib.php:1187
#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:168 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "编辑"
#: libraries/Index.class.php:471
msgid "The primary key has been dropped"
msgstr "已删除主键"
@ -1560,7 +1573,7 @@ msgstr "数据库"
#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:593
#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:961
#: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60
#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
msgid "Error"
msgstr "错误"
@ -1819,7 +1832,7 @@ msgid "Data"
msgstr "数据"
#: libraries/build_html_for_db.lib.php:45 libraries/engines/innodb.lib.php:168
#: server_databases.php:205 server_status.php:540 server_status.php:601
#: server_databases.php:215 server_status.php:540 server_status.php:601
#: server_status.php:624 tbl_printview.php:348 tbl_structure.php:791
msgid "Total"
msgstr "总计"
@ -1954,7 +1967,7 @@ msgstr "en"
#: libraries/display_export.lib.php:239 libraries/engines/pbms.lib.php:71
#: libraries/engines/pbxt.lib.php:106 libraries/relation.lib.php:85
#: libraries/sql_query_form.lib.php:429 libraries/sql_query_form.lib.php:432
#: main.php:209 server_variables.php:63
#: main.php:212 server_variables.php:63
msgid "Documentation"
msgstr "文档"
@ -4430,7 +4443,9 @@ msgstr "MySQL 4.0 兼容"
#: libraries/display_create_database.lib.php:21
#: libraries/display_create_database.lib.php:39
msgid "Create new database"
#, fuzzy
#| msgid "Create new database"
msgid "Create database"
msgstr "新建数据库"
#: libraries/display_create_database.lib.php:33
@ -4818,7 +4833,7 @@ msgstr "新建视图"
msgid "Link not found"
msgstr "找不到链接"
#: libraries/engines/bdb.lib.php:20 main.php:208
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
msgstr "版本信息"
@ -6508,7 +6523,7 @@ msgid ""
msgstr "此转换没有说明。<br />详细功能请询问 %s 的作者。"
#: libraries/tbl_properties.inc.php:727 server_engines.php:56
#: tbl_operations.php:371
#: tbl_operations.php:370
msgid "Storage Engine"
msgstr "存储引擎"
@ -6726,27 +6741,27 @@ msgstr "PHP 扩展"
msgid "Show PHP information"
msgstr "显示 PHP 信息"
#: main.php:210
#: main.php:213
msgid "Wiki"
msgstr "维基 (Wiki) (外链,英文)"
#: main.php:213
#: main.php:216
msgid "Official Homepage"
msgstr "官方主页 (外链,英文)"
#: main.php:214
#: main.php:217
msgid "Contribute"
msgstr "贡献"
#: main.php:215
#: main.php:218
msgid "Get support"
msgstr "获取支持"
#: main.php:216
#: main.php:219
msgid "List of changes"
msgstr "更新列表"
#: main.php:240
#: main.php:243
msgid ""
"Your configuration file contains settings (root with no password) that "
"correspond to the default MySQL privileged account. Your MySQL server is "
@ -6757,7 +6772,7 @@ msgstr ""
"务器使用默认值运行当然没有问题,不过这样的话,被入侵的可能性会很大,我们强烈"
"建议您应该立即给 'root' 用户设置一个密码来补上这个安全漏洞。"
#: main.php:248
#: main.php:251
msgid ""
"You have enabled mbstring.func_overload in your PHP configuration. This "
"option is incompatible with phpMyAdmin and might cause some data to be "
@ -6766,7 +6781,7 @@ msgstr ""
"PHP 配置中已启用了 mbstring.func_overload 。这个选项和 phpMyAdmin 不兼容,可"
"能会导致一些数据损坏!"
#: main.php:256
#: main.php:259
msgid ""
"The mbstring PHP extension was not found and you seem to be using a "
"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
@ -6775,7 +6790,7 @@ msgstr ""
"没有找到 PHP 扩展 mbstring而您现在好像在使用多字节字符集。没有 mbstring 扩"
"展的 phpMyAdmin 不能正确分割字符串,可能产生意想不到的结果。"
#: main.php:264
#: main.php:267
msgid ""
"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
@ -6787,7 +6802,7 @@ msgstr ""
"phpMyAdmin 中设置的 Cookies 有效期,因此您的登录会话有效期将会比您在 "
"phpMyAdmin 中设置的时间要更短。"
#: main.php:271
#: main.php:274
msgid ""
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
"because of this, your login will expire sooner than configured in phpMyAdmin."
@ -6795,11 +6810,11 @@ msgstr ""
"phpMyAdmin 中所设置的登录 cookie 存储小于 cookie 有效期,因此您的登录过期时间"
"将会比您在 phpMyAdmin 中设置的时间要更短。"
#: main.php:279
#: main.php:282
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "配置文件现在需要一个短语密码。"
#: main.php:287
#: main.php:290
msgid ""
"Directory [code]config[/code], which is used by the setup script, still "
"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
@ -6808,7 +6823,7 @@ msgstr ""
"安装时所用的 [code]config[/code] 文件夹尚未删除,如果 phpMyAdmin 已经安装配置"
"好,请立即删除该文件夹。"
#: main.php:296
#: main.php:299
#, php-format
msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
@ -6816,7 +6831,7 @@ msgid ""
msgstr ""
"phpMyAdmin 高级功能未全部设置,部分功能不可用。要查出原因请%s点这里%s。"
#: main.php:311
#: main.php:314
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@ -6825,7 +6840,7 @@ msgstr ""
"你的浏览器不支持或禁用了 Javascript部分 phpMyAdmin 功能将不可用。如导航框架"
"将不能自动刷新。"
#: main.php:326
#: main.php:329
#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
@ -6834,14 +6849,14 @@ msgstr ""
"你的 PHP MySQL 库版本 %s 和你的 MySQL 服务器版本 %s 不同。这可能造成一些未知"
"的问题。"
#: main.php:338
#: main.php:341
#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr "服务器上运行了 Suhosin。请先查看%s文档%s中是否有类似的情况。"
#: navigation.php:187 server_databases.php:267 server_synchronize.php:1206
#: navigation.php:187 server_databases.php:277 server_synchronize.php:1206
msgid "No databases"
msgstr "无数据库"
@ -7187,20 +7202,20 @@ msgstr "已成功删除 %s 个数据库。"
msgid "Databases statistics"
msgstr "数据库统计"
#: server_databases.php:173 server_replication.php:179
#: server_databases.php:183 server_replication.php:179
#: server_replication.php:207
msgid "Master replication"
msgstr "主复制"
#: server_databases.php:175 server_replication.php:246
#: server_databases.php:185 server_replication.php:246
msgid "Slave replication"
msgstr "从复制"
#: server_databases.php:258 server_databases.php:259
#: server_databases.php:268 server_databases.php:269
msgid "Enable Statistics"
msgstr "启用统计"
#: server_databases.php:261
#: server_databases.php:271
msgid ""
"Note: Enabling the database statistics here might cause heavy traffic "
"between the web server and the MySQL server."
@ -7663,8 +7678,9 @@ msgid "Unable to change master"
msgstr "无法修改主服务器"
#: server_replication.php:72
#, php-format
msgid "Master server changed succesfully to %s"
#, fuzzy, php-format
#| msgid "Master server changed succesfully to %s"
msgid "Master server changed successfully to %s"
msgstr "成功修改主服务器为 %s"
#: server_replication.php:180
@ -9264,97 +9280,97 @@ msgstr "已将数据表 %s 复制为 %s。"
msgid "The table name is empty!"
msgstr "表名不能为空!"
#: tbl_operations.php:265
#: tbl_operations.php:264
msgid "Alter table order by"
msgstr "更改表的排序,根据"
#: tbl_operations.php:274
#: tbl_operations.php:273
msgid "(singly)"
msgstr "(逐一)"
#: tbl_operations.php:294
#: tbl_operations.php:293
msgid "Move table to (database<b>.</b>table):"
msgstr "将数据表移动到(数据库名<b>.</b>数据表名)"
#: tbl_operations.php:352
#: tbl_operations.php:351
msgid "Table options"
msgstr "表选项"
#: tbl_operations.php:356
#: tbl_operations.php:355
msgid "Rename table to"
msgstr "将表改名为"
#: tbl_operations.php:532
#: tbl_operations.php:531
msgid "Copy table to (database<b>.</b>table):"
msgstr "将数据表复制到(数据库名<b>.</b>数据表名)"
#: tbl_operations.php:579
#: tbl_operations.php:578
msgid "Switch to copied table"
msgstr "切换到复制的数据表"
#: tbl_operations.php:591
#: tbl_operations.php:590
msgid "Table maintenance"
msgstr "表维护"
#: tbl_operations.php:615
#: tbl_operations.php:614
msgid "Defragment table"
msgstr "整理表碎片"
#: tbl_operations.php:663
#: tbl_operations.php:662
#, php-format
msgid "Table %s has been flushed"
msgstr "已强制更新表 %s "
#: tbl_operations.php:669
#: tbl_operations.php:668
msgid "Flush the table (FLUSH)"
msgstr "刷新表 (FLUSH)"
#: tbl_operations.php:678
#: tbl_operations.php:677
msgid "Delete data or table"
msgstr "删除数据或数据表"
#: tbl_operations.php:693
#: tbl_operations.php:692
msgid "Empty the table (TRUNCATE)"
msgstr "清空数据表 (TRUNCATE)"
#: tbl_operations.php:713
#: tbl_operations.php:712
msgid "Delete the table (DROP)"
msgstr "删除数据表 (DROP)"
#: tbl_operations.php:734
#: tbl_operations.php:733
msgid "Partition maintenance"
msgstr "分区维护"
#: tbl_operations.php:742
#: tbl_operations.php:741
#, php-format
msgid "Partition %s"
msgstr "分区 %s"
#: tbl_operations.php:745
#: tbl_operations.php:744
msgid "Analyze"
msgstr "分析"
#: tbl_operations.php:746
#: tbl_operations.php:745
msgid "Check"
msgstr "检查"
#: tbl_operations.php:747
#: tbl_operations.php:746
msgid "Optimize"
msgstr "优化"
#: tbl_operations.php:748
#: tbl_operations.php:747
msgid "Rebuild"
msgstr "重建"
#: tbl_operations.php:749
#: tbl_operations.php:748
msgid "Repair"
msgstr "修复"
#: tbl_operations.php:761
#: tbl_operations.php:760
msgid "Remove partitioning"
msgstr "删除分区"
#: tbl_operations.php:787
#: tbl_operations.php:786
msgid "Check referential integrity:"
msgstr "检查引用完整性:"
@ -9566,7 +9582,7 @@ msgstr "版本 %s 的快照 (SQL 代码)"
#: tbl_tracking.php:382
#, fuzzy
#| msgid "Track these data definition statements:"
msgid "Tracking data definition succesfully deleted"
msgid "Tracking data definition successfully deleted"
msgstr "追踪下列数据定义语句:"
#: tbl_tracking.php:384 tbl_tracking.php:401
@ -9578,7 +9594,7 @@ msgstr "收集错误"
#: tbl_tracking.php:399
#, fuzzy
#| msgid "Track these data manipulation statements:"
msgid "Tracking data manipulation succesfully deleted"
msgid "Tracking data manipulation successfully deleted"
msgstr "追踪下列数据操作语句:"
#: tbl_tracking.php:411

File diff suppressed because it is too large Load Diff

View File

@ -105,6 +105,18 @@ CREATE TABLE IF NOT EXISTS `pma_pdf_pages` (
-- --------------------------------------------------------
--
-- Table structure for table `pma_recent`
--
CREATE TABLE IF NOT EXISTS `pma_recent` (
`username` varchar(64) COLLATE utf8_bin NOT NULL,
`tables` blob NOT NULL,
PRIMARY KEY (`username`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
-- --------------------------------------------------------
--
-- Table structure for table `pma_relation`
--

Some files were not shown because too many files have changed in this diff Show More