Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2013-07-29 22:54:53 +02:00
commit 459d2f8502
81 changed files with 3736 additions and 3588 deletions

View File

@ -46,6 +46,8 @@ phpMyAdmin - ChangeLog
- bug #4009 Statistic Monitor shows only last 3 digits in graph
- bug #3998 Non-permanent SQL history not working
- bug #3578 Transformations for text/plain on a BLOB column
- [security] Improved protection against cross framing, see PMASA-2013-10
+ Reinstated configuration directive: AllowThirdPartyFraming
4.0.4.2 (2013-07-28)
- [security] Fix stored XSS in Server status monitor, see PMASA-2013-9

View File

@ -22,7 +22,7 @@ require 'libraries/db_common.inc.php';
require 'libraries/db_info.inc.php';
$import_type = 'database';
require 'libraries/display_import.lib.php';
require 'libraries/display_import.inc.php';
?>

View File

@ -4,7 +4,7 @@
/**
* functions for displaying server, database and table export
*
* @usedby server_export.php and display_export.inc.php
* @usedby display_export.inc.php
*
* @package PhpMyAdmin
*/

View File

@ -0,0 +1,54 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* include file for display import : server, database, table
*
* @package PhpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/**
*
*/
require_once './libraries/file_listing.lib.php';
require_once './libraries/plugin_interface.lib.php';
require_once './libraries/display_import.lib.php';
require_once './libraries/display_import_ajax.lib.php';
/* Scan for plugins */
$import_list = PMA_getPlugins(
"import",
'libraries/plugins/import/',
$import_type
);
/* Fail if we didn't find any plugin */
if (empty($import_list)) {
PMA_Message::error(
__(
'Could not load import plugins, please check your installation!'
)
)->display();
exit;
}
$timeout_passed_str = isset($timeout_passed)? $timeout_passed : null;
$offset_str = isset($offset)? $offset : null;
$html = PMA_getHtmlForImport(
$upload_id,
$import_type,
$db,
$table,
$max_upload_size,
$import_list,
$timeout_passed_str,
$offset_str
);
$response = PMA_Response::getInstance();
$response->addHTML($html);
?>

View File

@ -1,338 +1,583 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* functions for displaying import for: server, database and table
*
* @usedby display_import.inc.php
*
* @package PhpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Prints Html For Display Import Hidden Input
*
* @param String $import_type Import type: server, database, table
* @param String $db Selected DB
* @param String $table Selected Table
*
* @return string
*/
require_once './libraries/file_listing.lib.php';
require_once './libraries/plugin_interface.lib.php';
require_once './libraries/display_import_ajax.lib.php';
/* Scan for plugins */
$import_list = PMA_getPlugins(
"import",
'libraries/plugins/import/',
$import_type
);
/* Fail if we didn't find any plugin */
if (empty($import_list)) {
PMA_Message::error(
__(
'Could not load import plugins, please check your installation!'
)
)->display();
exit;
}
?>
<iframe id="import_upload_iframe" name="import_upload_iframe" width="1" height="1" style="display: none;"></iframe>
<div id="import_form_status" style="display: none;"></div>
<div id="importmain">
<img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" width="16" height="16" alt="ajax clock" style="display: none;" />
<script type="text/javascript">
//<![CDATA[
$( function() {
// add event when user click on "Go" button
$('#buttonGo').bind('click', function() {
$('#upload_form_form').css("display", "none"); // hide form
$('#upload_form_status').css("display", "inline"); // show progress bar
$('#upload_form_status_info').css("display", "inline"); // - || -
<?php
if ($_SESSION[$SESSION_KEY]["handler"] != "UploadNoplugin") {
?>
var finished = false;
var percent = 0.0;
var total = 0;
var complete = 0;
var original_title = parent && parent.document ? parent.document.title : false;
var import_start;
var perform_upload = function () {
new $.getJSON(
'import_status.php?id=<?php echo $upload_id ; ?>&<?php echo PMA_generate_common_url(array('import_status'=>1), '&'); ?>',
{},
function(response) {
finished = response.finished;
percent = response.percent;
total = response.total;
complete = response.complete;
if (total==0 && complete==0 && percent==0) {
$('#upload_form_status_info').html('<img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" width="16" height="16" alt="ajax clock" /> <?php echo PMA_jsFormat(__('The file being uploaded is probably larger than the maximum allowed size or this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) browsers.'), false); ?>');
$('#upload_form_status').css("display", "none");
} else {
var now = new Date();
now = Date.UTC(
now.getFullYear(), now.getMonth(), now.getDate(),
now.getHours(), now.getMinutes(), now.getSeconds())
+ now.getMilliseconds() - 1000;
var statustext = $.sprintf('<?php echo PMA_escapeJsString(__('%s of %s')); ?>',
formatBytes(complete, 1, PMA_messages.strDecimalSeparator),
formatBytes(total, 1, PMA_messages.strDecimalSeparator)
);
if ($('#importmain').is(':visible')) {
// show progress UI
$('#importmain').hide();
$('#import_form_status')
.html('<div class="upload_progress"><div class="upload_progress_bar_outer"><div class="percentage"></div><div id="status" class="upload_progress_bar_inner"><div class="percentage"></div></div></div><div><img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" width="16" height="16" alt="ajax clock" /> <?php echo PMA_jsFormat(__('Uploading your import file…'), false); ?></div><div id="statustext"></div></div>')
.show();
import_start = now;
}
else if (percent > 9 || complete > 2000000) {
// calculate estimated time
var used_time = now - import_start;
var seconds = parseInt(((total - complete) / complete) * used_time / 1000);
var speed = $.sprintf('<?php echo PMA_jsFormat(__('%s/sec.'), false); ?>'
, formatBytes(complete / used_time * 1000, 1, PMA_messages.strDecimalSeparator));
var minutes = parseInt(seconds / 60);
seconds %= 60;
var estimated_time;
if (minutes > 0) {
estimated_time = '<?php echo PMA_jsFormat(__('About %MIN min. %SEC sec. remaining.'), false); ?>'
.replace('%MIN', minutes).replace('%SEC', seconds);
}
else {
estimated_time = '<?php echo PMA_jsFormat(__('About %SEC sec. remaining.'), false); ?>'
.replace('%SEC', seconds);
}
statustext += '<br />' + speed + '<br /><br />' + estimated_time;
}
var percent_str = Math.round(percent) + '%';
$('#status').animate({width: percent_str}, 150);
$('.percentage').text(percent_str);
// show percent in window title
if (original_title !== false) {
parent.document.title = percent_str + ' - ' + original_title;
}
else {
document.title = percent_str + ' - ' + original_title;
}
$('#statustext').html(statustext);
} // else
if (finished == true) {
if (original_title !== false) {
parent.document.title = original_title;
}
else {
document.title = original_title;
}
$('#importmain').hide();
$('#import_form_status')
.html('<img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" width="16" height="16" alt="ajax clock" /> <?php echo PMA_jsFormat(__('The file is being processed, please be patient.'), false); ?> ')
.show();
$('#import_form_status').load('import_status.php?message=true&<?php echo PMA_generate_common_url(array('import_status'=>1), '&'); ?>'); // loads the message, either success or mysql error
<?php
// reload the left sidebar when the import is finished
$GLOBALS['reload'] = true;
?>
} // if finished
else {
setTimeout(perform_upload, 1000);
}
});
};
setTimeout(perform_upload, 1000);
<?php
} else { // no plugin available
?>
$('#upload_form_status_info').html('<img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" width="16" height="16" alt="ajax clock" /> <?php echo PMA_jsFormat(__('Please be patient, the file is being uploaded. Details about the upload are not available.'), false) . PMA_Util::showDocu('faq', 'faq2-9'); ?>');
$('#upload_form_status').css("display", "none");
<?php
} // else
?>
}); // onclick
}); // domready
//]]>
</script>
<form action="import.php" method="post" enctype="multipart/form-data"
name="import"<?php
if ($_SESSION[$SESSION_KEY]["handler"] != "UploadNoplugin") {
echo ' target="import_upload_iframe"';
}
echo ' class="ajax"';
?>>
<input type="hidden" name="<?php
echo $_SESSION[$SESSION_KEY]['handler']::getIdKey();
?>" value="<?php echo $upload_id ; ?>" />
<?php
if ($import_type == 'server') {
echo PMA_generate_common_hidden_inputs('', '', 1);
} elseif ($import_type == 'database') {
echo PMA_generate_common_hidden_inputs($db, '', 1);
} else {
echo PMA_generate_common_hidden_inputs($db, $table, 1);
}
echo ' <input type="hidden" name="import_type" value="' . $import_type . '" />'."\n";
?>
<div class="exportoptions" id="header">
<h2>
<?php echo PMA_Util::getImage('b_import.png', __('Import')); ?>
<?php
if ($import_type == 'server') {
echo __('Importing into the current server');
} elseif ($import_type == 'database') {
printf(__('Importing into the database "%s"'), htmlspecialchars($db));
} else {
printf(__('Importing into the table "%s"'), htmlspecialchars($table));
}?>
</h2>
</div>
<div class="importoptions">
<h3><?php echo __('File to Import:'); ?></h3>
<?php
// zip, gzip and bzip2 encode features
$compressions = array();
if ($cfg['GZipDump'] && @function_exists('gzopen')) {
$compressions[] = 'gzip';
}
if ($cfg['BZipDump'] && @function_exists('bzopen')) {
$compressions[] = 'bzip2';
}
if ($cfg['ZipDump'] && @function_exists('zip_open')) {
$compressions[] = 'zip';
}
// We don't have show anything about compression, when no supported
if ($compressions != array()) {
echo '<div class="formelementrow" id="compression_info">';
printf(__('File may be compressed (%s) or uncompressed.'), implode(", ", $compressions));
echo '<br />';
echo __('A compressed file\'s name must end in <b>.[format].[compression]</b>. Example: <b>.sql.zip</b>');
echo '</div>';
}?>
<div class="formelementrow" id="upload_form">
<?php
if ($GLOBALS['is_upload'] && !empty($cfg['UploadDir'])) { ?>
<ul>
<li>
<input type="radio" name="file_location" id="radio_import_file" />
<?php
echo PMA_Util::getBrowseUploadFileBlock($max_upload_size);
?>
</li>
<li>
<input type="radio" name="file_location" id="radio_local_import_file" />
<?php
echo PMA_Util::getSelectUploadFileBlock($import_list, $cfg['UploadDir']);
?>
</li>
</ul>
<?php
} elseif ($GLOBALS['is_upload']) {
$uid = uniqid('');
echo PMA_Util::getBrowseUploadFileBlock($max_upload_size);
} elseif (!$GLOBALS['is_upload']) {
PMA_Message::notice(__('File uploads are not allowed on this server.'))->display();
} elseif (!empty($cfg['UploadDir'])) {
echo PMA_Util::getSelectUploadFileBlock($import_list, $cfg['UploadDir']);
} // end if (web-server upload directory)
?>
</div>
<div class="formelementrow" id="charaset_of_file">
<?php // charset of file
if ($GLOBALS['PMA_recoding_engine'] != PMA_CHARSET_NONE) {
echo '<label for="charset_of_file">' . __('Character set of the file:') . '</label>';
reset($cfg['AvailableCharsets']);
echo '<select id="charset_of_file" name="charset_of_file" size="1">';
foreach ($cfg['AvailableCharsets'] as $temp_charset) {
echo '<option value="' . htmlentities($temp_charset) . '"';
if ((empty($cfg['Import']['charset']) && $temp_charset == 'utf-8')
|| $temp_charset == $cfg['Import']['charset']
) {
echo ' selected="selected"';
}
echo '>' . htmlentities($temp_charset) . '</option>';
function PMA_getHtmlForHiddenInputs($import_type, $db, $table)
{
$html = '';
if ($import_type == 'server') {
$html .= PMA_generate_common_hidden_inputs('', '', 1);
} elseif ($import_type == 'database') {
$html .= PMA_generate_common_hidden_inputs($db, '', 1);
} else {
$html .= PMA_generate_common_hidden_inputs($db, $table, 1);
}
echo ' </select><br />';
} else {
echo '<label for="charset_of_file">' . __('Character set of the file:') . '</label>' . "\n";
echo PMA_generateCharsetDropdownBox(PMA_CSDROPDOWN_CHARSET, 'charset_of_file', 'charset_of_file', 'utf8', false);
} // end if (recoding)
?>
</div>
</div>
<div class="importoptions">
<h3><?php echo __('Partial Import:'); ?></h3>
$html .= ' <input type="hidden" name="import_type" value="'
. $import_type . '" />'."\n";
<?php
if (isset($timeout_passed) && $timeout_passed) {
echo '<div class="formelementrow">' . "\n";
echo '<input type="hidden" name="skip" value="' . $offset . '" />';
echo sprintf(__('Previous import timed out, after resubmitting will continue from position %d.'), $offset) . '';
echo '</div>' . "\n";
return $html;
}
?>
<div class="formelementrow">
<input type="checkbox" name="allow_interrupt" value="yes"
id="checkbox_allow_interrupt" <?php echo PMA_pluginCheckboxCheck('Import', 'allow_interrupt'); ?>/>
<label for="checkbox_allow_interrupt"><?php echo __('Allow the interruption of an import in case the script detects it is close to the PHP timeout limit. <i>(This might be a good way to import large files, however it can break transactions.)</i>'); ?></label><br />
</div>
<?php
if (! (isset($timeout_passed) && $timeout_passed)) {
?>
<div class="formelementrow">
<label for="text_skip_queries"><?php echo __('Number of rows to skip, starting from the first row:'); ?></label>
<input type="text" name="skip_queries" value="<?php echo PMA_pluginGetDefault('Import', 'skip_queries');?>" id="text_skip_queries" />
</div>
<?php
} else {
// If timeout has passed,
// do not show the Skip dialog to avoid the risk of someone
// entering a value here that would interfere with "skip"
?>
<input type="hidden" name="skip_queries" value="<?php echo PMA_pluginGetDefault('Import', 'skip_queries');?>" id="text_skip_queries" />
<?php
/**
* Prints Html For Import Javascript
*
* @param int $upload_id The selected upload id
*
* @return string
*/
function PMA_getHtmlForImportJS($upload_id)
{
global $SESSION_KEY;
$html = '';
$html .= '<script type="text/javascript">';
$html .= ' //<![CDATA[';
//with "\n", so that the following lines won't be commented out by //<![CDATA[
$html .= "\n";
$html .= ' $( function() {';
// add event when user click on "Go" button
$html .= ' $("#buttonGo").bind("click", function() {';
// hide form
$html .= ' $("#upload_form_form").css("display", "none");';
// show progress bar
$html .= ' $("#upload_form_status").css("display", "inline");';
$html .= ' $("#upload_form_status_info").css("display", "inline");';
if ($_SESSION[$SESSION_KEY]["handler"] != "UploadNoplugin") {
$html .= PMA_getHtmlForImportWithPlugin($upload_id);
} else { // no plugin available
$image_tag = '<img src="' . $GLOBALS['pmaThemeImage']
. 'ajax_clock_small.gif" width="16" height="16" alt="ajax clock" /> '
. PMA_jsFormat(
__(
'Please be patient, the file is being uploaded. '
. 'Details about the upload are not available.'
),
false
) . PMA_Util::showDocu('faq', 'faq2-9');
$html .= " $('#upload_form_status_info').html('" . $image_tag . "');";
$html .= ' $("#upload_form_status").css("display", "none");';
} // else
// onclick
$html .= ' });';
// domready
$html .= ' });';
$html .= ' //]]>';
//with "\n", so that the following lines won't be commented out by //]]>
$html .= "\n";
$html .= '</script>';
return $html;
}
?>
</div>
<div class="importoptions">
<h3><?php echo __('Format:'); ?></h3>
<?php echo PMA_pluginGetChoice('Import', 'format', $import_list); ?>
<div id="import_notification"></div>
</div>
/**
* Prints Html For Display Export options
*
* @param String $import_type Import type: server, database, table
* @param String $db Selected DB
* @param String $table Selected Table
*
* @return string
*/
function PMA_getHtmlForExportOptions($import_type, $db, $table)
{
$html = ' <div class="exportoptions" id="header">';
$html .= ' <h2>';
$html .= PMA_Util::getImage('b_import.png', __('Import'));
<div class="importoptions" id="format_specific_opts">
<h3><?php echo __('Format-Specific Options:'); ?></h3>
<p class="no_js_msg" id="scroll_to_options_msg">Scroll down to fill in the options for the selected format and ignore the options for other formats.</p>
<?php echo PMA_pluginGetOptions('Import', $import_list); ?>
</div>
<div class="clearfloat"></div>
<?php
// Encoding setting form appended by Y.Kawada
if (function_exists('PMA_Kanji_encodingForm')) { ?>
<div class="importoptions" id="kanji_encoding">
<h3><?php echo __('Encoding Conversion:'); ?></h3>
<?php echo PMA_Kanji_encodingForm(); ?>
</div>
<?php
if ($import_type == 'server') {
$html .= __('Importing into the current server');
} elseif ($import_type == 'database') {
$import_str = sprintf(
__('Importing into the database "%s"'),
htmlspecialchars($db)
);
$html .= $import_str;
} else {
$import_str = sprintf(
__('Importing into the table "%s"'),
htmlspecialchars($table)
);
$html .= $import_str;
}
$html .= ' </h2>';
$html .= ' </div>';
return $html;
}
echo "\n";
?>
<div class="importoptions" id="submit">
<input type="submit" value="<?php echo __('Go'); ?>" id="buttonGo" />
</div>
</form>
</div>
/**
* Prints Html For Display Import options : Compressions
*
* @return string
*/
function PMA_getHtmlForImportCompressions()
{
global $cfg;
$html = '';
// zip, gzip and bzip2 encode features
$compressions = array();
if ($cfg['GZipDump'] && @function_exists('gzopen')) {
$compressions[] = 'gzip';
}
if ($cfg['BZipDump'] && @function_exists('bzopen')) {
$compressions[] = 'bzip2';
}
if ($cfg['ZipDump'] && @function_exists('zip_open')) {
$compressions[] = 'zip';
}
// We don't have show anything about compression, when no supported
if ($compressions != array()) {
$html .= '<div class="formelementrow" id="compression_info">';
$compress_str = sprintf(
__('File may be compressed (%s) or uncompressed.'),
implode(", ", $compressions)
);
$html .= $compress_str;
$html .= '<br />';
$html .= __(
'A compressed file\'s name must end in <b>.[format].[compression]</b>. '
. 'Example: <b>.sql.zip</b>'
);
$html .= '</div>';
}
return $html;
}
/**
* Prints Html For Display Import charset
*
* @return string
*/
function PMA_getHtmlForImportCharset()
{
global $cfg;
$html = ' <div class="formelementrow" id="charaset_of_file">';
// charset of file
if ($GLOBALS['PMA_recoding_engine'] != PMA_CHARSET_NONE) {
$html .= '<label for="charset_of_file">' . __('Character set of the file:')
. '</label>';
reset($cfg['AvailableCharsets']);
$html .= '<select id="charset_of_file" name="charset_of_file" size="1">';
foreach ($cfg['AvailableCharsets'] as $temp_charset) {
$html .= '<option value="' . htmlentities($temp_charset) . '"';
if ((empty($cfg['Import']['charset']) && $temp_charset == 'utf-8')
|| $temp_charset == $cfg['Import']['charset']
) {
$html .= ' selected="selected"';
}
$html .= '>' . htmlentities($temp_charset) . '</option>';
}
$html .= ' </select><br />';
} else {
$html .= '<label for="charset_of_file">' . __('Character set of the file:')
. '</label>' . "\n";
$html .= PMA_generateCharsetDropdownBox(
PMA_CSDROPDOWN_CHARSET,
'charset_of_file',
'charset_of_file',
'utf8',
false
);
} // end if (recoding)
$html .= ' </div>';
return $html;
}
/**
* Prints Html For Display Import options : file property
*
* @param int $max_upload_size Max upload size
* @param Array $import_list import list
*
* @return string
*/
function PMA_getHtmlForImportOptionsFile($max_upload_size, $import_list)
{
global $cfg;
$html = ' <div class="importoptions">';
$html .= ' <h3>' . __('File to Import:') . '</h3>';
$html .= PMA_getHtmlForImportCompressions();
$html .= ' <div class="formelementrow" id="upload_form">';
if ($GLOBALS['is_upload'] && !empty($cfg['UploadDir'])) {
$html .= ' <ul>';
$html .= ' <li>';
$html .= ' <input type="radio" name="file_location" '
. 'id="radio_import_file" />';
$html .= PMA_Util::getBrowseUploadFileBlock($max_upload_size);
$html .= ' </li>';
$html .= ' <li>';
$html .= ' <input type="radio" name="file_location" '
. 'id="radio_local_import_file" />';
$html .= PMA_Util::getSelectUploadFileBlock($import_list, $cfg['UploadDir']);
$html .= ' </li>';
$html .= ' </ul>';
} elseif ($GLOBALS['is_upload']) {
$uid = uniqid('');
$html .= PMA_Util::getBrowseUploadFileBlock($max_upload_size);
} elseif (!$GLOBALS['is_upload']) {
$html .= PMA_Message::notice(
__('File uploads are not allowed on this server.')
)->getDisplay();
} elseif (!empty($cfg['UploadDir'])) {
$html .= PMA_Util::getSelectUploadFileBlock($import_list, $cfg['UploadDir']);
} // end if (web-server upload directory)
$html .= ' </div>';
$html .= PMA_getHtmlForImportCharset();
$html .= ' </div>';
return $html;
}
/**
* Prints Html For Display Import options : Partial Import
*
* @param String $timeout_passed timeout passed
* @param String $offset timeout offset
*
* @return string
*/
function PMA_getHtmlForImportOptionsPartialImport($timeout_passed, $offset)
{
$html = ' <div class="importoptions">';
$html .= ' <h3>' . __('Partial Import:') . '</h3>';
if (isset($timeout_passed) && $timeout_passed) {
$html .= '<div class="formelementrow">' . "\n";
$html .= '<input type="hidden" name="skip" value="' . $offset . '" />';
$html .= sprintf(
__(
'Previous import timed out, after resubmitting '
. 'will continue from position %d.'
),
$offset
);
$html .= '</div>' . "\n";
}
$html .= ' <div class="formelementrow">';
$html .= ' <input type="checkbox" name="allow_interrupt" value="yes"';
$html .= ' id="checkbox_allow_interrupt" '
. PMA_pluginCheckboxCheck('Import', 'allow_interrupt') . '/>';
$html .= ' <label for="checkbox_allow_interrupt">'
. __(
'Allow the interruption of an import in case the script detects '
. 'it is close to the PHP timeout limit. <i>(This might be a good way'
. ' to import large files, however it can break transactions.)</i>'
) . '</label><br />';
$html .= ' </div>';
if (! (isset($timeout_passed) && $timeout_passed)) {
$html .= ' <div class="formelementrow">';
$html .= ' <label for="text_skip_queries">'
. __('Number of rows to skip, starting from the first row:')
. '</label>';
$html .= ' <input type="text" name="skip_queries" value="'
. PMA_pluginGetDefault('Import', 'skip_queries')
. '" id="text_skip_queries" />';
$html .= ' </div>';
} else {
// If timeout has passed,
// do not show the Skip dialog to avoid the risk of someone
// entering a value here that would interfere with "skip"
$html .= ' <input type="hidden" name="skip_queries" value="'
. PMA_pluginGetDefault('Import', 'skip_queries')
. '" id="text_skip_queries" />';
}
$html .= ' </div>';
return $html;
}
/**
* Prints Html For Display Import options : Format
*
* @param Array $import_list import list
*
* @return string
*/
function PMA_getHtmlForImportOptionsFormat($import_list)
{
$html = ' <div class="importoptions">';
$html .= ' <h3>' . __('Format:') . '</h3>';
$html .= PMA_pluginGetChoice('Import', 'format', $import_list);
$html .= ' <div id="import_notification"></div>';
$html .= ' </div>';
$html .= ' <div class="importoptions" id="format_specific_opts">';
$html .= ' <h3>' . __('Format-Specific Options:') . '</h3>';
$html .= ' <p class="no_js_msg" id="scroll_to_options_msg">'
. 'Scroll down to fill in the options for the selected format '
. 'and ignore the options for other formats.</p>';
$html .= PMA_pluginGetOptions('Import', $import_list);
$html .= ' </div>';
$html .= ' <div class="clearfloat"></div>';
// Encoding setting form appended by Y.Kawada
if (function_exists('PMA_Kanji_encodingForm')) {
$html .= ' <div class="importoptions" id="kanji_encoding">';
$html .= ' <h3>' . __('Encoding Conversion:') . '</h3>';
$html .= PMA_Kanji_encodingForm();
$html .= ' </div>';
}
$html .= "\n";
return $html;
}
/**
* Prints Html For Display Import options : submit
*
* @return string
*/
function PMA_getHtmlForImportOptionsSubmit()
{
$html = ' <div class="importoptions" id="submit">';
$html .= ' <input type="submit" value="' . __('Go') . '" id="buttonGo" />';
$html .= ' </div>';
return $html;
}
/**
* Prints Html For Display Import
*
* @param int $upload_id The selected upload id
* @param String $import_type Import type: server, database, table
* @param String $db Selected DB
* @param String $table Selected Table
* @param int $max_upload_size Max upload size
* @param Array $import_list Import list
* @param String $timeout_passed Timeout passed
* @param String $offset Timeout offset
*
* @return string
*/
function PMA_getHtmlForImport(
$upload_id, $import_type, $db, $table,
$max_upload_size, $import_list, $timeout_passed, $offset
) {
global $SESSION_KEY;
$html = '';
$html .= '<iframe id="import_upload_iframe" name="import_upload_iframe" '
. 'width="1" height="1" style="display: none;"></iframe>';
$html .= '<div id="import_form_status" style="display: none;"></div>';
$html .= '<div id="importmain">';
$html .= ' <img src="' . $GLOBALS['pmaThemeImage'] . 'ajax_clock_small.gif" '
. 'width="16" height="16" alt="ajax clock" style="display: none;" />';
$html .= PMA_getHtmlForImportJS($upload_id);
$html .= ' <form action="import.php" method="post" '
. 'enctype="multipart/form-data"';
$html .= ' name="import"';
if ($_SESSION[$SESSION_KEY]["handler"] != "UploadNoplugin") {
$html .= ' target="import_upload_iframe"';
}
$html .= ' class="ajax"';
$html .= '>';
$html .= ' <input type="hidden" name="';
$html .= $_SESSION[$SESSION_KEY]['handler']::getIdKey();
$html .= '" value="' . $upload_id . '" />';
$html .= PMA_getHtmlForHiddenInputs($import_type, $db, $table);
$html .= PMA_getHtmlForExportOptions($import_type, $db, $table);
$html .= PMA_getHtmlForImportOptionsFile($max_upload_size, $import_list);
$html .= PMA_getHtmlForImportOptionsPartialImport($timeout_passed, $offset);
$html .= PMA_getHtmlForImportOptionsFormat($import_list);
$html .= PMA_getHtmlForImportOptionsSubmit();
$html .= '</form>';
$html .= '</div>';
return $html;
}
/**
* Prints javascript for upload with plugin, upload process bar
*
* @param int $upload_id The selected upload id
*
* @return string
*/
function PMA_getHtmlForImportWithPlugin($upload_id)
{
//some variable for javasript
$ajax_url = "import_status.php?id=" . $upload_id . "&"
. PMA_generate_common_url(array('import_status'=>1), '&');
$promot_str = PMA_jsFormat(
__(
'The file being uploaded is probably larger than '
. 'the maximum allowed size or this is a known bug in webkit '
. 'based (Safari, Google Chrome, Arora etc.) browsers.'
),
false
);
$statustext_str = PMA_escapeJsString(__('%s of %s'));
$upload_str = PMA_jsFormat(__('Uploading your import file...'), false);
$second_str = PMA_jsFormat(__('%s/sec.'), false);
$remaining_min = PMA_jsFormat(__('About %MIN min. %SEC sec. remaining.'), false);
$remaining_second = PMA_jsFormat(__('About %SEC sec. remaining.'), false);
$processed_str = PMA_jsFormat(
__('The file is being processed, please be patient.'),
false
);
$import_url = PMA_generate_common_url(array('import_status'=>1), '&');
//start output
$html = 'var finished = false; ';
$html .= 'var percent = 0.0; ';
$html .= 'var total = 0; ';
$html .= 'var complete = 0; ';
$html .= 'var original_title = '
. 'parent && parent.document ? parent.document.title : false; ';
$html .= 'var import_start; ';
$html .= 'var perform_upload = function () { ';
$html .= 'new $.getJSON( ';
$html .= ' "' . $ajax_url . '", ';
$html .= ' {}, ';
$html .= ' function(response) { ';
$html .= ' finished = response.finished; ';
$html .= ' percent = response.percent; ';
$html .= ' total = response.total; ';
$html .= ' complete = response.complete; ';
$html .= ' if (total==0 && complete==0 && percent==0) { ';
$img_tag = '<img src="'. $GLOBALS['pmaThemeImage'] . 'ajax_clock_small.gif"';
$html .= ' $("#upload_form_status_info").html(\''
. $img_tag . ' width="16" height="16" alt="ajax clock" /> '
. $promot_str . '\'); ';
$html .= ' $("#upload_form_status").css("display", "none"); ';
$html .= ' } else { ';
$html .= ' var now = new Date(); ';
$html .= ' now = Date.UTC( ';
$html .= ' now.getFullYear(), now.getMonth(), now.getDate(), ';
$html .= ' now.getHours(), now.getMinutes(), now.getSeconds()) ';
$html .= ' + now.getMilliseconds() - 1000; ';
$html .= ' var statustext = $.sprintf("' . $statustext_str . '", ';
$html .= ' formatBytes(complete, 1, PMA_messages.strDecimalSeparator), ';
$html .= ' formatBytes(total, 1, PMA_messages.strDecimalSeparator) ';
$html .= ' ); ';
$html .= ' if ($("#importmain").is(":visible")) { ';
// show progress UI
$html .= ' $("#importmain").hide(); ';
$html .= ' $("#import_form_status") ';
$html .= ' .html(\'<div class="upload_progress">'
. '<div class="upload_progress_bar_outer"><div class="percentage">'
. '</div><div id="status" class="upload_progress_bar_inner">'
. '<div class="percentage"></div></div></div><div>'
. '<img src="'. $GLOBALS['pmaThemeImage']
. 'ajax_clock_small.gif" width="16" height="16" alt="ajax clock" /> '
. $upload_str . '</div><div id="statustext"></div></div>\') ';
$html .= ' .show(); ';
$html .= ' import_start = now; ';
$html .= ' } ';
$html .= ' else if (percent > 9 || complete > 2000000) { ';
// calculate estimated time
$html .= ' var used_time = now - import_start; ';
$html .= ' var seconds = '
. 'parseInt(((total - complete) / complete) * used_time / 1000); ';
$html .= ' var speed = $.sprintf("' . $second_str . '"';
$html .= ' , formatBytes(complete / used_time * 1000, 1,'
. ' PMA_messages.strDecimalSeparator)); ';
$html .= ' var minutes = parseInt(seconds / 60); ';
$html .= ' seconds %= 60; ';
$html .= ' var estimated_time; ';
$html .= ' if (minutes > 0) { ';
$html .= ' estimated_time = "' . $remaining_min . '"';
$html .= ' .replace("%MIN", minutes).replace("%SEC", seconds); ';
$html .= ' } ';
$html .= ' else { ';
$html .= ' estimated_time = "' . $remaining_second . '"';
$html .= ' .replace("%SEC", seconds); ';
$html .= ' } ';
$html .= ' statustext += "<br />" + speed + "<br /><br />" '
. '+ estimated_time; ';
$html .= ' } ';
$html .= ' var percent_str = Math.round(percent) + "%"; ';
$html .= ' $("#status").animate({width: percent_str}, 150); ';
$html .= ' $(".percentage").text(percent_str); ';
// show percent in window title
$html .= ' if (original_title !== false) { ';
$html .= ' parent.document.title = percent_str + " - " + original_title; ';
$html .= ' } ';
$html .= ' else { ';
$html .= ' document.title = percent_str + " - " + original_title; ';
$html .= ' } ';
$html .= ' $("#statustext").html(statustext); ';
$html .= ' } ';
$html .= ' if (finished == true) { ';
$html .= ' if (original_title !== false) { ';
$html .= ' parent.document.title = original_title; ';
$html .= ' } ';
$html .= ' else { ';
$html .= ' document.title = original_title; ';
$html .= ' } ';
$html .= ' $("#importmain").hide(); ';
// loads the message, either success or mysql error
$html .= ' $("#import_form_status") ';
$html .= ' .html(\'<img src="' . $GLOBALS['pmaThemeImage']
. 'ajax_clock_small.gif" width="16" height="16" alt="ajax clock" /> '
. $processed_str . '\')';
$html .= ' .show(); ';
$html .= ' $("#import_form_status").load("import_status.php?'
. 'message=true&' . $import_url . '"); ';
$html .= ' PMA_reloadNavigation(); ';
// if finished
$html .= ' } ';
$html .= ' else { ';
$html .= ' setTimeout(perform_upload, 1000); ';
$html .= ' } ';
$html .= '}); ';
$html .= '}; ';
$html .= 'setTimeout(perform_upload, 1000); ';
return $html;
}
?>

View File

@ -139,6 +139,9 @@ function PMA_importRunQuery($sql = '', $full = '', $controluser = false,
}
$sql_query = $import_run_buffer['sql'];
$sql_data['valid_sql'][] = $import_run_buffer['sql'];
if(! isset($sql_data['valid_queries'])) {
$sql_data['valid_queries'] = 0;
}
$sql_data['valid_queries']++;
// If a 'USE <db>' SQL-clause was found,
@ -189,6 +192,9 @@ function PMA_importRunQuery($sql = '', $full = '', $controluser = false,
if (($a_num_rows > 0) || $is_use_query) {
$sql_data['valid_sql'][] = $import_run_buffer['sql'];
if(! isset($sql_data['valid_queries'])) {
$sql_data['valid_queries'] = 0;
}
$sql_data['valid_queries']++;
}

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-02-13 18:58+0200\n"
"Last-Translator: Andrey Prokopenko <aprk@ukr.net>\n"
"Language-Team: Afrikaans <http://l10n.cihar.com/projects/phpmyadmin/master/"
@ -4463,8 +4463,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5020,9 +5020,8 @@ msgstr "Bladsy nommer:"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5783,8 +5782,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5988,8 +5987,8 @@ msgstr "Analiseer tabel"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -6007,8 +6006,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6110,8 +6109,8 @@ msgstr "Stellings"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6131,8 +6130,8 @@ msgstr "Bediener weergawe"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6141,8 +6140,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6153,8 +6152,8 @@ msgstr "Gebruik Tabelle"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10296,21 +10295,21 @@ msgstr "Gebruiker"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Bediener weergawe"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Databases"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "databasisse"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Tabel kommentaar"
#: libraries/server_privileges.lib.php:3260
@ -12476,8 +12475,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-03-20 22:10+0200\n"
"Last-Translator: mohamed amin boubaker <mohamed.amin.02@gmail.com>\n"
"Language-Team: Arabic <http://l10n.cihar.com/projects/phpmyadmin/master/ar/"
@ -4288,8 +4288,8 @@ msgstr "تعديل أعمدة CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4827,9 +4827,8 @@ msgstr "عناوين الصفحة"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5594,8 +5593,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5790,8 +5789,8 @@ msgstr "الجدول المستخدم مؤخرا"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5808,8 +5807,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -5906,8 +5905,8 @@ msgstr ""
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -5926,8 +5925,8 @@ msgstr ""
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -5936,8 +5935,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -5948,8 +5947,8 @@ msgstr "إستخدم الجداول"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -8531,10 +8530,10 @@ msgid ""
"option is the string to append and/or prepend when truncation occurs "
"(Default: \"…\")."
msgstr ""
"يظهر فقط جزءً من النص. الخيار الأول يحدد مكان بدء ظهور النص )صفر بشكل "
"افتراضي(. الخيار الثاني هو تعديل كم النص المسترجع. إن كان فارغا، يسترجع كل "
"النص الباقي. الخيار الثالث يعرف أي من الأحرف سوف تضاف إلى المخرجات عند "
"استرجاع جزء من النص )… بشكل افتراضي(."
"يظهر فقط جزءً من النص. الخيار الأول يحدد مكان بدء ظهور النص )صفر بشكل افتراضي"
"(. الخيار الثاني هو تعديل كم النص المسترجع. إن كان فارغا، يسترجع كل النص "
"الباقي. الخيار الثالث يعرف أي من الأحرف سوف تضاف إلى المخرجات عند استرجاع "
"جزء من النص )… بشكل افتراضي(."
#: libraries/plugins/transformations/abstract/TextImageLinkTransformationsPlugin.class.php:33
#, fuzzy
@ -10188,21 +10187,21 @@ msgstr "المستخدمون"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "إصدارة المزود"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Databases"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "قاعدة بيانات"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table removal"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "اسم الجدول"
#: libraries/server_privileges.lib.php:3260
@ -12413,8 +12412,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-05-07 17:14+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Azerbaijani <http://l10n.cihar.com/projects/phpmyadmin/master/"
@ -4513,8 +4513,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5088,9 +5088,8 @@ msgstr "Sehife Nömresi:"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5866,8 +5865,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -6072,8 +6071,8 @@ msgstr "Cedveli analiz et"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -6091,8 +6090,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6194,8 +6193,8 @@ msgstr "Variantlar"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6216,8 +6215,8 @@ msgstr "Avtomatik qurtarma rejimi"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6226,8 +6225,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6238,8 +6237,8 @@ msgstr "Use Tables"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10510,21 +10509,21 @@ msgstr "İstifadeçi"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Server versiyası"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Databases"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Me'lumat Bazaları"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Cədvəl haqqında izahat"
#: libraries/server_privileges.lib.php:3260
@ -12704,8 +12703,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 11:30+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Belarusian <http://l10n.cihar.com/projects/phpmyadmin/master/"
@ -4617,8 +4617,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5196,9 +5196,8 @@ msgstr "Старонка:"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -6001,8 +6000,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -6209,8 +6208,8 @@ msgstr "Аналізаваць табліцу"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -6228,8 +6227,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6333,8 +6332,8 @@ msgstr "Выразы"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6355,8 +6354,8 @@ msgstr "Рэжым аўтаматычнага ўзнаўленьня"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6365,8 +6364,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6377,8 +6376,8 @@ msgstr "Выкарыстоўваць табліцы"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10827,21 +10826,21 @@ msgstr "Карыстальнік"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Вэрсія сэрвэра"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database for user"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "База дадзеных для карыстальніка"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table removal"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Імя табліцы"
#: libraries/server_privileges.lib.php:3260
@ -13202,8 +13201,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2012-12-13 13:06+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Belarusian (latin) <http://l10n.cihar.com/projects/phpmyadmin/"
@ -3091,8 +3091,8 @@ msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka."
#: libraries/File.class.php:476
msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]"
msgstr ""
"Pamyłka pieramiaščeńnia zahružanaha fajła. Hladzicie raździeł "
"[doc@faq1-11]1.11 u FAQ[/doc]"
"Pamyłka pieramiaščeńnia zahružanaha fajła. Hladzicie raździeł [doc@faq1-11]"
"1.11 u FAQ[/doc]"
#: libraries/File.class.php:494
msgid "Error while moving uploaded file."
@ -4635,8 +4635,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5203,9 +5203,8 @@ msgstr "Staronka:"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5995,8 +5994,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -6197,8 +6196,8 @@ msgstr "Analizavać tablicu"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -6215,8 +6214,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6319,8 +6318,8 @@ msgstr "Vyrazy"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6341,8 +6340,8 @@ msgstr "Režym aŭtamatyčnaha ŭznaŭleńnia"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6351,8 +6350,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6363,8 +6362,8 @@ msgstr "Vykarystoŭvać tablicy"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10830,21 +10829,21 @@ msgstr "Karystalnik"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Versija servera"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database for user"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Baza dadzienych dla karystalnika"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table removal"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Imia tablicy"
#: libraries/server_privileges.lib.php:3260
@ -13200,8 +13199,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 11:14+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Bulgarian <http://l10n.cihar.com/projects/phpmyadmin/master/"
@ -664,8 +664,8 @@ msgid ""
"[doc@faq1-16]FAQ 1.16[/doc]."
msgstr ""
"Не бяха получени данни за импорт. Или не е изпратен файл, или файлът е бил "
"по-голям от разрешеното в конфигурацията на PHP. Вижте [doc@faq1-16]ЧЗВ "
"1.16[/doc]."
"по-голям от разрешеното в конфигурацията на PHP. Вижте [doc@faq1-16]ЧЗВ 1.16"
"[/doc]."
#: import.php:467
msgid ""
@ -4318,8 +4318,8 @@ msgid ""
"kbd] - allows newlines in columns"
msgstr ""
"Определя какъв вид полета за редакция да бъдат използвани за колони тип CHAR "
"и VARCHAR:[kbd]input[/kbd] - позволява ограничаване по дължина, "
"[kbd]textarea[/kbd] - позволява вмъкването на нови редове"
"и VARCHAR:[kbd]input[/kbd] - позволява ограничаване по дължина, [kbd]textarea"
"[/kbd] - позволява вмъкването на нови редове"
#: libraries/config/messages.inc.php:31
msgid "CHAR columns editing"
@ -4327,8 +4327,8 @@ msgstr "Редакция на CHAR колони"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Използване на удобен за потребителя редактор за писане на SQL заявките "
"([a@http://codemirror.net/]CodeMirror[/a]) със синтактично оцветяване и "
@ -4883,13 +4883,11 @@ msgstr "Заглавие в браузъра"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Настройте заглавието в браузъра. Прочетете "
"[doc@cfg_TitleTable]документацията[/doc] за магическите низове и техните "
"стойности."
"Настройте заглавието в браузъра. Прочетете [doc@cfg_TitleTable]документацията"
"[/doc] за магическите низове и техните стойности."
#: libraries/config/messages.inc.php:194
#: libraries/navigation/NavigationHeader.class.php:209
@ -5667,8 +5665,8 @@ msgstr "Таблица за белязки"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5753,9 +5751,9 @@ msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
"Допълнителна информация в [a@https://sourceforge.net/p/phpmyadmin/"
"bugs/2606/]системата за проследяване на дефекти на PMA[/a] и [a@http://bugs."
"mysql.com/19588]дефекти на MySQL[/a]"
"Допълнителна информация в [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]"
"системата за проследяване на дефекти на PMA[/a] и [a@http://bugs.mysql."
"com/19588]дефекти на MySQL[/a]"
#: libraries/config/messages.inc.php:398
msgid "Disable use of INFORMATION_SCHEMA"
@ -5877,8 +5875,8 @@ msgstr "Последно отваряна таблица"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5895,11 +5893,11 @@ msgstr "Команда SHOW DATABASES"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"За примери посетете [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]видове удостоверяване[/a]"
"За примери посетете [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]"
"видове удостоверяване[/a]"
#: libraries/config/messages.inc.php:429
msgid "Signon session name"
@ -6002,8 +6000,8 @@ msgstr "Изрази, които да бъдат проследявани"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6022,8 +6020,8 @@ msgstr "Автоматично създаване на версии"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6032,8 +6030,8 @@ msgstr "Таблица за съхранение на потребителски
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6044,8 +6042,8 @@ msgstr "Използване таблиците"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -6179,8 +6177,8 @@ msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
"Показва връзка към изхода на [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
"Показва връзка към изхода на [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a]"
#: libraries/config/messages.inc.php:485
msgid "Show phpinfo() link"
@ -6260,8 +6258,8 @@ msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
"Ако имате отделно потребителско име, въведете го тук (по подразбиране е "
"[kbd]anonymous[/kbd])"
"Ако имате отделно потребителско име, въведете го тук (по подразбиране е [kbd]"
"anonymous[/kbd])"
#: libraries/config/messages.inc.php:506 tbl_tracking.php:559
#: tbl_tracking.php:621
@ -8356,8 +8354,8 @@ msgid ""
"reloaded between servers in different time zones)</i>"
msgstr ""
"Съхраняване на полета от вида TIMESTAMP в UTC формат<i>(позволява полетата "
"TIMESTAMP да бъдат експортирани и четени от сървъри в различни часови "
"пояси)</i>"
"TIMESTAMP да бъдат експортирани и четени от сървъри в различни часови пояси)"
"</i>"
#: libraries/plugins/export/ExportSql.class.php:1210
msgid "Constraints for dumped tables"
@ -8564,10 +8562,10 @@ msgstr ""
"Text_Plain_External.class.php и да изредите програмите, на които позволявате "
"да бъдат стартирани. Първата опция тогава е номера на програмата, която "
"бихте искали да използвате, а втората са параметрите ѝ. Ако третият "
"параметър е установен на 1, ще конвертира изхода използвайки "
"htmlspecialchars() (По подразбиране е 1). Ако четвъртият параметър е "
"установен на 1 това ще предотврати спренос на нов ред и целият изход ще бъде "
"показан на един ред (По подразбиране е 1)."
"параметър е установен на 1, ще конвертира изхода използвайки htmlspecialchars"
"() (По подразбиране е 1). Ако четвъртият параметър е установен на 1 това ще "
"предотврати спренос на нов ред и целият изход ще бъде показан на един ред "
"(По подразбиране е 1)."
#: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31
msgid ""
@ -10188,21 +10186,21 @@ msgstr "Потребители"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Версия на сървъра"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "БД сървър"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Коментари към таблицата"
#: libraries/server_privileges.lib.php:3260
@ -12337,8 +12335,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

107
po/bn.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-10 16:11+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Bengali <http://l10n.cihar.com/projects/phpmyadmin/master/bn/"
@ -4308,8 +4308,8 @@ msgstr "CHAR স্তম্ভ সম্পাদনা"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"SQL অনুসন্ধান সম্পাদনার জন্য ব্যবহারকারীর জন্য সহজ সফটওয়ার ব্যবহার করুন ([a@http://"
"codemirror.net/]CodeMirror[/a]), লাইন চিহ্নিতকরন এবং লাইন নাম্বার সহ "
@ -4709,8 +4709,8 @@ msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
"ফরেন কী ড্রপডাউনের বিষয়গুলো গুছানোর পদ্ধতি [kbd]content[/kbd] হলো তথ্য এবং "
"[kbd]id[/kbd] কী মান "
"ফরেন কী ড্রপডাউনের বিষয়গুলো গুছানোর পদ্ধতি [kbd]content[/kbd] হলো তথ্য এবং [kbd]id"
"[/kbd] কী মান "
#: libraries/config/messages.inc.php:151
msgid "Foreign key dropdown order"
@ -4850,9 +4850,8 @@ msgstr "পাতার শিরোনাম"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"ব্রাউজারের শিরোনামের লেখাটি দিন। বিশেষ মান নেওয়ার জন্য কি ব্যবহার করতে হবে "
"জানার জন্য [doc@cfg_TitleTable]documentation[/doc] দেখুন।"
@ -4972,10 +4971,10 @@ msgid ""
"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
msgstr ""
"আপনি যদি SQL বৈধকরণ ব্যবহার করতে চান, তবে আপনার সচেতন থাকা উচিত যে "
"[strong]পরিসংখ্যানে ব্যবহারের জন্য সমস্ত SQL statements অপরিচিত ভাবে জমা রাখা হয়।"
"[/strong]। [br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/"
"a], Copyright 2002 Upright Database Technology. সমস্ত স্বত্ব সংরক্ষন করে।[/em]"
"আপনি যদি SQL বৈধকরণ ব্যবহার করতে চান, তবে আপনার সচেতন থাকা উচিত যে [strong]"
"পরিসংখ্যানে ব্যবহারের জন্য সমস্ত SQL statements অপরিচিত ভাবে জমা রাখা হয়।[/"
"strong]। [br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
"Copyright 2002 Upright Database Technology. সমস্ত স্বত্ব সংরক্ষন করে।[/em]"
#: libraries/config/messages.inc.php:222
msgid "Startup"
@ -5274,8 +5273,8 @@ msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
"একটি স্ক্রীপটের জন্য নির্ধারিত বাইটের সংখ্যা যেমন [kbd]৩২মে[/kbd] ([kbd][/"
"kbd]কোন সীমা নির্দষ্ট না করার জন্য"
"একটি স্ক্রীপটের জন্য নির্ধারিত বাইটের সংখ্যা যেমন [kbd]৩২মে[/kbd] ([kbd][/kbd]"
"কোন সীমা নির্দষ্ট না করার জন্য"
#: libraries/config/messages.inc.php:298
msgid "Memory limit"
@ -5302,8 +5301,8 @@ msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
"সংযুক্ত পাতাটি একটি নতুন উইন্ডোতে ([kbd]new[/kbd]) খোল বা প্রধান উইন্ডোটিতে "
"([kbd]main[/kbd]) খোল"
"সংযুক্ত পাতাটি একটি নতুন উইন্ডোতে ([kbd]new[/kbd]) খোল বা প্রধান উইন্ডোটিতে ([kbd]"
"main[/kbd]) খোল"
#: libraries/config/messages.inc.php:304
msgid "Logo link target"
@ -5640,8 +5639,8 @@ msgstr "বুকর্মাক টেবল"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"স্তম্ভের মন্তব্য/মাইমের ধরন না দেখানোর জন্য খালি রাখুন, দেখুন:[kbd]pma_column_info[/"
"kbd]"
@ -5831,8 +5830,8 @@ msgid ""
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
"সর্ম্পক, বুকর্মাক এবং পিডিএফের জন্য ব্যবহৃত ডাটাবেইজসমূহ। পুর্ণ তথ্যে জন্য[a@http://wiki."
"phpmyadmin.net/pma/pmadb]pmadb[/a] দেখুন। সমর্থন না করলে খালি রাখুন। দেখুন: "
"[kbd]phpmyadmin[/kbd]"
"phpmyadmin.net/pma/pmadb]pmadb[/a] দেখুন। সমর্থন না করলে খালি রাখুন। দেখুন: [kbd]"
"phpmyadmin[/kbd]"
#: libraries/config/messages.inc.php:419
msgid "Database name"
@ -5860,8 +5859,8 @@ msgstr "সাময়িককালে ব্যবহৃত টেবল"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"না করার জন্য খালি রাখুন [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a]সাহায্যের জন্য, দেখুন:[kbd]pma__relation[/kbd] "
@ -5880,11 +5879,11 @@ msgstr "SHOW DATABASES কমান্ড"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"উদাহরণের জন্য [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]authentication types [/a] দেখুন"
"উদাহরণের জন্য [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]"
"authentication types [/a] দেখুন"
#: libraries/config/messages.inc.php:429
msgid "Signon session name"
@ -5990,8 +5989,8 @@ msgstr "ট্রেকের জন্য Statements"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"SQL অনুসন্ধান ট্রেকিং সমর্থন না দেওয়ার জন্য খালি রাখুন, দেখুন: [kbd]pma_tracking[/"
"kbd]"
@ -6012,8 +6011,8 @@ msgstr "স্বয়ংক্রীয়ভাবে সংস্করন তৈ
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"ব্যবহারকারীর নির্ধারন (preferences) ডাটাবেইজে মজুদ করতে না চাইলে খালি রাখুন, "
"দেখুন:[kbd]pma_userconfig[/kbd] "
@ -6025,11 +6024,11 @@ msgstr "ব্যবহারকারীর নির্ধারন (preferenc
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"ব্যবহারকারীর নির্ধারন (preferences) ডাটাবেইজে মজুদ করতে না চাইলে খালি রাখুন, "
"দেখুন:[kbd]pma_userconfig[/kbd] "
@ -6043,11 +6042,11 @@ msgstr "টেবল ব্যবহার"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"ব্যবহারকারীর নির্ধারন (preferences) ডাটাবেইজে মজুদ করতে না চাইলে খালি রাখুন, "
"দেখুন:[kbd]pma_userconfig[/kbd] "
@ -6061,8 +6060,8 @@ msgstr "হোষ্ট টেবল ব্যবহার কর"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6844,9 +6843,9 @@ msgid ""
"to the PHP timeout limit. <i>(This might be a good way to import large "
"files, however it can break transactions.)</i>"
msgstr ""
"পিএইছপি নির্ধারিত শেষ হওয়ার সময়ের কাছাকাছি এলে আমদানি বন্ধ করার অনুমোদন। "
"<i>(এটা অনেক বড় ফাইল আমদানীর একটি ভাল উপায়, যদিও এটা কাজ বন্ধ করে দিতে "
"পারে।)</i> "
"পিএইছপি নির্ধারিত শেষ হওয়ার সময়ের কাছাকাছি এলে আমদানি বন্ধ করার অনুমোদন। <i>"
"(এটা অনেক বড় ফাইল আমদানীর একটি ভাল উপায়, যদিও এটা কাজ বন্ধ করে দিতে পারে।)</"
"i> "
#: libraries/display_import.lib.php:296
msgid "Number of rows to skip, starting from the first row:"
@ -8329,8 +8328,8 @@ msgid ""
"(1,2,3)</code>"
msgstr ""
"প্রতিটি <code>INSERT</code> এর সাথে স্তম্ভের নাম সংযুক্ত কর <br /> &nbsp;&nbsp; "
"&nbsp; উদাহরণ: <code>INSERT INTO tbl_name (col_A,col_B,col_C) VALUES "
"(1,2,3)</code> "
"&nbsp; উদাহরণ: <code>INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)"
"</code> "
#: libraries/plugins/export/ExportSql.class.php:370
msgid ""
@ -10209,21 +10208,21 @@ msgstr "ব্যবহারকারী"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Server version"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "ডাটাবেইজ সার্ভার"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "টেবলের মন্তব্য"
#: libraries/server_privileges.lib.php:3260
@ -12215,8 +12214,8 @@ msgid ""
"You are not using a secure connection; all data (including potentially "
"sensitive information, like passwords) is transferred unencrypted!"
msgstr ""
"আপনি নিরাপদ সংযোগ ব্যবহার করছেন না; সমস্ত তথ্য (গুরুত্বপূর্ণ তথ্য, যেমন "
"পাসওয়ার্ড)আনএনক্রিপটেড স্থানান্তর করা হবে। "
"আপনি নিরাপদ সংযোগ ব্যবহার করছেন না; সমস্ত তথ্য (গুরুত্বপূর্ণ তথ্য, যেমন পাসওয়ার্ড)"
"আনএনক্রিপটেড স্থানান্তর করা হবে। "
#: setup/frames/index.inc.php:64
#, php-format
@ -12224,8 +12223,8 @@ msgid ""
"If your server is also configured to accept HTTPS requests follow [a@%s]this "
"link[/a] to use a secure connection."
msgstr ""
"আপনার সার্ভার যদি HTTPS সংযোগের জন্য কনফিগারড হয় তবে নিরাপদ সংযোগের জন্য [a@"
"%s]this link[/a] ব্যবহার করেন।"
"আপনার সার্ভার যদি HTTPS সংযোগের জন্য কনফিগারড হয় তবে নিরাপদ সংযোগের জন্য [a@%s]"
"this link[/a] ব্যবহার করেন।"
#: setup/frames/index.inc.php:68
msgid "Insecure connection"
@ -12453,8 +12452,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"আপনি প্রমাণী করনের ধরন [kbd]config[/kbd] নির্ধারণ করেছেন এবং ব্যহবারকারীর নাম ও "
"পাসওর্য়াড দিয়েছেন স্বয়ংক্রীয় লগইনের জন্য, যা একটি কার্যকর হোস্টের জন্য গ্রহনযোগ্য নয়। "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 11:11+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Breton <http://l10n.cihar.com/projects/phpmyadmin/master/br/"
@ -4321,8 +4321,8 @@ msgid ""
"cross-frame scripting attacks"
msgstr ""
"Gweredekaat kement-mañ a aotre ur bajenn zo en un domani disheñvel da "
"c'hervel phpMyAdmin e diabarzh ur framm, ar pezh a ya d'ober un "
"[strong]toull surentez[/strong] posupl evit tagadennoù skript etre frammoù"
"c'hervel phpMyAdmin e diabarzh ur framm, ar pezh a ya d'ober un [strong]"
"toull surentez[/strong] posupl evit tagadennoù skript etre frammoù"
#: libraries/config/messages.inc.php:20
msgid "Allow third party framing"
@ -4339,8 +4339,8 @@ msgid ""
"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
"authentication"
msgstr ""
"Ger-tremen implijet evit enrinegañ toupinoù pa vez gwiriekaet dre "
"[kbd]cookie[/kbd]"
"Ger-tremen implijet evit enrinegañ toupinoù pa vez gwiriekaet dre [kbd]cookie"
"[/kbd]"
#: libraries/config/messages.inc.php:23
msgid "Blowfish secret"
@ -4381,8 +4381,8 @@ msgid ""
"kbd] - allows newlines in columns"
msgstr ""
"Spisaat peseurt doare kontrolloù kemmañ a zleer ober ganto evit ar bannoù "
"CHAR ha VARCHAR; [kbd]input[/kbd] - a dalvez da grennañ ar vent, "
"[kbd]textarea[/kbd] - a aotren lakaat linennoù nevez er bannoù"
"CHAR ha VARCHAR; [kbd]input[/kbd] - a dalvez da grennañ ar vent, [kbd]"
"textarea[/kbd] - a aotren lakaat linennoù nevez er bannoù"
#: libraries/config/messages.inc.php:31
msgid "CHAR columns editing"
@ -4390,8 +4390,8 @@ msgstr "Kemmañ ar bannoù CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4798,8 +4798,8 @@ msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
"Urzh renkañ evit an elfennoù en ur voest desachañ alc'hwezioù estren; "
"[kbd]content[/kbd] zo evit an roadenn a zaveer dezhi, [kbd]id[/kbd] zo evit "
"Urzh renkañ evit an elfennoù en ur voest desachañ alc'hwezioù estren; [kbd]"
"content[/kbd] zo evit an roadenn a zaveer dezhi, [kbd]id[/kbd] zo evit "
"talvout an alc'hwez"
#: libraries/config/messages.inc.php:151
@ -4946,9 +4946,8 @@ msgstr "Titloù pajennoù"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Spisaat testenn barrenn ditl ar merdeer. En em zaveiñ d'an "
"[doc@cfg_TitleTable]teuliadur[/doc] evit an neudennadoù hud a c'haller ober "
@ -5725,8 +5724,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5919,8 +5918,8 @@ msgstr ""
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5937,8 +5936,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6035,8 +6034,8 @@ msgstr ""
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6055,8 +6054,8 @@ msgstr ""
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6065,8 +6064,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6077,8 +6076,8 @@ msgstr "Implijout taolennoù"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10138,21 +10137,21 @@ msgstr ""
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Last version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Stumm diwezhañ"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Databases"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Diazoù roadennoù"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Evezhiadennoù diwar-benn an daolenn"
#: libraries/server_privileges.lib.php:3260
@ -12242,8 +12241,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-06-17 09:33+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Bosnian <http://l10n.cihar.com/projects/phpmyadmin/master/bs/"
@ -4503,8 +4503,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5072,9 +5072,8 @@ msgstr "Broj strane:"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5849,8 +5848,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -6055,8 +6054,8 @@ msgstr "Analiziraj tabelu"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -6074,8 +6073,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6177,8 +6176,8 @@ msgstr "Ime"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6198,8 +6197,8 @@ msgstr "Verzija servera"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6208,8 +6207,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6220,8 +6219,8 @@ msgstr "Koristi tabele"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10496,21 +10495,21 @@ msgstr "Korisnik"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Verzija servera"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Databases"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Baze"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Komentari tabele"
#: libraries/server_privileges.lib.php:3260
@ -12700,8 +12699,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

112
po/ca.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-05-30 13:29+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Catalan <http://l10n.cihar.com/projects/phpmyadmin/master/ca/"
@ -4404,8 +4404,8 @@ msgid ""
"kbd] - allows newlines in columns"
msgstr ""
"Defineix quin tipus de control d'edició es farà servir per a columnes CHAR i "
"VARCHAR; [kbd]input[/kbd] - permet limitar el tamany de l'entrada, "
"[kbd]textarea[/kbd] - permet varies línies dintre dels camps"
"VARCHAR; [kbd]input[/kbd] - permet limitar el tamany de l'entrada, [kbd]"
"textarea[/kbd] - permet varies línies dintre dels camps"
#: libraries/config/messages.inc.php:31
msgid "CHAR columns editing"
@ -4413,8 +4413,8 @@ msgstr "Edició de columnes CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Fer servir l'editor SQL ([a@http://codemirror.net/]CodeMirror[/a]) amb "
"resaltat de sintaxi i números de línia"
@ -4964,9 +4964,8 @@ msgstr "Títols de pàgina"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Especifica el títol del navegador. Consulta [doc@cfg_TitleTable]la "
"documentació[/doc] per a cadenes màgiques que poden usar-se per obtenir "
@ -5032,8 +5031,8 @@ msgid ""
"documentation"
msgstr ""
"Configura la base de dades phpMyAdmin per tenir accés a característiques "
"adiccionals, consulta [doc@linked-tables]infraestructura de taules "
"enllaçades[/doc] a la documentació"
"adiccionals, consulta [doc@linked-tables]infraestructura de taules enllaçades"
"[/doc] a la documentació"
#: libraries/config/messages.inc.php:206
msgid "Changes tracking"
@ -5778,8 +5777,8 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
"Deixa en blanc per desactivar les [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]consultes desades[/a], suggerit: [kbd]pma__bookmark[/kbd]"
"Deixa en blanc per desactivar les [a@http://wiki.phpmyadmin.net/pma/bookmark]"
"consultes desades[/a], suggerit: [kbd]pma__bookmark[/kbd]"
#: libraries/config/messages.inc.php:381
msgid "Bookmark table"
@ -5787,8 +5786,8 @@ msgstr "Taula de consultes desades"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Deixa en blanc per no usar comentaris de columna o tipus mime, suggerit: "
"[kbd]pma__column_info[/kbd]"
@ -5865,8 +5864,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Deixa en blanc per desactivar el suport del Dissenyador, suggerit: "
"[kbd]pma__designer_coords[/kbd]"
"Deixa en blanc per desactivar el suport del Dissenyador, suggerit: [kbd]"
"pma__designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5972,8 +5971,8 @@ msgstr "Contrasenya autenticació config"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Deixa en blanc per desactivar el suport d'esquemes PDF, suggerit: "
"[kbd]pma__pdf_pages[/kbd]"
"Deixa en blanc per desactivar el suport d'esquemes PDF, suggerit: [kbd]"
"pma__pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -6017,11 +6016,11 @@ msgstr "Taula usada recentment"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Deixa en blanc per desactivar els [a@http://wiki.phpmyadmin.net/pma/"
"relation]enllaços de relacions[/a], suggerit: [kbd]pma__relation[/kbd]"
"Deixa en blanc per desactivar els [a@http://wiki.phpmyadmin.net/pma/relation]"
"enllaços de relacions[/a], suggerit: [kbd]pma__relation[/kbd]"
#: libraries/config/messages.inc.php:425
msgid "Relation table"
@ -6037,8 +6036,8 @@ msgstr "Ordre SHOW DATABASES"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Consulta [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipus "
"d'autenticació[/a] per veure exemples"
@ -6074,8 +6073,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Deixa en blanc per desactivar el suport d'esquemes PDF, suggerit: "
"[kbd]pma__table_coords[/kbd]"
"Deixa en blanc per desactivar el suport d'esquemes PDF, suggerit: [kbd]"
"pma__table_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6157,8 +6156,8 @@ msgstr "Instruccions a seguir"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Deixa en blanc per desactivar el suport de seguiment de consultes SQL, "
"suggerit: [kbd]pma__tracking[/kbd]"
@ -6181,8 +6180,8 @@ msgstr "Crear versions automàticament"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Deixa en blanc per no desar les preferències de l'usuari en base de dades, "
"suggerit: [kbd]pma__userconfig[/kbd]"
@ -6194,11 +6193,11 @@ msgstr "Taula de preferències de l'usuari"
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Deixa en blanc per no desar les preferències de l'usuari en base de dades, "
"suggerit: [kbd]pma__userconfig[/kbd]"
@ -6212,11 +6211,11 @@ msgstr "Usa Taules"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Deixa en blanc per no desar les preferències de l'usuari en base de dades, "
"suggerit: [kbd]pma__userconfig[/kbd]"
@ -6230,8 +6229,8 @@ msgstr "Utilitza la Taula de Hosts"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6262,8 +6261,8 @@ msgstr "Nom explicatiu d'aquest servidor"
#: libraries/config/messages.inc.php:465
msgid "Whether a user should be displayed a &quot;show all (rows)&quot; button"
msgstr ""
"Si a un usuari se l'hauria de mostrar el botó &quot;mostrar totes (les "
"files)&quot;"
"Si a un usuari se l'hauria de mostrar el botó &quot;mostrar totes (les files)"
"&quot;"
#: libraries/config/messages.inc.php:466
msgid "Allow to display all the rows"
@ -6517,8 +6516,8 @@ msgid ""
msgstr ""
"Entra els proxies com [kbd]IP: capçaleta HTTP confiable[/kbd]. El següent "
"exemple mostra cóm phpMyAdmin hauria de validar la capçalera "
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) procedent del proxy 1.2.3.4:[br]"
"[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) procedent del proxy 1.2.3.4:[br][kbd]"
"1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
#: libraries/config/messages.inc.php:522
msgid "List of trusted proxies for IP allow/deny"
@ -8660,8 +8659,8 @@ msgid ""
"The first line of the file contains the table column names <i>(if this is "
"unchecked, the first line will become part of the data)</i>"
msgstr ""
"La primera línia de l'arxiu conté els noms de les columnes de la taula "
"<i>(si no es marca això, la primera línia formarà part de les dades)</i>"
"La primera línia de l'arxiu conté els noms de les columnes de la taula <i>"
"(si no es marca això, la primera línia formarà part de les dades)</i>"
#: libraries/plugins/import/ImportCsv.class.php:72
msgid ""
@ -10489,21 +10488,21 @@ msgstr "Usuaris"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Versió del servidor"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Servidor de base de dades"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Comentaris de la taula"
#: libraries/server_privileges.lib.php:3260
@ -12585,9 +12584,8 @@ msgid ""
"Otherwise you will be only able to download or display it."
msgstr ""
"Si us plau, crea una carpeta modificable pel servidor web [em]config[/em] al "
"directori principal de phpMyAdmin tal com s'explica a la "
"[doc@setup_script]documentació[/doc]. En cas contrari només podràs "
"descarregar o mostrar."
"directori principal de phpMyAdmin tal com s'explica a la [doc@setup_script]"
"documentació[/doc]. En cas contrari només podràs descarregar o mostrar."
#: setup/frames/index.inc.php:60
msgid ""
@ -12844,8 +12842,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom "
"d'usuari i la contrasenya per connexions automàtiques, que es una opció no "
@ -14883,9 +14881,9 @@ msgstr "{concurrent_insert} està establert a 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Quan s'estableix aixó a [kbd]anidat[/kbd], el àlies del nom de la taula "
#~ "només es fa servir per a separar/anidar les taules segons la directiva "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-18 14:40+0200\n"
"Last-Translator: Ballen Abdulkarim <ballen.angel@yahoo.com>\n"
"Language-Team: Kurdish Sorani <http://l10n.cihar.com/projects/phpmyadmin/"
@ -4228,8 +4228,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4752,9 +4752,8 @@ msgstr ""
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5494,8 +5493,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5688,8 +5687,8 @@ msgstr ""
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5706,8 +5705,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -5804,8 +5803,8 @@ msgstr ""
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -5824,8 +5823,8 @@ msgstr ""
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -5834,8 +5833,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -5846,8 +5845,8 @@ msgstr "خشتە بەکار ببە"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -9808,21 +9807,21 @@ msgstr "بەکارهێنەرەکان"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "وەشانی ڕاژە"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "ڕاژەکاری بکنەی دراوە"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "تێبینیەکانی خشتە"
#: libraries/server_privileges.lib.php:3260
@ -11875,8 +11874,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

110
po/cs.po
View File

@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-29 15:37+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Czech <http://l10n.cihar.com/projects/phpmyadmin/master/cs/>\n"
@ -3913,8 +3913,8 @@ msgid ""
"The [code]$cfg['PmaAbsoluteUri'][/code] directive MUST be set in your "
"configuration file!"
msgstr ""
"V konfiguračním souboru musí být nastaven parametr "
"[code]$cfg['PmaAbsoluteUri'][/code]!"
"V konfiguračním souboru musí být nastaven parametr [code]$cfg"
"['PmaAbsoluteUri'][/code]!"
#: libraries/common.inc.php:630
#, php-format
@ -4235,8 +4235,8 @@ msgid ""
"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
"authentication"
msgstr ""
"Tajné heslo používané pro šifrování cookies při přihlašování pomocí "
"[kbd]cookie[/kbd]"
"Tajné heslo používané pro šifrování cookies při přihlašování pomocí [kbd]"
"cookie[/kbd]"
#: libraries/config/messages.inc.php:23
msgid "Blowfish secret"
@ -4277,8 +4277,8 @@ msgid ""
"kbd] - allows newlines in columns"
msgstr ""
"Definuje, který typ ovládacích prvků má být použit při úpravách polí typu "
"CHAR a VARCHAR; [kbd]input[/kbd] - umožňuje omezit délku vstupu, "
"[kbd]textarea[/kbd] - umožní použít odřádkování"
"CHAR a VARCHAR; [kbd]input[/kbd] - umožňuje omezit délku vstupu, [kbd]"
"textarea[/kbd] - umožní použít odřádkování"
#: libraries/config/messages.inc.php:31
msgid "CHAR columns editing"
@ -4286,8 +4286,8 @@ msgstr "Úprava polí typu CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Použít uživatelsky přívětivý editor pro úpravu SQL dotazů ([a@http://"
"codemirror.net/]CodeMirror[/a]) se zvýrazněním syntaxe a čísly řádek"
@ -4821,9 +4821,8 @@ msgstr "Jména stránek"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Zadejte titulek který zobrazí prohlížeč. V [doc@cfg_TitleTable]dokumentaci[/"
"doc] naleznete jaké proměnné můžete použít."
@ -5625,8 +5624,8 @@ msgstr "Tabulka záložek"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Nechte prázdné pro žádné komentáře či mime typy polí, výchozí nastavení: "
"[kbd]pma__column_info[/kbd]"
@ -5697,8 +5696,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Nechte prázdné pro vypnutí návrháře, výchozí nastavení: "
"[kbd]pma__designer_coords[/kbd]"
"Nechte prázdné pro vypnutí návrháře, výchozí nastavení: [kbd]"
"pma__designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5801,8 +5800,8 @@ msgstr "Heslo pro přihlašování config"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Nechte prázdné pro vypnutí podpory pro PDF schémata, výchozí nastavení: "
"[kbd]pma__table_pages[/kbd]"
"Nechte prázdné pro vypnutí podpory pro PDF schémata, výchozí nastavení: [kbd]"
"pma__table_pages[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -5816,8 +5815,8 @@ msgid ""
msgstr ""
"Databáze používaná pro relace, záložky a PDF stránky. Více informací "
"naleznete na [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a]. Pokud "
"ponecháte prázdné, budou tyto funkce vypnuté. Doporučená hodnota: "
"[kbd]phpmyadmin[/kbd]"
"ponecháte prázdné, budou tyto funkce vypnuté. Doporučená hodnota: [kbd]"
"phpmyadmin[/kbd]"
#: libraries/config/messages.inc.php:419
msgid "Database name"
@ -5846,8 +5845,8 @@ msgstr "Naposledy použité tabulky"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Nechte prázdné pro vypnutí podpory pro [a@http://wiki.phpmyadmin.net/pma/"
"relation]relace[/a], výchozí nastavení: [kbd]pma__relation[/kbd]"
@ -5866,11 +5865,11 @@ msgstr "Příkaz SHOW DATABASES"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Příklad můžete nalézt na [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]authentication types[/a]"
"Příklad můžete nalézt na [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]"
"authentication types[/a]"
#: libraries/config/messages.inc.php:429
msgid "Signon session name"
@ -5902,8 +5901,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Nechte prázdné pro vypnutí podpory pro PDF schémata, výchozí nastavení: "
"[kbd]pma__table_coords[/kbd]"
"Nechte prázdné pro vypnutí podpory pro PDF schémata, výchozí nastavení: [kbd]"
"pma__table_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -5979,8 +5978,8 @@ msgstr "Sledované příkazy"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Nechte prázdné pro vypnutí podpory pro sledování SQL dotazů, výchozí "
"nastavení: [kbd]pma__tracking[/kbd]"
@ -6002,8 +6001,8 @@ msgstr "Automaticky vytvářet verze"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Nechte prázdné pro vypnutí podpory pro uživatelské nastavení v databázi, "
"výchozí nastavení: [kbd]pma__userconfig[/kbd]"
@ -6014,8 +6013,8 @@ msgstr "Tabulka pro uživatelská nastavení"
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Nechte prázdné pro vypnutí podpory pro nastavitelné menu, výchozí nastavení: "
"[kbd]pma__users[/kbd]"
@ -6026,8 +6025,8 @@ msgstr "Tabulka uživatelů"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Nechte prázdné pro vypnutí podpory pro nastavitelné menu, výchozí nastavení: "
"[kbd]pma__usergroups[/kbd]"
@ -6164,8 +6163,8 @@ msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
"Zobrazí link na výstup funkce [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
"Zobrazí link na výstup funkce [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a]"
#: libraries/config/messages.inc.php:485
msgid "Show phpinfo() link"
@ -6244,8 +6243,8 @@ msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
"Pokud máte vlastní užvatelské jméno, zadejte ho zde (jinak se použije "
"[kbd]anonymous[/kbd])"
"Pokud máte vlastní užvatelské jméno, zadejte ho zde (jinak se použije [kbd]"
"anonymous[/kbd])"
#: libraries/config/messages.inc.php:506 tbl_tracking.php:559
#: tbl_tracking.php:621
@ -10170,17 +10169,23 @@ msgstr "Skupiny"
#: libraries/server_privileges.lib.php:3236
#: libraries/server_privileges.lib.php:3402
msgid "Server level tabs"
#, fuzzy
#| msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Záložky pro práci se serverem"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
msgid "Database level tabs"
#, fuzzy
#| msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Záložky pro práci s databází"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
msgid "Table level tabs"
#, fuzzy
#| msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Záložky pro práci s tabulkou"
#: libraries/server_privileges.lib.php:3260
@ -12165,9 +12170,8 @@ msgid ""
"Otherwise you will be only able to download or display it."
msgstr ""
"Prosím, vytvořte adresář [em]config[/em] zapisovatelný pro web server v "
"kořenovém adresáři phpMyAdmina, jak je popsáno v "
"[doc@setup_script]dokumentaci[/doc]. Jinak budete moci nastavení pouze "
"stáhnout nebo zobrazit."
"kořenovém adresáři phpMyAdmina, jak je popsáno v [doc@setup_script]"
"dokumentaci[/doc]. Jinak budete moci nastavení pouze stáhnout nebo zobrazit."
#: setup/frames/index.inc.php:60
msgid ""
@ -12309,8 +12313,8 @@ msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
"Používáte verzi z Gitu, pro aktualizaci spusťte [kbd]git pull[/kbd] :-)"
"[br]Poslední stabilní verze je %s a byla vydána %s."
"Používáte verzi z Gitu, pro aktualizaci spusťte [kbd]git pull[/kbd] :-)[br]"
"Poslední stabilní verze je %s a byla vydána %s."
#: setup/lib/index.lib.php:170
msgid "No newer stable version is available"
@ -12423,8 +12427,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Nastavil jste typ přihlašování [kbd]config[/kbd] a zadal jste uživatelské "
"jméno a heslo pro automatické přihlášení, což není doporučená volba pro "
@ -14381,9 +14385,9 @@ msgstr "concurrent_insert je nastaveno na 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Při nastavení na [kbd]nested[/kbd], bude komentář použit pro zanoření a "
#~ "rozdělení podle nastavení $cfg['LeftFrameTableSeparator']. Takže komentář "

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-05-07 17:20+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Welsh <http://l10n.cihar.com/projects/phpmyadmin/4-0/cy/>\n"
@ -4516,8 +4516,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5087,9 +5087,8 @@ msgstr "Enw'r dudalen"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5861,8 +5860,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -6070,8 +6069,8 @@ msgstr "Dadansoddi tabl"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -6088,8 +6087,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6186,8 +6185,8 @@ msgstr "Datganiadau i'w tracio"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6206,8 +6205,8 @@ msgstr ""
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6216,8 +6215,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6228,8 +6227,8 @@ msgstr "Defnyddiwch Dablau"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -6360,8 +6359,8 @@ msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
"Dangos cysylltiad i allbwn [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
"Dangos cysylltiad i allbwn [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a]"
#: libraries/config/messages.inc.php:485
msgid "Show phpinfo() link"
@ -10453,21 +10452,21 @@ msgstr "Defnyddiwr"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Fersiwn y gweinydd"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Databases"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Cronfeydd Data"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Sylwadau tabl"
#: libraries/server_privileges.lib.php:3260
@ -12630,8 +12629,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

109
po/da.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-06-29 18:06+0200\n"
"Last-Translator: Aputsiaq Niels Janussen <aj@isit.gl>\n"
"Language-Team: Danish <http://l10n.cihar.com/projects/phpmyadmin/master/da/"
@ -4262,9 +4262,9 @@ msgid ""
"cross-frame scripting attacks"
msgstr ""
"Aktivering indebærer, at en side, som ligger på et andet domæne, har adgang "
"til at kalde phpMyAdmin fra en ramme. Det er en potentiel "
"[strong]sikkerhedsrisiko[/strong], fordi det åbner op for cross-frame "
"scripting angreb"
"til at kalde phpMyAdmin fra en ramme. Det er en potentiel [strong]"
"sikkerhedsrisiko[/strong], fordi det åbner op for cross-frame scripting "
"angreb"
#: libraries/config/messages.inc.php:20
msgid "Allow third party framing"
@ -4330,8 +4330,8 @@ msgstr "Redigering af CHAR-kolonner"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Brug en brugervenlig redigering til redigering af SQL-forespørgsler, "
"([a@http://codemirror.net/]CodeMirror[/a]) med fremhævelse af syntaks og "
@ -4729,8 +4729,8 @@ msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
"Sorteringsrækkefølge for elementer i valgboks med fremmede nøgler; "
"[kbd]content[/kbd] er de refererede data, [kbd]id[/kbd] er nøglens værdi"
"Sorteringsrækkefølge for elementer i valgboks med fremmede nøgler; [kbd]"
"content[/kbd] er de refererede data, [kbd]id[/kbd] er nøglens værdi"
#: libraries/config/messages.inc.php:151
msgid "Foreign key dropdown order"
@ -4872,9 +4872,8 @@ msgstr "Sidetitler"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Angiv browserens tekst i titelbaren. Se [doc@cfg_TitleTable]dokumentationen[/"
"doc] for tekststrenge der indeholder særlige værdier."
@ -4998,10 +4997,10 @@ msgid ""
"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
msgstr ""
"Hvis du ønsker at bruge servicen SQL Validator, skal du huske på, at "
"[strong]alle SQL forespørgsler lagres anonymt til statistiske formål[/"
"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
"Hvis du ønsker at bruge servicen SQL Validator, skal du huske på, at [strong]"
"alle SQL forespørgsler lagres anonymt til statistiske formål[/strong].[br]"
"[em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright "
"2002 Upright Database Technology. All rights reserved.[/em]"
#: libraries/config/messages.inc.php:222
msgid "Startup"
@ -5335,8 +5334,8 @@ msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
"Åbn den linkede side i hovedvinduet ([kbd]main[/kbd]) eller i et nyt "
"([kbd]new[/kbd])"
"Åbn den linkede side i hovedvinduet ([kbd]main[/kbd]) eller i et nyt ([kbd]"
"new[/kbd])"
#: libraries/config/messages.inc.php:304
msgid "Logo link target"
@ -5680,11 +5679,11 @@ msgstr "Bogmærketabel"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Efterlades tom for ingen kolonnekommentar-/mime-typer, forslag: "
"[kbd]pma_column_info[/kbd]"
"Efterlades tom for ingen kolonnekommentar-/mime-typer, forslag: [kbd]"
"pma_column_info[/kbd]"
#: libraries/config/messages.inc.php:383
msgid "Column information table"
@ -5754,8 +5753,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Efterlades tom for at undlade Designer-understøttelse, forslag: "
"[kbd]pma_designer_coords[/kbd]"
"Efterlades tom for at undlade Designer-understøttelse, forslag: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5859,8 +5858,8 @@ msgstr "Adgangskode for config auth"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Efterlades tom for at undlade understøttelse af PDF-skematik, forslag: "
"[kbd]pma_pdf_pages[/kbd]"
"Efterlades tom for at undlade understøttelse af PDF-skematik, forslag: [kbd]"
"pma_pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -5902,8 +5901,8 @@ msgstr "Senest benyttede tabel"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Efterlades tom for at undlade understøttelse af [a@http://wiki.phpmyadmin."
"net/pma/relation]relation-links[/a], forslag: [kbd]pma_relation[/kbd]"
@ -5922,8 +5921,8 @@ msgstr "SHOW DATABASES kommando"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types[/"
"a] for et eksempel"
@ -5957,8 +5956,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Efterlades tom for at undlade understøttelse af PDF-skematik, forslag: "
"[kbd]pma_table_coords[/kbd]"
"Efterlades tom for at undlade understøttelse af PDF-skematik, forslag: [kbd]"
"pma_table_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6035,8 +6034,8 @@ msgstr "Forespørgsler, der skal spores"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Efterlades tom for at undlade understøttelse af sporing på SQL-forspørgsler, "
"forslag: [kbd]pma_tracking[/kbd]"
@ -6058,8 +6057,8 @@ msgstr "Opret versioner automatisk"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Efterlades tom for at undlade lagring af bruger-præferencer i database, "
"forslag: [kbd]pma_userconfig[/kbd]"
@ -6071,11 +6070,11 @@ msgstr "Bruger preference storage tabel"
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Efterlades tom for at undlade lagring af bruger-præferencer i database, "
"forslag: [kbd]pma_userconfig[/kbd]"
@ -6089,11 +6088,11 @@ msgstr "Benyt tabeller"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Efterlades tom for at undlade lagring af bruger-præferencer i database, "
"forslag: [kbd]pma_userconfig[/kbd]"
@ -6107,8 +6106,8 @@ msgstr "Brug tabellen host"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -10275,21 +10274,21 @@ msgstr "Brugere"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Serverversion"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Database-server"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Tabel kommentarer"
#: libraries/server_privileges.lib.php:3260
@ -12560,8 +12559,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Du har sat [kbd]config[/kbd] autentifikation og inkluderet brugernavn og "
"adgangskode for auto-login, hvilket er ikke en ønskværdig konfiguration for "
@ -14541,13 +14540,13 @@ msgstr "concurrent_insert er sat til 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Når denne sættes til [kbd]nested[/kbd] bruges alias for tabelnavnet kun "
#~ "til at splitte/samle tabellerne i henhold til direktivet "
#~ "$cfg['LeftFrameTableSeparator'], så kun mappen benævnes som aliaset; "
#~ "til at splitte/samle tabellerne i henhold til direktivet $cfg"
#~ "['LeftFrameTableSeparator'], så kun mappen benævnes som aliaset; "
#~ "tabelnavnet selv forbliver uændret"
#~ msgid "Display table comment instead of its name"

153
po/de.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 11:31+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: German <http://l10n.cihar.com/projects/phpmyadmin/master/de/"
@ -2877,8 +2877,8 @@ msgstr "Unbekannter Fehler beim hochladen der Datei."
#: libraries/File.class.php:476
msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]"
msgstr ""
"Fehler beim Verschieben der hochgeladenen Datei, siehe [doc@faq1-11]FAQ "
"1.11[/doc]"
"Fehler beim Verschieben der hochgeladenen Datei, siehe [doc@faq1-11]FAQ 1.11"
"[/doc]"
#: libraries/File.class.php:494
msgid "Error while moving uploaded file."
@ -3323,8 +3323,8 @@ msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
"Bereinigen der Tabellen UI Einstellungen fehlgeschlagen (siehe "
"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)"
"Bereinigen der Tabellen UI Einstellungen fehlgeschlagen (siehe $cfg"
"['Servers'][$i]['MaxTableUiprefs'] %s)"
#: libraries/Table.class.php:1620
#, php-format
@ -4376,8 +4376,8 @@ msgid ""
"cross-frame scripting attacks"
msgstr ""
"Wenn diese Option aktiviert ist, kann eine Webseite einer fremden Domäne "
"phpMyAdmin in einem Frame aufrufen. Dies stellt eine potentielle "
"[strong]Sicherheitslücke[/strong] für Cross-Frame Scripting Attacken dar"
"phpMyAdmin in einem Frame aufrufen. Dies stellt eine potentielle [strong]"
"Sicherheitslücke[/strong] für Cross-Frame Scripting Attacken dar"
#: libraries/config/messages.inc.php:20
msgid "Allow third party framing"
@ -4445,8 +4445,8 @@ msgstr "Bearbeitung von CHAR-Felder"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Benutzerfreundlichen Editor ([a@http://codemirror.net/]CodeMirror[/a]) mit "
"Syntaxhervorhebung und Zeilennummern zum Bearbeiten von SQL-Abfragen "
@ -4994,9 +4994,8 @@ msgstr "Seitentitel"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Text für die Browser-Titelleiste. Weitere Informationen über Schlüsselwörter "
"und Variablennamen in der [doc@cfg_TitleTable]Dokumentation[/doc]."
@ -5431,8 +5430,8 @@ msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
"Anzahl der Bytes, welche ein Script zur Ausführung benötigen darf, z.B. "
"[kbd]32M[/kbd] ([kbd]0[/kbd] für unbegrenzt)"
"Anzahl der Bytes, welche ein Script zur Ausführung benötigen darf, z.B. [kbd]"
"32M[/kbd] ([kbd]0[/kbd] für unbegrenzt)"
#: libraries/config/messages.inc.php:298
msgid "Memory limit"
@ -5806,8 +5805,8 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
"Leer lassen für keine [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]Lesezeichen[/a]-Unterstützung, Vorschlag: [kbd]pma_bookmark[/kbd]"
"Leer lassen für keine [a@http://wiki.phpmyadmin.net/pma/bookmark]Lesezeichen"
"[/a]-Unterstützung, Vorschlag: [kbd]pma_bookmark[/kbd]"
#: libraries/config/messages.inc.php:381
msgid "Bookmark table"
@ -5815,11 +5814,11 @@ msgstr "Lesezeichen Tabelle"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Leer lassen für keine Spalten Kommentare/mime types, Vorschlag: "
"[kbd]pma__column_info[/kbd]"
"Leer lassen für keine Spalten Kommentare/mime types, Vorschlag: [kbd]"
"pma__column_info[/kbd]"
#: libraries/config/messages.inc.php:383
msgid "Column information table"
@ -5894,8 +5893,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Leer lassen für keine Designer-Unterstützung, Vorschlag: "
"[kbd]pma__designer_coords[/kbd]"
"Leer lassen für keine Designer-Unterstützung, Vorschlag: [kbd]"
"pma__designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5906,9 +5905,8 @@ msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
"Mehr Informationen auf [a@https://sourceforge.net/p/phpmyadmin/"
"bugs/2606/]PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL "
"Bugs[/a]"
"Mehr Informationen auf [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]"
"PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
#: libraries/config/messages.inc.php:398
msgid "Disable use of INFORMATION_SCHEMA"
@ -5937,8 +5935,8 @@ msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
msgstr ""
"Leer lassen für keine SQL Abfrageverlaufs-Unterstützung, Vorschlag: "
"[kbd]pma__history[/kbd]"
"Leer lassen für keine SQL Abfrageverlaufs-Unterstützung, Vorschlag: [kbd]"
"pma__history[/kbd]"
#: libraries/config/messages.inc.php:404
msgid "SQL query history table"
@ -6002,8 +6000,8 @@ msgstr "Passwort für config Authentifikation"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Leer lassen für keine PDF-Schema-Unterstützung, Vorschlag: "
"[kbd]pma__pdf_pages[/kbd]"
"Leer lassen für keine PDF-Schema-Unterstützung, Vorschlag: [kbd]"
"pma__pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -6045,8 +6043,8 @@ msgstr "Kürzlich verwendete Tabellen"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Leer lassen für keine [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"link[/a] Unterstützung, Vorschlag: [kbd]pma__relation[/kbd]"
@ -6065,11 +6063,11 @@ msgstr "SHOW DATABASES Befehl"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Siehe [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]Authentifizierungsarten[/a] für ein Beispiel"
"Siehe [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]"
"Authentifizierungsarten[/a] für ein Beispiel"
#: libraries/config/messages.inc.php:429
msgid "Signon session name"
@ -6101,8 +6099,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Leer lassen für keine PDF-Schema-Unterstützung, Vorschlag: "
"[kbd]pma__table_coords[/kbd]"
"Leer lassen für keine PDF-Schema-Unterstützung, Vorschlag: [kbd]"
"pma__table_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6184,11 +6182,11 @@ msgstr "Zu verfolgende Statements"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Leer lassen für keine SQL Abfrageverlauf-Unterstützung, Vorschlag: "
"[kbd]pma__tracking[/kbd]"
"Leer lassen für keine SQL Abfrageverlauf-Unterstützung, Vorschlag: [kbd]"
"pma__tracking[/kbd]"
#: libraries/config/messages.inc.php:450
msgid "SQL query tracking table"
@ -6208,8 +6206,8 @@ msgstr "Versionen automatisch erzeugen"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Leer lassen, um die Benutzereinstellungen nicht in der Datenbank zu "
"speichern, Vorschlag: [kbd]pma__userconfig[/kbd]"
@ -6221,11 +6219,11 @@ msgstr "Tabelle für Benutzereinstellungen"
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Leer lassen, um die Benutzereinstellungen nicht in der Datenbank zu "
"speichern, Vorschlag: [kbd]pma__userconfig[/kbd]"
@ -6239,11 +6237,11 @@ msgstr "Verwendete Tabellen"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Leer lassen, um die Benutzereinstellungen nicht in der Datenbank zu "
"speichern, Vorschlag: [kbd]pma__userconfig[/kbd]"
@ -6257,8 +6255,8 @@ msgstr "Verwende Hosttabelle"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6544,8 +6542,8 @@ msgid ""
msgstr ""
"Proxies als [kbd]IP: trusted HTTP header[/kbd] eingeben. Das folgende "
"Beispiel legt fest, das phpMyAdmin einem HTTP_X_FORWARDED_FOR (X-Forwarded-"
"For) Header, der von dem proxy 1.2.3.4:[br][kbd]1.2.3.4: "
"HTTP_X_FORWARDED_FOR[/kbd] kommt, vertrauen soll"
"For) Header, der von dem proxy 1.2.3.4:[br][kbd]1.2.3.4: HTTP_X_FORWARDED_FOR"
"[/kbd] kommt, vertrauen soll"
#: libraries/config/messages.inc.php:522
msgid "List of trusted proxies for IP allow/deny"
@ -7063,8 +7061,8 @@ msgid ""
"A compressed file's name must end in <b>.[format].[compression]</b>. "
"Example: <b>.sql.zip</b>"
msgstr ""
"Der Dateiname einer komprimierten Datei muss mit <b>.[Format]."
"[Komprimierung]</b> enden. Beispiel: <b>.sql.zip</b>"
"Der Dateiname einer komprimierten Datei muss mit <b>.[Format].[Komprimierung]"
"</b> enden. Beispiel: <b>.sql.zip</b>"
#: libraries/display_import.lib.php:245
msgid "File uploads are not allowed on this server."
@ -7088,8 +7086,8 @@ msgid ""
"to the PHP timeout limit. <i>(This might be a good way to import large "
"files, however it can break transactions.)</i>"
msgstr ""
"Import abbrechen, wenn die maximale PHP-Scriptlaufzeit erreicht wird. "
"<i>(Damit ist es möglich, große Dateien zu importieren, allerdings kann es "
"Import abbrechen, wenn die maximale PHP-Scriptlaufzeit erreicht wird. <i>"
"(Damit ist es möglich, große Dateien zu importieren, allerdings kann es "
"Transaktionen zerstören.)</i>"
#: libraries/display_import.lib.php:296
@ -8654,8 +8652,8 @@ msgid ""
"reloaded between servers in different time zones)</i>"
msgstr ""
"TIMESTAMP-Spalten als UTC exportieren <i>(damit können TIMESTAMP-Spalten ex- "
"und importiert werden, auch wenn die Server in verschiedenen Zeitzonen "
"sind)</i>"
"und importiert werden, auch wenn die Server in verschiedenen Zeitzonen sind)"
"</i>"
#: libraries/plugins/export/ExportSql.class.php:1210
msgid "Constraints for dumped tables"
@ -10565,21 +10563,21 @@ msgstr "Benutzer"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Server Version"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Datenbank-Server"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Tabellen-Kommentar"
#: libraries/server_privileges.lib.php:3260
@ -11656,8 +11654,8 @@ msgid ""
msgstr ""
"Wie oft eine Tabellensperre nicht sofort erlangt werden konnte und gewartet "
"werden musste. Wenn dieser Wert hoch ist und Sie Performance-Probleme haben, "
"sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre "
"Tabelle(n) zerteilen oder Replikation benutzen."
"sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle"
"(n) zerteilen oder Replikation benutzen."
#: libraries/server_status_variables.lib.php:733
msgid ""
@ -12691,9 +12689,9 @@ msgid ""
"Otherwise you will be only able to download or display it."
msgstr ""
"Bitte erstellen Sie einen vom Webserver beschreibbaren Ordner [em]config[/"
"em] im phpMyAdmin-Hauptverzeichnis wie in der "
"[doc@setup_script]Dokumentation[/doc] beschrieben. Ansonsten können Sie die "
"Konfiguration nur herunterladen bzw. anzeigen."
"em] im phpMyAdmin-Hauptverzeichnis wie in der [doc@setup_script]Dokumentation"
"[/doc] beschrieben. Ansonsten können Sie die Konfiguration nur herunterladen "
"bzw. anzeigen."
#: setup/frames/index.inc.php:60
msgid ""
@ -12954,8 +12952,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Sie haben die [kbd]config[/kbd] Authentifizierung gewählt und einen "
"Benutzernamen und Passwort für Auto-Login eingegeben, was für Server im "
@ -14996,15 +14994,14 @@ msgstr "concurrent_insert ist auf 0 gesetzt"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Wird dies auf [kbd]nested[/kbd] gesetzt, so wird der Alias des "
#~ "Tabellennamens nur benutzt, um die Tabellen gemäß der "
#~ "$cfg['LeftFrameTableSeparator'] Direktive zu teilen bzw. zu "
#~ "verschachteln. Nur der Ordner erhält den Alias, der Tabellename bleibt "
#~ "unverändert"
#~ "Tabellennamens nur benutzt, um die Tabellen gemäß der $cfg"
#~ "['LeftFrameTableSeparator'] Direktive zu teilen bzw. zu verschachteln. "
#~ "Nur der Ordner erhält den Alias, der Tabellename bleibt unverändert"
#~ msgid "Display table comment instead of its name"
#~ msgstr "Zeige Tabellen-Kommentar anstelle des Namens"

131
po/el.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 07:46+0200\n"
"Last-Translator: Panagiotis Papazoglou <papaz_p@yahoo.com>\n"
"Language-Team: Greek <http://l10n.cihar.com/projects/phpmyadmin/master/el/>\n"
@ -4348,8 +4348,8 @@ msgstr "Επεξεργασία στηλών CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Χρησιμοποιήστε το φιλικό προς το χρήστη πρόγραμμα επεξεργασίας για την "
"επεξεργασία ερωτημάτων SQL ([a@http://codemirror.net/]CodeMirror[/a]) με "
@ -4886,9 +4886,8 @@ msgstr "Τίτλοι σελίδας"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Ορίστε το κείμενο του τίτλου στο φυλλομετρητή σας. Δείτε την "
"[doc@cfg_TitleTable]τεκμηρίωση[/doc] για μαγικά κείμενα που μπορούν να "
@ -5015,9 +5014,9 @@ msgid ""
msgstr ""
"Αν θέλετε να χρησιμοποιήσετε την υπηρεσία Εγκυροποίησης SQL, πρέπει να "
"γνωρίζετε ότι [strong]όλες οι δηλώσεις SQL αποθηκεύονται ανώνυμα για "
"στατιστικούς λόγους[/strong].[br][em][a@http://sqlvalidator.mimer."
"com/]Εγκυροποιητής SQL Mimer[/a], Πνευματικά Δικαιώματα 2002 Upright "
"Database Technology. Με επιφύλαξη παντός δικαιώματος.[/em]"
"στατιστικούς λόγους[/strong].[br][em][a@http://sqlvalidator.mimer.com/]"
"Εγκυροποιητής SQL Mimer[/a], Πνευματικά Δικαιώματα 2002 Upright Database "
"Technology. Με επιφύλαξη παντός δικαιώματος.[/em]"
#: libraries/config/messages.inc.php:222
msgid "Startup"
@ -5330,8 +5329,8 @@ msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
"Ο αριθμός των bytes που επιτρέπεται να δεσμευσει ένας κώδικας, π.χ. "
"[kbd]32M[/kbd] ([kbd]0[/kbd] για απεριόριστη)"
"Ο αριθμός των bytes που επιτρέπεται να δεσμευσει ένας κώδικας, π.χ. [kbd]32M"
"[/kbd] ([kbd]0[/kbd] για απεριόριστη)"
#: libraries/config/messages.inc.php:298
msgid "Memory limit"
@ -5714,8 +5713,8 @@ msgstr "Πίνακας σελιδοδεικτών"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Αφήστε κενό για να μη υπάρχουν σχόλια/τύποι mime στις στήλες, προτείνεται: "
"[kbd]pma_column_info[/kbd]"
@ -5790,8 +5789,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Αφήστε το κενό για καμία υποστήριξη Σχεδιαστή, προτείνεται: "
"[kbd]pma_designer_coords[/kbd]"
"Αφήστε το κενό για καμία υποστήριξη Σχεδιαστή, προτείνεται: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5832,8 +5831,8 @@ msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
msgstr ""
"Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL, προτείνεται: "
"[kbd]pma_history[/kbd]"
"Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL, προτείνεται: [kbd]"
"pma_history[/kbd]"
#: libraries/config/messages.inc.php:404
msgid "SQL query history table"
@ -5897,8 +5896,8 @@ msgstr "Κωδικός πρόσβασης για ρυθμισμένη επικύ
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Αφήστε το κενό για μη υποστήριξη σχεδίου PDF, προτείνεται: "
"[kbd]pma__pdf_pages[/kbd]"
"Αφήστε το κενό για μη υποστήριξη σχεδίου PDF, προτείνεται: [kbd]"
"pma__pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -5942,8 +5941,8 @@ msgstr "Πρόσφατα χρησιμοποιημένος πίνακας"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Αφήστε το κενό για να μην υπάρχει υποστήριξη [a@http://wiki.phpmyadmin.net/"
"pma/relation]συνδέσμων-συσχετίσεων[/a], προτείνεται: [kbd]pma__relation[/kbd]"
@ -5962,8 +5961,8 @@ msgstr "Εντολή SHOW DATABASES"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Δείτε τους [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]τύπους "
"επικύρωσης[/a] για ένα παράδειγμα"
@ -5999,8 +5998,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Αφήστε το κενό για να μην υποστηρίζεται σχέδιο PDF. Προτείνεται: "
"[kbd]pma__table_coords[/kbd]"
"Αφήστε το κενό για να μην υποστηρίζεται σχέδιο PDF. Προτείνεται: [kbd]"
"pma__table_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6078,8 +6077,8 @@ msgstr "Δηλώσεις προς παρακολούθηση"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Αφήστε το κενό για μη υποστήριξη ιστορικού ερωτημάτων SQL , προτείνεται: "
"[kbd]pma__tracking[/kbd]"
@ -6102,11 +6101,11 @@ msgstr "Αυτόματη δημιουργία εκδόσεων"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: "
"[kbd]pma__userconfig[/kbd]"
"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: [kbd]"
"pma__userconfig[/kbd]"
#: libraries/config/messages.inc.php:454
msgid "User preferences storage table"
@ -6115,14 +6114,14 @@ msgstr "Πίνακας αποθήκευσης προτιμήσεων χρήστ
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: "
"[kbd]pma__userconfig[/kbd]"
"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: [kbd]"
"pma__userconfig[/kbd]"
#: libraries/config/messages.inc.php:456
#, fuzzy
@ -6133,14 +6132,14 @@ msgstr "Χρήση Πινάκων"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: "
"[kbd]pma__userconfig[/kbd]"
"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: [kbd]"
"pma__userconfig[/kbd]"
#: libraries/config/messages.inc.php:458
#, fuzzy
@ -6151,14 +6150,14 @@ msgstr "Χρήση Οικείου Πίνακα"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
msgstr ""
"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: "
"[kbd]pma__userconfig[/kbd]"
"Αφήστε το κενό για μη αποθήκευση των ρυθμίσεων χρήστη, προτείνεται: [kbd]"
"pma__userconfig[/kbd]"
#: libraries/config/messages.inc.php:460
msgid "Hidden navigation items table"
@ -6369,8 +6368,8 @@ msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
"Αν έχετε ένα προσαρμοσμένο όνομα χρήστη, ορίστε το εδώ (προεπιλογή:"
"[kbd]anonymous[/kbd])"
"Αν έχετε ένα προσαρμοσμένο όνομα χρήστη, ορίστε το εδώ (προεπιλογή:[kbd]"
"anonymous[/kbd])"
#: libraries/config/messages.inc.php:506 tbl_tracking.php:559
#: tbl_tracking.php:621
@ -6538,8 +6537,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
"Ενεργοποίηση της συμπίεσης [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] για λειτουργίες εισαγωγής και εξαγωγής"
"Ενεργοποίηση της συμπίεσης [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]"
"ZIP[/a] για λειτουργίες εισαγωγής και εξαγωγής"
#: libraries/config/messages.inc.php:540
msgid "ZIP"
@ -10381,21 +10380,21 @@ msgstr "Χρήστες"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Έκδοση διακομιστή"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Διακομιστής βάσης δεδομένων"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Σχόλια πίνακα"
#: libraries/server_privileges.lib.php:3260
@ -12457,9 +12456,9 @@ msgid ""
"Otherwise you will be only able to download or display it."
msgstr ""
"Δημιουργήστε εγγράψιμο φάκελο διακομιστή ιστού [em]config[/em] στο φάκελο "
"μέγιστου επιπέδου phpMyAdmin όπως περιγράφετε στην "
"[doc@setup_script]τεκμηρίωση[/doc]. Διαφορετικά, θα μπορείτε μόνο να τον "
"λάβετε ή να τον προβάλετε."
"μέγιστου επιπέδου phpMyAdmin όπως περιγράφετε στην [doc@setup_script]"
"τεκμηρίωση[/doc]. Διαφορετικά, θα μπορείτε μόνο να τον λάβετε ή να τον "
"προβάλετε."
#: setup/frames/index.inc.php:60
msgid ""
@ -12476,8 +12475,8 @@ msgid ""
"If your server is also configured to accept HTTPS requests follow [a@%s]this "
"link[/a] to use a secure connection."
msgstr ""
"Αν ο διακομιστής σας έχει ρυθμιστεί να δέχεται αιτήσεις HTTPS πατήστε [a@"
"%s]αυτόν τον σύνδεσμο[/a] για χρήση ασφαλούς σύνδεσης."
"Αν ο διακομιστής σας έχει ρυθμιστεί να δέχεται αιτήσεις HTTPS πατήστε [a@%s]"
"αυτόν τον σύνδεσμο[/a] για χρήση ασφαλούς σύνδεσης."
#: setup/frames/index.inc.php:68
msgid "Insecure connection"
@ -12717,14 +12716,14 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Ορίζετε τον τύπο πιστοποίησης [kbd]ρύθμισης[/kbd] και περιλαμβάνει όνομα "
"χρήστη και κωδικό πρόσβασης για αυτόματη σύνδεση, αν και δεν προτείνεται. "
"Όποιος γνωρίζει ή υποθέτει τη διεύθυνση URL του phpMyAdmin μπορεί να έχει "
"άμεση πρόσβαση. Ορίστε τον %sτύπο πιστοποίησης%s σε [kbd]cookie[/kbd] ή "
"[kbd]http[/kbd]."
"άμεση πρόσβαση. Ορίστε τον %sτύπο πιστοποίησης%s σε [kbd]cookie[/kbd] ή [kbd]"
"http[/kbd]."
#: setup/lib/index.lib.php:236
#, php-format
@ -14771,9 +14770,9 @@ msgstr "Το concurrent_insert έχει οριστεί στο 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Όταν οριστεί αυτό σε [kbd]nested[/kbd], η ετικέτα του ονόματος του πίνακα "
#~ "χρησιμοποιείτε μόνο για το χώρισμα/μάζεμα των πινάκων σύμφωνα με την "

View File

@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-05-31 14:26+0200\n"
"Last-Translator: Robert Readman <robert_readman@hotmail.com>\n"
"Language-Team: English (United Kingdom) <http://l10n.cihar.com/projects/"
@ -4353,11 +4353,11 @@ msgstr "CHAR columns editing"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
#: libraries/config/messages.inc.php:33
msgid "Enable CodeMirror"
@ -4901,13 +4901,11 @@ msgstr "Page titles"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
#: libraries/config/messages.inc.php:194
#: libraries/navigation/NavigationHeader.class.php:209
@ -5713,11 +5711,11 @@ msgstr "Bookmark table"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
#: libraries/config/messages.inc.php:383
msgid "Column information table"
@ -5938,11 +5936,11 @@ msgstr "Recently used table"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
#: libraries/config/messages.inc.php:425
msgid "Relation table"
@ -5958,11 +5956,11 @@ msgstr "SHOW DATABASES command"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
#: libraries/config/messages.inc.php:429
msgid "Signon session name"
@ -6075,11 +6073,11 @@ msgstr "Statements to track"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
#: libraries/config/messages.inc.php:450
msgid "SQL query tracking table"
@ -6099,11 +6097,11 @@ msgstr "Automatically create versions"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
#: libraries/config/messages.inc.php:454
msgid "User preferences storage table"
@ -6112,14 +6110,14 @@ msgstr "User preferences storage table"
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
#: libraries/config/messages.inc.php:456
#, fuzzy
@ -6130,14 +6128,14 @@ msgstr "Use Tables"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
#: libraries/config/messages.inc.php:458
#, fuzzy
@ -6148,14 +6146,14 @@ msgstr "Use Host Table"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
msgstr ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
#: libraries/config/messages.inc.php:460
msgid "Hidden navigation items table"
@ -10364,21 +10362,21 @@ msgstr "Users"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Server version"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Database server"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Table comments"
#: libraries/server_privileges.lib.php:3260
@ -12674,14 +12672,14 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
#: setup/lib/index.lib.php:236
#, php-format
@ -14641,14 +14639,14 @@ msgstr "concurrent_insert is set to 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgid "Display table comment instead of its name"
#~ msgstr "Display table comment instead of its name"

124
po/es.po
View File

@ -3257,8 +3257,8 @@ msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
"Falló la limpieza de las preferencia de interfaz de tablas (ver "
"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)"
"Falló la limpieza de las preferencia de interfaz de tablas (ver $cfg"
"['Servers'][$i]['MaxTableUiprefs'] %s)"
#: libraries/Table.class.php:1620
#, php-format
@ -4307,8 +4307,8 @@ msgid ""
"cross-frame scripting attacks"
msgstr ""
"Habilitar esto permite que una página en un dominio distinto llame a "
"phpMyAdmin dentro de un frame, y es un potencial [strong]agujero de "
"seguridad[/strong] que permite ataques de cross-frame scripting"
"phpMyAdmin dentro de un frame, y es un potencial [strong]agujero de seguridad"
"[/strong] que permite ataques de cross-frame scripting"
#: libraries/config/messages.inc.php:20
msgid "Allow third party framing"
@ -4366,8 +4366,8 @@ msgid ""
"kbd] - allows newlines in columns"
msgstr ""
"Define qué tipo de control de edición se debe usar para los campos CHAR y "
"VARCHAR; [kbd]input[/kbd] - permite limitar la longitud del input, "
"[kbd]textarea[/kbd] - permite líneas nuevas en los campos"
"VARCHAR; [kbd]input[/kbd] - permite limitar la longitud del input, [kbd]"
"textarea[/kbd] - permite líneas nuevas en los campos"
#: libraries/config/messages.inc.php:31
msgid "CHAR columns editing"
@ -4375,8 +4375,8 @@ msgstr "Edición de columnas CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Utilizar el editor SQL ([a@http://codemirror.net/]CodeMirror[/a]) con "
"resaltado de sintáxis y números de línea"
@ -4919,9 +4919,8 @@ msgstr "Títulos de página"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Especificar el texto de la barra de título del navegador. Consulte la "
"[doc@cfg_TitleTable]documentación[/doc] para ver las palabras mágicas que "
@ -5046,8 +5045,8 @@ msgid ""
"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
msgstr ""
"Si quiere usar el servicio de Validación de SQL, debería saber que "
"[strong]todas las sentencias SQL son almacenadas de forma anónima para uso "
"Si quiere usar el servicio de Validación de SQL, debería saber que [strong]"
"todas las sentencias SQL son almacenadas de forma anónima para uso "
"estadístico[/strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL "
"Validator[/a], Copyright 2002 Upright Database Technology.Todos los derechos "
"reservados.[/em]"
@ -5747,11 +5746,11 @@ msgstr "Agregar tabla a favoritos"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Dejar en blanco para evitar comentarios/tipos MIME en celdas, sugerido: "
"[kbd]pma__column_info[/kbd]"
"Dejar en blanco para evitar comentarios/tipos MIME en celdas, sugerido: [kbd]"
"pma__column_info[/kbd]"
#: libraries/config/messages.inc.php:383
msgid "Column information table"
@ -5822,8 +5821,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Dejar en blanco para evitar el soporte de diseñador, sugerido: "
"[kbd]pma__designer_coords[/kbd]"
"Dejar en blanco para evitar el soporte de diseñador, sugerido: [kbd]"
"pma__designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5930,8 +5929,8 @@ msgstr "Contraseña para config auth"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Dejar en blanco para evitar soporte para esquema en PDF, sugerido: "
"[kbd]pma__pdf_pages[/kbd]"
"Dejar en blanco para evitar soporte para esquema en PDF, sugerido: [kbd]"
"pma__pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -5945,8 +5944,8 @@ msgid ""
msgstr ""
"Base de datos usada para relaciones, favoritos, y características de los "
"PDF. Ver [a@http://wiki.cihar.com/pma/pmadb]pmadb[/a] para información "
"completa. Deje en blanco para que no exita soporte. Predeterminado: "
"[kbd]phpmyadmin[/kbd]"
"completa. Deje en blanco para que no exita soporte. Predeterminado: [kbd]"
"phpmyadmin[/kbd]"
#: libraries/config/messages.inc.php:419
msgid "Database name"
@ -5976,8 +5975,8 @@ msgstr "Tabla recientemente utilizada"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Deje en blanco para no dar soporte [a@http://wiki.phpmyadmin.net/pma/"
"relation]relation-links[/a], de manera predeterminada: [kbd]pma__relation[/"
@ -5997,8 +5996,8 @@ msgstr "Comando SHOW DATABASES"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Ver [a@http://wiki.cihar.com/pma/auth_types#signon]tipos de autenticación[/"
"a] para conocer un ejemplo"
@ -6034,8 +6033,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Dejar en blanco para evitar soporte de esquema en PDF, sugerido: "
"[kbd]pma__table_coords[/kbd]"
"Dejar en blanco para evitar soporte de esquema en PDF, sugerido: [kbd]"
"pma__table_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6114,8 +6113,8 @@ msgstr "Sentencias a hacer seguimiento"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Deje en blanco para eliminar soporte de seguimiento de consultas SQL, valor "
"sugerido: [kbd]pma__tracking[/kbd]"
@ -6138,8 +6137,8 @@ msgstr "Crear versiones automáticamente"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Deje en blanco para evitar el almacenamiento de preferencias en la base de "
"datos, valor sugerido: [kbd]pma__userconfig[/kbd]"
@ -6150,11 +6149,11 @@ msgstr "Tabla de almacenamiento de preferencias de usuario"
#: libraries/config/messages.inc.php:455
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Deje en blanco para desactivar la funcionalidad de menús configurables, "
"valor sugerido: [kbd]pma__users[/kbd]"
@ -6166,11 +6165,11 @@ msgstr "Tabla de usuarios"
#: libraries/config/messages.inc.php:457
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Deje en blanco para desactivar la funcionalidad de menús configurables, "
"valor sugerido: [kbd]pma__usergroups[/kbd]"
@ -6182,8 +6181,8 @@ msgstr "Usar la tabla de groupos («groups»)"
#: libraries/config/messages.inc.php:459
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6314,8 +6313,8 @@ msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
"Mostrar enlace a salida de [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
"Mostrar enlace a salida de [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a]"
#: libraries/config/messages.inc.php:485
msgid "Show phpinfo() link"
@ -6565,8 +6564,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
"Habilite la compresión [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] para las operaciones de importación y exportación"
"Habilite la compresión [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP"
"[/a] para las operaciones de importación y exportación"
#: libraries/config/messages.inc.php:540
msgid "ZIP"
@ -8577,8 +8576,8 @@ msgid ""
"The first line of the file contains the table column names <i>(if this is "
"unchecked, the first line will become part of the data)</i>"
msgstr ""
"La primer línea del archivo contiene los nombres de columna de la tabla "
"<i>(si no está activado la primera línea será parte de los datos)</i>"
"La primer línea del archivo contiene los nombres de columna de la tabla <i>"
"(si no está activado la primera línea será parte de los datos)</i>"
#: libraries/plugins/import/ImportCsv.class.php:72
msgid ""
@ -8641,8 +8640,8 @@ msgstr "El formato de los datos mediawiki no es válido en la línea: <br />%s."
#: libraries/plugins/import/ImportOds.class.php:88
msgid "Import percentages as proper decimals <i>(ex. 12.00% to .12)</i>"
msgstr ""
"Importar porcentakes como decimales propios <i>(por ejemplo: 12.00% "
"como .12)</i>"
"Importar porcentakes como decimales propios <i>(por ejemplo: 12.00% como .12)"
"</i>"
#: libraries/plugins/import/ImportOds.class.php:94
msgid "Import currencies <i>(ex. $5.00 to 5.00)</i>"
@ -8732,8 +8731,8 @@ msgstr ""
"opción es para especificar un formato de fecha/hora diferente. La tercera "
"opción determina si usted quiere ver la fecha local o la UTC (use las "
"cadenas \"local\" o \"utc\"). Según eso, el formato de la fecha tendrá un "
"valor diferente - para \"local\" mire la documentación de la función "
"strftime() de PHP y para \"utc\" se hace usando la función gmdate()."
"valor diferente - para \"local\" mire la documentación de la función strftime"
"() de PHP y para \"utc\" se hace usando la función gmdate()."
#: libraries/plugins/transformations/abstract/DownloadTransformationsPlugin.class.php:31
msgid ""
@ -8777,9 +8776,8 @@ msgid ""
"Displays the contents of the column as-is, without running it through "
"htmlspecialchars(). That is, the column is assumed to contain valid HTML."
msgstr ""
"Miestra el contenido de la columna como es, sin pasarlo por "
"htmlspecialchars(). Esto quiere decir que se asume que la columna contiene "
"HTML válido."
"Miestra el contenido de la columna como es, sin pasarlo por htmlspecialchars"
"(). Esto quiere decir que se asume que la columna contiene HTML válido."
#: libraries/plugins/transformations/abstract/HexTransformationsPlugin.class.php:31
msgid ""
@ -10412,19 +10410,19 @@ msgstr "Groupos de usuario"
#: libraries/server_privileges.lib.php:3236
#: libraries/server_privileges.lib.php:3402
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Pestañas a nivel servidor"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Pestañas a nivel base de datos"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Pestañas a nivel tabla"
#: libraries/server_privileges.lib.php:3260
@ -12741,15 +12739,15 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Usted definió el tipo de autenticación [kbd]config[/kbd] e incluyó nombre de "
"usuario y contraseña para iniciar sesión en forma automática, lo que no es "
"una opción deseable para servidores públicos. Cualquiera que conozca o "
"adivine su URL de phpMyAdmin puede acceder directamente a su consola de "
"phpMyAdmin. Cambie al %stipo de autenticación%s a [kbd]cookie[/kbd] o "
"[kbd]http[/kbd]."
"phpMyAdmin. Cambie al %stipo de autenticación%s a [kbd]cookie[/kbd] o [kbd]"
"http[/kbd]."
#: setup/lib/index.lib.php:236
#, php-format

181
po/et.po
View File

@ -5,11 +5,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-29 16:09+0200\n"
"Last-Translator: Kristjan Räts <kristjanrats@gmail.com>\n"
"Language-Team: Estonian "
"<http://l10n.cihar.com/projects/phpmyadmin/master/et/>\n"
"Language-Team: Estonian <http://l10n.cihar.com/projects/phpmyadmin/master/et/"
">\n"
"Language: et\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -1927,7 +1927,6 @@ msgid "Hide Panel"
msgstr "Peida paneel"
#: js/messages.php:369
#| msgid "Show logo in navigation panel"
msgid "Show hidden navigation tree items"
msgstr "Kuva peidetud navigeerimispaneeli elemendid"
@ -2645,13 +2644,11 @@ msgstr ""
#: libraries/DisplayResults.class.php:4921
#, php-format
#| msgid "Showing rows"
msgid "Showing rows %1s - %2s"
msgstr "Kuvatakse read %1s - %2s"
#: libraries/DisplayResults.class.php:4933
#, php-format
#| msgid "total"
msgid "%d total"
msgstr "kokku: %d"
@ -4287,8 +4284,8 @@ msgstr "CHAR veergude muutmine"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Kasuta SQL päringute ([a@http://codemirror.net/]CodeMirror[/a]) muutmiseks "
"kasutajasõbralikku redigeerijat, millel on süntaksi esiletõstmise ja ridade "
@ -4683,8 +4680,8 @@ msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
"Vali sorteerimise järjekord võõrvõtme rippmenüü kasti üksustele. "
"[kbd]content[/kbd] on viidatud andmed, [kbd]id[/kbd] on võtme väärtus"
"Vali sorteerimise järjekord võõrvõtme rippmenüü kasti üksustele. [kbd]content"
"[/kbd] on viidatud andmed, [kbd]id[/kbd] on võtme väärtus"
#: libraries/config/messages.inc.php:151
msgid "Foreign key dropdown order"
@ -4824,13 +4821,12 @@ msgstr "Lehe pealkirjad"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Täpsusta veebilehitseja pealkirja. Vaata "
"[doc@cfg_TitleTable]dokumentatsioonist[/doc], kuidas kasutada maagilisi "
"sõne, mida saab kasutada eriliste väärtuste saamiseks."
"Täpsusta veebilehitseja pealkirja. Vaata [doc@cfg_TitleTable]"
"dokumentatsioonist[/doc], kuidas kasutada maagilisi sõne, mida saab kasutada "
"eriliste väärtuste saamiseks."
#: libraries/config/messages.inc.php:194
#: libraries/navigation/NavigationHeader.class.php:209
@ -4951,9 +4947,9 @@ msgid ""
"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
msgstr ""
"Kui soovid kasutada SQL valideerija teenust, siis peaksid teadma, et "
"[strong]kõiki SQL käskusid salvestatakse anonüümselt statistika eesmärgil[/"
"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
"Kui soovid kasutada SQL valideerija teenust, siis peaksid teadma, et [strong]"
"kõiki SQL käskusid salvestatakse anonüümselt statistika eesmärgil[/strong]."
"[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
"Autoriõigus 2002 Upright Database Technology. Kõik õigused on kaitstud.[/em]"
#: libraries/config/messages.inc.php:222
@ -5622,8 +5618,8 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
"Jäta tühjaks, kui puudub [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]järjehoidja[/a] tugi, soovitatav: [kbd]pma__bookmark[/kbd]"
"Jäta tühjaks, kui puudub [a@http://wiki.phpmyadmin.net/pma/bookmark]"
"järjehoidja[/a] tugi, soovitatav: [kbd]pma__bookmark[/kbd]"
#: libraries/config/messages.inc.php:381
msgid "Bookmark table"
@ -5631,11 +5627,11 @@ msgstr "Järjehoidja tabel"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Jäta tühjaks, kui puuduvad kommentaarid/mime-tüübid, soovitatav: "
"[kbd]pma__column_info[/kbd]"
"Jäta tühjaks, kui puuduvad kommentaarid/mime-tüübid, soovitatav: [kbd]"
"pma__column_info[/kbd]"
#: libraries/config/messages.inc.php:383
msgid "Column information table"
@ -5704,8 +5700,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Jäta tühjaks, kui puudub kujundaja tugi, soovitatav: "
"[kbd]pma__designer_coords[/kbd]"
"Jäta tühjaks, kui puudub kujundaja tugi, soovitatav: [kbd]"
"pma__designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5716,9 +5712,8 @@ msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
"Rohkem infot aadressilt [a@https://sourceforge.net/p/phpmyadmin/"
"bugs/2606/]PMA bug tracker[/a] ja [a@http://bugs.mysql.com/19588]MySQL Bugs[/"
"a]"
"Rohkem infot aadressilt [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]"
"PMA bug tracker[/a] ja [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
#: libraries/config/messages.inc.php:398
msgid "Disable use of INFORMATION_SCHEMA"
@ -5746,8 +5741,8 @@ msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
msgstr ""
"Jäta tühjaks, kuid puudub SQL päringu ajaloo tugi, soovitatav: "
"[kbd]pma__history[/kbd]"
"Jäta tühjaks, kuid puudub SQL päringu ajaloo tugi, soovitatav: [kbd]"
"pma__history[/kbd]"
#: libraries/config/messages.inc.php:404
msgid "SQL query history table"
@ -5826,8 +5821,8 @@ msgid ""
msgstr ""
"Andmebaas, mida kasutada seoste, järjehoidjate ja PDF võimaluste "
"säilitamiseks. Lisateavet leiad aadressilt [a@http://wiki.phpmyadmin.net/pma/"
"pmadb]pmadb[/a]. Kui tugi puudub, siis jäta tühjaks, soovitatav: "
"[kbd]phpmyadmin[/kbd]"
"pmadb]pmadb[/a]. Kui tugi puudub, siis jäta tühjaks, soovitatav: [kbd]"
"phpmyadmin[/kbd]"
#: libraries/config/messages.inc.php:419
msgid "Database name"
@ -5857,8 +5852,8 @@ msgstr "Hiljuti kasutatud tabel"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Jäta tühjaks, kui puudub [a@http://wiki.phpmyadmin.net/pma/relation]seoste "
"linkide[/a] tugi, soovitatav: [kbd]pma__relation[/kbd]"
@ -5877,11 +5872,11 @@ msgstr "SHOW DATABASES käsk"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Vaata näiteks [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]autentimise tüüpe[/a]"
"Vaata näiteks [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]"
"autentimise tüüpe[/a]"
#: libraries/config/messages.inc.php:429
msgid "Signon session name"
@ -5914,8 +5909,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Jäta tühjaks, kui puudub PDF skeemi tugi, soovitatav: "
"[kbd]pma__table_coords[/kbd]"
"Jäta tühjaks, kui puudub PDF skeemi tugi, soovitatav: [kbd]pma__table_coords"
"[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -5991,11 +5986,11 @@ msgstr "Käsud, mida jälgida"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Jäta tühjaks, kui puudub SQL päringu jälgimise tugi, soovitatav: "
"[kbd]pma__tracking[/kbd]"
"Jäta tühjaks, kui puudub SQL päringu jälgimise tugi, soovitatav: [kbd]"
"pma__tracking[/kbd]"
#: libraries/config/messages.inc.php:450
msgid "SQL query tracking table"
@ -6015,52 +6010,41 @@ msgstr "Loo versioonid automaatselt"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Jäta tühjaks, kui kasutaja eelistusi andmebaasis ei hoita, soovitatav: "
"[kbd]pma__userconfig[/kbd]"
"Jäta tühjaks, kui kasutaja eelistusi andmebaasis ei hoita, soovitatav: [kbd]"
"pma__userconfig[/kbd]"
#: libraries/config/messages.inc.php:454
msgid "User preferences storage table"
msgstr "Kasutaja eelistusi säilitav tabel"
#: libraries/config/messages.inc.php:455
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Jäta tühjaks, et keelata konfigureeritavad menüüd, soovitatav: "
"[kbd]pma__users[/kbd]"
"Jäta tühjaks, et keelata konfigureeritavad menüüd, soovitatav: [kbd]"
"pma__users[/kbd]"
#: libraries/config/messages.inc.php:456
#| msgid "Use Tables"
msgid "Users table"
msgstr "Kasutajate tabel"
#: libraries/config/messages.inc.php:457
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Jäta tühjaks, et keelata konfigureeritavad menüüd, soovitatav: "
"[kbd]pma__usergroups[/kbd]"
"Jäta tühjaks, et keelata konfigureeritavad menüüd, soovitatav: [kbd]"
"pma__usergroups[/kbd]"
#: libraries/config/messages.inc.php:458
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Kasutajagruppide tabel"
#: libraries/config/messages.inc.php:459
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6262,8 +6246,8 @@ msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
"Kui sul on enda kasutajanimi, siis täpsusta seda siin (vaikimisi on "
"[kbd]anonymous[/kbd])"
"Kui sul on enda kasutajanimi, siis täpsusta seda siin (vaikimisi on [kbd]"
"anonymous[/kbd])"
#: libraries/config/messages.inc.php:506 tbl_tracking.php:559
#: tbl_tracking.php:621
@ -7606,27 +7590,22 @@ msgid "An error has occured while loading the navigation tree"
msgstr "Navigeerimispuu laadimisel juhtus viga"
#: libraries/navigation/Navigation.class.php:172
#| msgid "Events"
msgid "Events:"
msgstr "Sündmused:"
#: libraries/navigation/Navigation.class.php:173
#| msgid "Functions"
msgid "Functions:"
msgstr "Funktsioonid:"
#: libraries/navigation/Navigation.class.php:174
#| msgid "Procedures"
msgid "Procedures:"
msgstr "Toimingud:"
#: libraries/navigation/Navigation.class.php:175
#| msgid "Tables"
msgid "Tables:"
msgstr "Tabelid:"
#: libraries/navigation/Navigation.class.php:176
#| msgid "Views"
msgid "Views:"
msgstr "Vaated:"
@ -8715,12 +8694,10 @@ msgid "User preferences"
msgstr "Kasutaja eelistused"
#: libraries/relation.lib.php:264
#| msgid "Configuration: %s"
msgid "Configurable menus"
msgstr "Seadistatavad menüüd"
#: libraries/relation.lib.php:275
#| msgid "Reload navigation frame"
msgid "Hide/show navigation items"
msgstr "Peida/kuva navigeerimiselemendid"
@ -10103,7 +10080,6 @@ msgid "Add privileges on the following table:"
msgstr "Lisa õigusi järgnevas tabelis:"
#: libraries/server_privileges.lib.php:2599
#| msgid "Edit server"
msgid "Edit user group"
msgstr "Muuda kasutaja grupp"
@ -10177,36 +10153,36 @@ msgstr "Valitud gruppi ei kuulu mitte ühtegi kasutajat."
#: libraries/server_privileges.lib.php:3229
#: libraries/server_privileges.lib.php:3878
#| msgid "Users"
msgid "User groups"
msgstr "Kasutajate grupid"
#: libraries/server_privileges.lib.php:3236
#: libraries/server_privileges.lib.php:3402
#| msgid "Server version"
msgid "Server level tabs"
#, fuzzy
#| msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Serveri tasemete sakid"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#| msgid "Database server"
msgid "Database level tabs"
#, fuzzy
#| msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Andmebaasi tasemete sakid"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#| msgid "Table comments"
msgid "Table level tabs"
#, fuzzy
#| msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Tabeli tasemete sakid"
#: libraries/server_privileges.lib.php:3260
#| msgid "Views"
msgid "View users"
msgstr "Kuva kasutajad"
#: libraries/server_privileges.lib.php:3288
#: libraries/server_privileges.lib.php:3344
#| msgid "Add user"
msgid "Add user group"
msgstr "Lisa kasutajate grupp"
@ -10216,12 +10192,10 @@ msgid "Edit user group: '%s'"
msgstr "Muuda kasutajate gruppi: '%s'"
#: libraries/server_privileges.lib.php:3363
#| msgid "No privileges."
msgid "User group privileges"
msgstr "Kasutajate grupi õigused"
#: libraries/server_privileges.lib.php:3370
#| msgid "Column names: "
msgid "Group name:"
msgstr "Grupi nimi:"
@ -12188,10 +12162,9 @@ msgid ""
"level directory as described in [doc@setup_script]documentation[/doc]. "
"Otherwise you will be only able to download or display it."
msgstr ""
"Palun loo phpMyAdmini juurkataloogi veebiserveri jaoks kirjutatav "
"[em]config[/em] kaust, nagu on kirjeldatud "
"[doc@setup_script]dokumentatsioonis[/doc]. Muul juhul saad seda ainult alla "
"laadida või vaadata."
"Palun loo phpMyAdmini juurkataloogi veebiserveri jaoks kirjutatav [em]config"
"[/em] kaust, nagu on kirjeldatud [doc@setup_script]dokumentatsioonis[/doc]. "
"Muul juhul saad seda ainult alla laadida või vaadata."
#: setup/frames/index.inc.php:60
msgid ""
@ -12207,8 +12180,8 @@ msgid ""
"If your server is also configured to accept HTTPS requests follow [a@%s]this "
"link[/a] to use a secure connection."
msgstr ""
"Kui sinu server on seadistatud nõustuma ka HTTPS taotlustega, siis ava [a@"
"%s]see link[/a], et teada saada, kuidas kasutada turvalist ühendust."
"Kui sinu server on seadistatud nõustuma ka HTTPS taotlustega, siis ava [a@%s]"
"see link[/a], et teada saada, kuidas kasutada turvalist ühendust."
#: setup/frames/index.inc.php:68
msgid "Insecure connection"
@ -12446,8 +12419,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Sa valisid [kbd]config[/kbd] autentimise tüübi ja kaasasid automaatsele "
"sisselogimisele kasutajanime ja parooli, mis ei ole soovitatav valik "
@ -14420,9 +14393,9 @@ msgstr "concurrent_insert väärtuseks on määratud 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Kui valida selleks [kbd]nested[/kbd], siis tabeli nime aliast kasutatakse "
#~ "sõltuvalt $cfg['LeftFrameTableSeparator'] direktiivist ainult tabelite "
@ -15114,9 +15087,9 @@ msgstr "concurrent_insert väärtuseks on määratud 0"
#~ "Enclose table and field names with backquotes <i>(Protects field and "
#~ "table names formed with special characters or keywords)</i>"
#~ msgstr ""
#~ "Aseta tabeli ja väljade nimed alumise ja ülemise jutumärgi vahele "
#~ "<i>(Kaitseb välja ja tabeli nimesid eriliste sümbolitega või "
#~ "võtmesõnadega vormimise eest)</i>"
#~ "Aseta tabeli ja väljade nimed alumise ja ülemise jutumärgi vahele <i>"
#~ "(Kaitseb välja ja tabeli nimesid eriliste sümbolitega või võtmesõnadega "
#~ "vormimise eest)</i>"
#~ msgid "Create a new index"
#~ msgstr "Loo uus indeks"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-12 15:38+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Basque <http://l10n.cihar.com/projects/phpmyadmin/master/eu/"
@ -4489,8 +4489,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5060,9 +5060,8 @@ msgstr "Orri zenbakia:"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5838,8 +5837,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -6044,8 +6043,8 @@ msgstr "Taula aztertu"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -6063,8 +6062,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6166,8 +6165,8 @@ msgstr "Sententziak"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6187,8 +6186,8 @@ msgstr "Zerbitzariaren bertsioa"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6197,8 +6196,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6209,8 +6208,8 @@ msgstr "Taulak erabili"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10498,21 +10497,21 @@ msgstr "Erabiltzailea"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Zerbitzariaren bertsioa"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Databases"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Datu-baseak"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Taularen iruzkinak"
#: libraries/server_privileges.lib.php:3260
@ -12711,8 +12710,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-01 02:18+0200\n"
"Last-Translator: Hamid Rohani <tazzeh2004@yahoo.com>\n"
"Language-Team: Persian <http://l10n.cihar.com/projects/phpmyadmin/master/fa/"
@ -4332,8 +4332,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4866,9 +4866,8 @@ msgstr "عنوان صفحه"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5625,8 +5624,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5821,8 +5820,8 @@ msgstr "جدول هایی که به تازگی استفاده شده"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5839,8 +5838,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -5937,8 +5936,8 @@ msgstr "جملاتی که باید ردگیری شوند"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -5957,8 +5956,8 @@ msgstr "به صورت خودکار نسخه ایجاد شود"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -5967,8 +5966,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -5979,8 +5978,8 @@ msgstr "بكارگيري جدولها"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10125,21 +10124,21 @@ msgstr "كاربر"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "نسخه سرور"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "سرور پایگاه داده"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "توضيحات جدول"
#: libraries/server_privileges.lib.php:3260
@ -11521,10 +11520,9 @@ msgid ""
"example '\\\\xyz' or 'a\\'b')."
msgstr ""
"اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب "
"استفاده نماييد : 'a','b','c'…<br /> اگر احتياج داشتيد كه از علامت مميز "
"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده "
"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد<br /> (براي مثال'\\\\xyz' "
"يا 'a\\'b')"
"استفاده نماييد : 'a','b','c'…<br /> اگر احتياج داشتيد كه از علامت مميز برعكس"
"(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد ، "
"قبل از آنها علامت (\" \\ \") را بگذاريد<br /> (براي مثال'\\\\xyz' يا 'a\\'b')"
#: libraries/tbl_columns_definition_form.inc.php:110
msgid ""
@ -11558,10 +11556,9 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
"اگر نوع ستون \"enum\" يا \"set\" مي‌باشد ، لطفا براي ورود مقادير از اين قالب "
"استفاده نماييد : 'a','b','c'…<br /> اگر احتياج داشتيد كه از علامت مميز "
"برعكس(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده "
"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد<br /> (براي مثال'\\\\xyz' "
"يا 'a\\'b')"
"استفاده نماييد : 'a','b','c'…<br /> اگر احتياج داشتيد كه از علامت مميز برعكس"
"(بك‌اسلش) (\" \\ \") يا نقل‌قول تكي (\" ' \") در آن مقادير استفاده نماييد ، "
"قبل از آنها علامت (\" \\ \") را بگذاريد<br /> (براي مثال'\\\\xyz' يا 'a\\'b')"
#: libraries/tbl_columns_definition_form.inc.php:412
msgid "ENUM or SET data too long?"
@ -12296,8 +12293,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

167
po/fi.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 11:12+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Finnish <http://l10n.cihar.com/projects/phpmyadmin/master/fi/"
@ -4357,8 +4357,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for "
"import and export operations"
msgstr ""
"Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/"
"Bzip2]bzip2[/a]-pakkausta"
"Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/Bzip2]"
"bzip2[/a]-pakkausta"
#: libraries/config/messages.inc.php:29
msgid "Bzip2"
@ -4371,8 +4371,8 @@ msgid ""
"kbd] - allows newlines in columns"
msgstr ""
"Määrittää minkä tyyppistä muokkaustoimintoa tulisi käyttää CHAR- ja VARCHAR-"
"kentissä; [kbd]input[/kbd] - sallii syötön pituuden rajoittamisen, "
"[kbd]textarea[/kbd] - sallii kentissä uudet rivit"
"kentissä; [kbd]input[/kbd] - sallii syötön pituuden rajoittamisen, [kbd]"
"textarea[/kbd] - sallii kentissä uudet rivit"
#: libraries/config/messages.inc.php:31
msgid "CHAR columns editing"
@ -4380,8 +4380,8 @@ msgstr "CHAR-sarakkeiden muokkaus"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4933,9 +4933,8 @@ msgstr "Sivun otsikot"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5120,8 +5119,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations"
msgstr ""
"Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/"
"Gzip]gzip[/a]-pakkausta"
"Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/Gzip]gzip"
"[/a]-pakkausta"
#: libraries/config/messages.inc.php:237
msgid "GZip"
@ -5742,8 +5741,8 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
"Jätä tyhjäksi, jos et halua [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]kirjanmerkki[/a]tukea; oletusarvo: [kbd]pma_bookmark[/kbd]"
"Jätä tyhjäksi, jos et halua [a@http://wiki.phpmyadmin.net/pma/bookmark]"
"kirjanmerkki[/a]tukea; oletusarvo: [kbd]pma_bookmark[/kbd]"
#: libraries/config/messages.inc.php:381
msgid "Bookmark table"
@ -5752,11 +5751,11 @@ msgstr "Kirjanmerkkitaulu"
#: libraries/config/messages.inc.php:382
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
#| "[kbd]pma_column_info[/kbd]"
#| "Leave blank for no column comments/mime types, suggested: [kbd]"
#| "pma_column_info[/kbd]"
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Jätä tyhjäksi, jos et halua sarakkeiden kommentteja ja mime-tyyppejä; "
"oletusarvo: [kbd]pma_column_info[/kbd]"
@ -5792,8 +5791,8 @@ msgid ""
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
"Erityinen MySQL-käyttäjä, jolle on määritetty rajatut käyttöoikeudet; "
"lisätietoja saatavilla [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wikissä[/a]"
"lisätietoja saatavilla [a@http://wiki.phpmyadmin.net/pma/controluser]wikissä"
"[/a]"
#: libraries/config/messages.inc.php:390
msgid "Control user"
@ -5831,8 +5830,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Jätä tyhjäksi, jos et halua Suunnittelija-taulua; oletusarvo: "
"[kbd]pma_designer_coords[/kbd]"
"Jätä tyhjäksi, jos et halua Suunnittelija-taulua; oletusarvo: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5871,14 +5870,14 @@ msgstr "Piilota tietokannat"
#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
#| "[kbd]pma_history[/kbd]"
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: "
"[kbd]pma_history[/kbd]"
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]"
"pma_history[/kbd]"
#: libraries/config/messages.inc.php:404
msgid "SQL query history table"
@ -5947,8 +5946,8 @@ msgstr "Config-todennuksen salasana"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: "
"[kbd]pma_pdf_pages[/kbd]"
"Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea, oletusarvo: [kbd]"
"pma_pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -5986,8 +5985,8 @@ msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]"
msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: "
"[kbd]pma_recent[/kbd]"
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]"
"pma_recent[/kbd]"
#: libraries/config/messages.inc.php:423
msgid "Recently used table"
@ -5999,11 +5998,11 @@ msgstr "Viimeisimmäksi käytetty taulu"
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
#| "links[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Jätä tyhjäksi, jos et halua [a@http://wiki.phpmyadmin.net/pma/"
"relation]relaatiolinkki[/a]tukea; oletusarvo: [kbd]pma_relation[/kbd]"
"Jätä tyhjäksi, jos et halua [a@http://wiki.phpmyadmin.net/pma/relation]"
"relaatiolinkki[/a]tukea; oletusarvo: [kbd]pma_relation[/kbd]"
#: libraries/config/messages.inc.php:425
msgid "Relation table"
@ -6019,8 +6018,8 @@ msgstr "SHOW DATABASES -käsky"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Katso [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]todennustyyppien[/"
"a] esimerkit"
@ -6060,8 +6059,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea; oletusarvo: "
"[kbd]pma_table_coords[/kbd]"
"Jätä tyhjäksi, jos et halua PDF-kaavioiden tukea; oletusarvo: [kbd]"
"pma_table_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6070,8 +6069,8 @@ msgstr "PDF-kaavio: taulun koordinaatit"
#: libraries/config/messages.inc.php:437
#, fuzzy
#| msgid ""
#| "to describe the display fields, leave blank for no support; gested: "
#| "d]pma_table_info[/kbd]"
#| "to describe the display fields, leave blank for no support; gested: d]"
#| "pma_table_info[/kbd]"
msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]"
@ -6091,8 +6090,8 @@ msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]"
msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: "
"[kbd]pma_table_uiprefs[/kbd]"
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]"
"pma_table_uiprefs[/kbd]"
#: libraries/config/messages.inc.php:440
msgid "UI preferences table"
@ -6139,14 +6138,14 @@ msgstr "Jäljitettävä lauseke"
#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
#| "[kbd]pma_tracking[/kbd]"
#| "Leave blank for no SQL query tracking support, suggested: [kbd]"
#| "pma_tracking[/kbd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: "
"[kbd]pma_history[/kbd]"
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]"
"pma_history[/kbd]"
#: libraries/config/messages.inc.php:450
msgid "SQL query tracking table"
@ -6167,11 +6166,11 @@ msgstr "Automaattisesti luodut versiot"
#| msgid ""
#| "blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: "
"[kbd]pma_history[/kbd]"
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]"
"pma_history[/kbd]"
#: libraries/config/messages.inc.php:454
msgid "User preferences storage table"
@ -6182,11 +6181,11 @@ msgstr ""
#| msgid ""
#| "blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: "
"[kbd]pma_history[/kbd]"
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]"
"pma_history[/kbd]"
#: libraries/config/messages.inc.php:456
#, fuzzy
@ -6199,11 +6198,11 @@ msgstr "Käytä tauluja"
#| msgid ""
#| "blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: "
"[kbd]pma_history[/kbd]"
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]"
"pma_history[/kbd]"
#: libraries/config/messages.inc.php:458
#, fuzzy
@ -6219,8 +6218,8 @@ msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
msgstr ""
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: "
"[kbd]pma_history[/kbd]"
"Jätä tyhjäksi, jos et halua SQL-kyselyhistorian tukea; oletusarvo: [kbd]"
"pma_history[/kbd]"
#: libraries/config/messages.inc.php:460
msgid "Hidden navigation items table"
@ -6570,8 +6569,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
"Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a]-pakkausta"
"Käytä tuonti- ja vientitoiminnoissa [a@http://en.wikipedia.org/wiki/ZIP_"
"(file_format)]ZIP[/a]-pakkausta"
#: libraries/config/messages.inc.php:540
msgid "ZIP"
@ -8852,8 +8851,8 @@ msgstr ""
#: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31
#, fuzzy
#| msgid ""
#| "ys the contents of the field as-is, without running it through "
#| "ecialchars(). That is, the field is assumed to contain valid HTML."
#| "ys the contents of the field as-is, without running it through ecialchars"
#| "(). That is, the field is assumed to contain valid HTML."
msgid ""
"Displays the contents of the column as-is, without running it through "
"htmlspecialchars(). That is, the column is assumed to contain valid HTML."
@ -10610,21 +10609,21 @@ msgstr "Käyttäjät"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Palvelimen versio"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Tietokantapalvelin"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Taulun kommentit"
#: libraries/server_privileges.lib.php:3260
@ -13050,11 +13049,11 @@ msgid ""
msgstr ""
"Jos näet tarpeelliseksi, käytä suojauksen lisäasetuksia eli [a@?"
"page=servers&amp;mode=edit&amp;id=%1$d#tab_Server_config]palvelimen "
"todennusasetuksia[/a] ja [a@?page=form&amp;"
"formset=features#tab_Security]luotettujen välipalvelimien luetteloa[/a]. IP-"
"osoitteeseen perustuva suojaus ei kuitenkaan ole täysin luotettava, mikäli "
"IP-osoite kuuluu Internet-palveluntarjoajalle, johon sinun lisäksesi "
"tuhannet käyttäjät ovat yhteydessä."
"todennusasetuksia[/a] ja [a@?page=form&amp;formset=features#tab_Security]"
"luotettujen välipalvelimien luetteloa[/a]. IP-osoitteeseen perustuva suojaus "
"ei kuitenkaan ole täysin luotettava, mikäli IP-osoite kuuluu Internet-"
"palveluntarjoajalle, johon sinun lisäksesi tuhannet käyttäjät ovat "
"yhteydessä."
#: setup/lib/index.lib.php:234
#, fuzzy, php-format
@ -13068,15 +13067,15 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Asetit [kbd]config[/kbd]-todennustyypin ja sisällytit käyttäjänimen ja "
"salasanan automaattista kirjautumista varten. Tämä ei ole suotava vaihtoehto "
"oikeille palvelimille. Joka tietää tai arvaa phpMyAdmin-osoitteesi pystyy "
"suoraan käyttämään phpMyAdmin-paneeliasi. [a@?page=servers&amp;"
"mode=edit&amp;id=%1$d#tab_Server]Todennustyypiksi[/a] kannattaa asettaa "
"[kbd]cookie[/kbd] tai [kbd]http[/kbd]."
"mode=edit&amp;id=%1$d#tab_Server]Todennustyypiksi[/a] kannattaa asettaa [kbd]"
"cookie[/kbd] tai [kbd]http[/kbd]."
#: setup/lib/index.lib.php:236
#, fuzzy, php-format
@ -15073,14 +15072,14 @@ msgstr "Enim. yhtäaikaisia yhteyksiä"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Kun tälle asetetaan arvo [kbd]nested[/kbd], taulun nimen aliasta "
#~ "käytetään taulujen jakamiseen ja sisäkkäin asettamiseen "
#~ "$cfg['LeftFrameTableSeparator']-asetuksen mukaisesti, jolloin vain "
#~ "kansiota kutsutaan aliaksena, itse taulun nimi pysyy muuttumattomana"
#~ "käytetään taulujen jakamiseen ja sisäkkäin asettamiseen $cfg"
#~ "['LeftFrameTableSeparator']-asetuksen mukaisesti, jolloin vain kansiota "
#~ "kutsutaan aliaksena, itse taulun nimi pysyy muuttumattomana"
#~ msgid "Display table comment instead of its name"
#~ msgstr "Näytä taulun kommentti, ei nimi"

105
po/fr.po
View File

@ -2798,8 +2798,8 @@ msgstr "Erreur inconnue durant le téléchargement."
#: libraries/File.class.php:476
msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]"
msgstr ""
"Erreur lors du déplacement du fichier téléchargé, voir [doc@faq1-11]FAQ "
"1.11[/doc]"
"Erreur lors du déplacement du fichier téléchargé, voir [doc@faq1-11]FAQ 1.11"
"[/doc]"
#: libraries/File.class.php:494
msgid "Error while moving uploaded file."
@ -3241,8 +3241,8 @@ msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
"Echec lors de la tentative de vidage de la table UI Préférences (voir "
"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)"
"Echec lors de la tentative de vidage de la table UI Préférences (voir $cfg"
"['Servers'][$i]['MaxTableUiprefs'] %s)"
#: libraries/Table.class.php:1620
#, php-format
@ -4336,9 +4336,9 @@ msgid ""
"columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/"
"kbd] - allows newlines in columns"
msgstr ""
"Déterminer la méthode d'édition pour les colonnes CHAR et VARCHAR; "
"[kbd]input[/kbd] - permet de limiter la taille, [kbd]textarea[/kbd] - permet "
"la saisie de sauts de lignes"
"Déterminer la méthode d'édition pour les colonnes CHAR et VARCHAR; [kbd]input"
"[/kbd] - permet de limiter la taille, [kbd]textarea[/kbd] - permet la saisie "
"de sauts de lignes"
#: libraries/config/messages.inc.php:31
msgid "CHAR columns editing"
@ -4346,8 +4346,8 @@ msgstr "Édition des colonnes CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Utiliser un éditeur convivial pour les requêtes SQL ([a@http://codemirror."
"net/]CodeMirror[/a]) avec coloration syntaxique et numérotation des lignes"
@ -4888,9 +4888,8 @@ msgstr "Titres de page"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Spécifier le texte de la barre de titre du navigateur. Se référer à la "
"[doc@cfg_TitleTable]documentation[/doc] pour les chaînes magiques pouvant "
@ -5672,9 +5671,9 @@ msgid ""
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
"Le chemin du fichier de configuration pour [a@http://swekey."
"com]l'authentification matérielle Swekey[/a] (ne pas placer sous la racine "
"des documents; suggestion : /etc/swekey.conf)"
"Le chemin du fichier de configuration pour [a@http://swekey.com]"
"l'authentification matérielle Swekey[/a] (ne pas placer sous la racine des "
"documents; suggestion : /etc/swekey.conf)"
#: libraries/config/messages.inc.php:377
msgid "SweKey config file"
@ -5702,8 +5701,8 @@ msgstr "Table pour signets"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Laisser vider pour désactiver les commentaires sur les colonnes et les types "
"MIME; suggestion : [kbd]pma__column_info[/kbd]"
@ -5927,8 +5926,8 @@ msgstr "Table récemment utilisée"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Laisser vider pour désactiver le support [a@http://wiki.phpmyadmin.net/pma/"
"relation]relationnel[/a], suggestion : [kbd]pma__relation[/kbd]"
@ -5947,11 +5946,11 @@ msgstr "Commande SHOW DATABASES"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Voir [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] pour un exemple"
"Voir [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] pour un exemple"
#: libraries/config/messages.inc.php:429
msgid "Signon session name"
@ -6062,11 +6061,11 @@ msgstr "Énoncés à suivre"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Laisser vide pour désactiver le suivi des changements SQL; suggestion : "
"[kbd]pma__tracking[/kbd]"
"Laisser vide pour désactiver le suivi des changements SQL; suggestion : [kbd]"
"pma__tracking[/kbd]"
#: libraries/config/messages.inc.php:450
msgid "SQL query tracking table"
@ -6086,11 +6085,11 @@ msgstr "Création automatique de versions"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Laisser vide pour désactiver les préférences utilisateur; suggestion : "
"[kbd]pma__config[/kbd]"
"Laisser vide pour désactiver les préférences utilisateur; suggestion : [kbd]"
"pma__config[/kbd]"
#: libraries/config/messages.inc.php:454
msgid "User preferences storage table"
@ -6098,11 +6097,11 @@ msgstr "Table de stockage des préférences utilisateur"
#: libraries/config/messages.inc.php:455
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Laisser vide pour désactiver les menus configurables; suggestion : "
"[kbd]pma__users[/kbd]"
@ -6114,11 +6113,11 @@ msgstr "Table des utilisateurs"
#: libraries/config/messages.inc.php:457
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Laisser vide pour désactiver les menus configurables; suggestion : "
"[kbd]pma__usergroups[/kbd]"
@ -6130,8 +6129,8 @@ msgstr "Table des groupes d'utilisateurs"
#: libraries/config/messages.inc.php:459
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6950,8 +6949,8 @@ msgid ""
msgstr ""
"Permettre l'interruption de l'importation si la limite de temps configurée "
"dans PHP est sur le point d'être atteinte. <i>(Ceci pourrait aider à "
"importer des fichiers volumineux, au détriment du respect des "
"transactions.)</i>"
"importer des fichiers volumineux, au détriment du respect des transactions.)"
"</i>"
#: libraries/display_import.lib.php:296
msgid "Number of rows to skip, starting from the first row:"
@ -8388,8 +8387,8 @@ msgid ""
"Enclose table and column names with backquotes <i>(Protects column and table "
"names formed with special characters or keywords)</i>"
msgstr ""
"Entourer les noms des tables et des colonnes par des guillemets obliques "
"<i>(Protège les noms de tables et de colonnes comportant des caractères "
"Entourer les noms des tables et des colonnes par des guillemets obliques <i>"
"(Protège les noms de tables et de colonnes comportant des caractères "
"spéciaux ou des mots réservés)</i>"
#: libraries/plugins/export/ExportSql.class.php:304
@ -10345,19 +10344,19 @@ msgstr "Groupes d'utilisateurs"
#: libraries/server_privileges.lib.php:3236
#: libraries/server_privileges.lib.php:3402
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Onglets de niveau serveur"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Onglets de niveau base de données"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Onglets de niveau table"
#: libraries/server_privileges.lib.php:3260
@ -12640,8 +12639,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"La méthode d'authentification [kbd]config[/kbd] permet une connexion "
"automatique, ce qui n'est pas souhaitable dans un environnement réel. Toute "
@ -14655,9 +14654,9 @@ msgstr "Le paramètre concurrent_insert a une valeur de 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Si défini à [kbd]nested[/kbd], l'alias du nom de table ne sert qu'à "
#~ "subdiviser les tables selon $cfg['LeftFrameTableSeparator']"

132
po/gl.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-25 23:17+0200\n"
"Last-Translator: Xosé Calvo <xosecalvo@gmail.com>\n"
"Language-Team: Galician <http://l10n.cihar.com/projects/phpmyadmin/master/gl/"
@ -2795,8 +2795,8 @@ msgstr "Produciuse un erro descoñecido ao enviar o ficheiro."
#: libraries/File.class.php:476
msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]"
msgstr ""
"Produciuse un erro ao mover o ficheiro enviado. Consulte a "
"[doc@faq1-11]Pregunta frecuente 1.11[/doc]"
"Produciuse un erro ao mover o ficheiro enviado. Consulte a [doc@faq1-11]"
"Pregunta frecuente 1.11[/doc]"
#: libraries/File.class.php:494
msgid "Error while moving uploaded file."
@ -3238,8 +3238,8 @@ msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
"Produciuse un erro ao limpar as preferencias de IU da táboa (vexa "
"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)"
"Produciuse un erro ao limpar as preferencias de IU da táboa (vexa $cfg"
"['Servers'][$i]['MaxTableUiprefs'] %s)"
#: libraries/Table.class.php:1620
#, php-format
@ -4276,9 +4276,9 @@ msgid ""
"cross-frame scripting attacks"
msgstr ""
"Activar isto permite que unha páxina situada nun dominio diferente poida "
"chamar o phpMyAdmin desde dentro dunha moldura, o que constitúe un "
"[strong]furado de seguranza[/strong] potencial que permitiría ataques con "
"scripts entre molduras"
"chamar o phpMyAdmin desde dentro dunha moldura, o que constitúe un [strong]"
"furado de seguranza[/strong] potencial que permitiría ataques con scripts "
"entre molduras"
#: libraries/config/messages.inc.php:20
msgid "Allow third party framing"
@ -4346,8 +4346,8 @@ msgstr "Edición de columnas CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Empregue un editor amigábel para editar as consultas de SQL ([a@http://"
"codemirror.net/]CodeMirror[/a]) con realce da sintaxe e números de liña"
@ -4748,9 +4748,8 @@ msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
"Ordenación dos elementos dun menú despregábel de chaves alleas; "
"[kbd]content[/kbd] son os datos referenciados, [kbd]id[/kbd] é o valor da "
"chave"
"Ordenación dos elementos dun menú despregábel de chaves alleas; [kbd]content"
"[/kbd] son os datos referenciados, [kbd]id[/kbd] é o valor da chave"
#: libraries/config/messages.inc.php:151
msgid "Foreign key dropdown order"
@ -4892,9 +4891,8 @@ msgstr "Títulos de páxina"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Indique o texto da barra do título do navegador. Consulte a "
"[doc@cfg_TitleTable]documentación[/doc] para coñecer as cadeas máximas que "
@ -5020,9 +5018,9 @@ msgid ""
msgstr ""
"Se desexa empregar o servizo do validador de SQL ha de te ren conta que "
"[strong]todas as instrucións de SQL se almacenan de maneira anónima con "
"finalidade estatística[/strong].[br][em][a@http://sqlválidator.mimer."
"com/]Mimer SQL Validator[/a], Copyright 2002 Upright Database Technology. "
"Todos os dereitos reservados.[/em]"
"finalidade estatística[/strong].[br][em][a@http://sqlválidator.mimer.com/]"
"Mimer SQL Validator[/a], Copyright 2002 Upright Database Technology. Todos "
"os dereitos reservados.[/em]"
#: libraries/config/messages.inc.php:222
msgid "Startup"
@ -5715,8 +5713,8 @@ msgstr "Táboa de marcadores"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Déixeo en branco se non quere comentarios/tipos mime das columnas; suxírese: "
"[kbd]pma__column_info[/kbd]"
@ -5752,8 +5750,8 @@ msgid ""
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
"Un usuario especial de MySQL configurado con permisos limitados; hai máis "
"información dispoñíbel no [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]"
"información dispoñíbel no [a@http://wiki.phpmyadmin.net/pma/controluser]wiki"
"[/a]"
#: libraries/config/messages.inc.php:390
msgid "Control user"
@ -5790,8 +5788,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Déixeo en branco se non quere empregar Designer; por omisión: "
"[kbd]pma__designer_coords[/kbd]"
"Déixeo en branco se non quere empregar Designer; por omisión: [kbd]"
"pma__designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5802,9 +5800,9 @@ msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
"Máis información no [a@https://sourceforge.net/p/phpmyadmin/"
"bugs/2606/]Seguidor de erros de PMA[/a] e en [a@http://bugs.mysql."
"com/19588]Erros do MySQL[/a]"
"Máis información no [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]"
"Seguidor de erros de PMA[/a] e en [a@http://bugs.mysql.com/19588]Erros do "
"MySQL[/a]"
#: libraries/config/messages.inc.php:398
msgid "Disable use of INFORMATION_SCHEMA"
@ -5912,8 +5910,8 @@ msgid ""
msgstr ""
"Base de datos empregada para relacións, marcadores e funcionalidades PDF. "
"Vexa [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] para a información "
"completa. Déixeo en branco se non lle interesan. Por omisión: "
"[kbd]phpmyadmin[/kbd]"
"completa. Déixeo en branco se non lle interesan. Por omisión: [kbd]phpmyadmin"
"[/kbd]"
#: libraries/config/messages.inc.php:419
msgid "Database name"
@ -5943,11 +5941,11 @@ msgstr "Táboa usada recentemente"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Déixeo en branco se non quere [a@http://wiki.phpmyadmin.net/pma/"
"relation]ligazóns de relación[/a]; suxírese: [kbd]pma__relation[/kbd]"
"Déixeo en branco se non quere [a@http://wiki.phpmyadmin.net/pma/relation]"
"ligazóns de relación[/a]; suxírese: [kbd]pma__relation[/kbd]"
#: libraries/config/messages.inc.php:425
msgid "Relation table"
@ -5963,8 +5961,8 @@ msgstr "Mostrar a orde SHOW DATABASES"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Vexa os [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipos de "
"autenticación[/a] se quere un exemplo"
@ -6000,8 +5998,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Déixeo en branco se non quere PDF schema; por omisión: "
"[kbd]pma__table_coords[/kbd]"
"Déixeo en branco se non quere PDF schema; por omisión: [kbd]pma__table_coords"
"[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6079,8 +6077,8 @@ msgstr "Instrucións que seguir"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Déixeo en branco se non quere a funcionalidade de seguimento das consultas "
"de SQL; valor suxerido: [kbd]pma_tracking[/kbd]"
@ -6103,8 +6101,8 @@ msgstr "Crear versions automaticamente"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Déixeo en branco se non quere almacenar as preferencias na base de datos; "
"suxerido: [kbd]pma__userconfig[/kbd]"
@ -6116,11 +6114,11 @@ msgstr "Empregar a táboa de almacenamento das preferencias"
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Déixeo en branco se non quere almacenar as preferencias na base de datos; "
"suxerido: [kbd]pma__userconfig[/kbd]"
@ -6134,11 +6132,11 @@ msgstr "Usar as táboas"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Déixeo en branco se non quere almacenar as preferencias na base de datos; "
"suxerido: [kbd]pma__userconfig[/kbd]"
@ -6152,8 +6150,8 @@ msgstr "Empregar a táboa Host"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6287,8 +6285,8 @@ msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
"Mostra unha ligazón á saída de [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
"Mostra unha ligazón á saída de [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a]"
#: libraries/config/messages.inc.php:485
msgid "Show phpinfo() link"
@ -6442,8 +6440,8 @@ msgid ""
msgstr ""
"Escriba os proxies como [kbd]IP: cabezallo HTTP de confianza[/kbd]. O "
"exemplo seguinte especifica que o phpMyAdmin debería confiar nun cabezallo "
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente do proxy 1.2.3.4:[br]"
"[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) proveniente do proxy 1.2.3.4:[br][kbd]"
"1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
#: libraries/config/messages.inc.php:522
msgid "List of trusted proxies for IP allow/deny"
@ -8420,9 +8418,9 @@ msgid ""
"Enclose table and column names with backquotes <i>(Protects column and table "
"names formed with special characters or keywords)</i>"
msgstr ""
"Encerrar os nomes das táboas e das columnas entre aspas invertidas "
"<i>(Protexe os nomes das columnas e as táboas formadas con caracteres "
"especiais ou palabras chave)</i>"
"Encerrar os nomes das táboas e das columnas entre aspas invertidas <i>"
"(Protexe os nomes das columnas e as táboas formadas con caracteres especiais "
"ou palabras chave)</i>"
#: libraries/plugins/export/ExportSql.class.php:304
msgid "Data creation options"
@ -10360,21 +10358,21 @@ msgstr "Usuarios"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Versión do servidor"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Servidor de base de datos"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table removal"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Nome da táboa"
#: libraries/server_privileges.lib.php:3260
@ -12667,8 +12665,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Configurou o tipo de configuración [kbd]config[/kbd] e incluíu o nome de "
"usuario e o contrasinal para o rexistro automático, o que non é unha opción "
@ -14680,9 +14678,9 @@ msgstr "concurrent_insert está definido como 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Cando isto se configura como [kbd]aniñado[/kbd], o alcume do nome da "
#~ "táboa só se emprega para partir/aniñar as táboas de acordo coa directiva "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 21:08+0200\n"
"Last-Translator: Bug Me Not <abcdefg@mailinator.com>\n"
"Language-Team: Hebrew <http://l10n.cihar.com/projects/phpmyadmin/master/he/"
@ -4447,8 +4447,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5018,9 +5018,8 @@ msgstr "מספר דף:"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5797,8 +5796,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -6004,8 +6003,8 @@ msgstr "ניתוח טבלה"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -6023,8 +6022,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6128,8 +6127,8 @@ msgstr "משפטים"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6149,8 +6148,8 @@ msgstr "גרסת שרת"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6159,8 +6158,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6171,8 +6170,8 @@ msgstr "שימוש בטבלאות"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10389,21 +10388,21 @@ msgstr "משתמש"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "גרסת שרת"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "שרת מסד נתונים"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "הערות לטבלה"
#: libraries/server_privileges.lib.php:3260
@ -12591,8 +12590,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-06-22 11:37+0200\n"
"Last-Translator: asdf sasd <ashkgwithu@mailinator.com>\n"
"Language-Team: Hindi <http://l10n.cihar.com/projects/phpmyadmin/master/hi/>\n"
@ -2840,8 +2840,8 @@ msgstr "फ़ाइल अपलोड करने में अज्ञा
#: libraries/File.class.php:476
msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]"
msgstr ""
"अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [doc@faq1-1]अकसर किये गए सवाल "
"1,11[/doc] देखें"
"अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [doc@faq1-1]अकसर किये गए सवाल 1,11"
"[/doc] देखें"
#: libraries/File.class.php:494
msgid "Error while moving uploaded file."
@ -4369,8 +4369,8 @@ msgstr "CHAR कॉलम संपादन"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4917,9 +4917,8 @@ msgstr "पृष्ठ शीर्षक"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"निर्दिष्ट ब्राउज़र की शीर्षक पट्टी पाठ. [doc@cfg_TitleTable]documentation[/doc] "
"जादू स्ट्रिंग को विशेष मान पाने के लिए इस्तेमाल किया जा सकता है."
@ -5107,8 +5106,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations"
msgstr ""
"आयात और निर्यात के संचालन के लिए सक्षम संपीड़न [a@http://en.wikipedia.org/wiki/"
"Gzip]gzip[/a]"
"आयात और निर्यात के संचालन के लिए सक्षम संपीड़न [a@http://en.wikipedia.org/wiki/Gzip]"
"gzip[/a]"
#: libraries/config/messages.inc.php:237
msgid "GZip"
@ -5744,8 +5743,8 @@ msgstr "बुकमार्क टेबल"
#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
#| "kbd]"
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
@ -5854,8 +5853,8 @@ msgstr "डेटाबेस छिपाना"
#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
#| "[kbd]pma_history[/kbd]"
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
@ -5971,8 +5970,8 @@ msgstr "याद यूसर नाम"
#| msgid ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"अगर आपको PDF समर्थन नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_pdf_pages[/kbd]"
@ -5990,8 +5989,8 @@ msgstr "SHOW DATABASES आदेश"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6104,11 +6103,11 @@ msgstr "बयान ट्रैक करने के लिए"
#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
#| "[kbd]pma_history[/kbd]"
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"अगर आपको SQL क्वरी इतिहास नहीं चाहिए तो इसे खली छोड़ दें, सुझाव: [kbd]pma_history[/"
"kbd]"
@ -6132,8 +6131,8 @@ msgstr "स्वतः संस्करण बनाना"
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
@ -6146,8 +6145,8 @@ msgstr "यूसर वरीयताओं की भंडारण टे
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
@ -6162,8 +6161,8 @@ msgstr "टेबल का उपयोग करो"
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"कोई डिजाइनर समर्थन के लिए खाली छोड़ दें, सुझाव [kbd]pma_designer_coords[/kbd]"
@ -10369,21 +10368,21 @@ msgstr "यूसर"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Show versions"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "संस्करण दिखाएँ"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "डेटाबेस सर्वर"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "टेबल टिप्पणी:"
#: libraries/server_privileges.lib.php:3260
@ -12567,8 +12566,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-26 11:41+0200\n"
"Last-Translator: Tomislav Novak <fritex@fritexdesigns.com>\n"
"Language-Team: Croatian <http://l10n.cihar.com/projects/phpmyadmin/master/hr/"
@ -4564,8 +4564,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5141,9 +5141,8 @@ msgstr "Broj stranice:"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5947,8 +5946,8 @@ msgstr "Zabilježi tablicu"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -6155,8 +6154,8 @@ msgstr "Analiziraj tablicu"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -6174,8 +6173,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6279,8 +6278,8 @@ msgstr "Izjave"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6301,8 +6300,8 @@ msgstr "Rad s automatskim povratom"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6311,8 +6310,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6323,8 +6322,8 @@ msgstr "Upotrijebi tablice"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10765,21 +10764,21 @@ msgstr "Korisnik"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Verzija poslužitelja"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database for user"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Baza podataka za korisnika"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table removal"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Naziv tablice"
#: libraries/server_privileges.lib.php:3260
@ -13126,8 +13125,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

127
po/hu.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-09 11:52+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Hungarian <http://l10n.cihar.com/projects/phpmyadmin/master/"
@ -4340,8 +4340,8 @@ msgstr "CHAR mezők szerkesztése"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Felhasználóbarát szerkesztő használata az SQL-lekérdezések ([a@http://"
"codemirror.net/]CodeMirror[/a]) szintaxis kiemelővel és a sorok számának "
@ -4739,8 +4739,8 @@ msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
"Az elemek rendezési sorrendje egy idegen kulcs legördülő panelban; "
"[kbd]tartalom[/kbd]: hivatkozott adat, [kbd]id[/kbd]: a kulcs értéke"
"Az elemek rendezési sorrendje egy idegen kulcs legördülő panelban; [kbd]"
"tartalom[/kbd]: hivatkozott adat, [kbd]id[/kbd]: a kulcs értéke"
#: libraries/config/messages.inc.php:151
msgid "Foreign key dropdown order"
@ -4882,9 +4882,8 @@ msgstr "Oldalcímek"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Megadhatja a böngésző fejlécében megjelenített címet. Hivatkozzon a "
"[doc@cfg_TitleTable]dokumentációra[/doc] a mágikus parancsok végett, amiket "
@ -5011,9 +5010,9 @@ msgid ""
msgstr ""
"Amennyiben szeretné használni az SQL-validátor szolgáltatást, tudatában kell "
"lennie annak, hogy [strong]minden SQL parancsot névtelenül tároljuk "
"statisztikai okokból[/strong]. [br][em][a@http://sqlvalidator.mimer."
"com/]Mimer SQL Validator[/a], Copyright 2002 Upright Database Technology. "
"All rights reserved.[/em]"
"statisztikai okokból[/strong]. [br][em][a@http://sqlvalidator.mimer.com/]"
"Mimer SQL Validator[/a], Copyright 2002 Upright Database Technology. All "
"rights reserved.[/em]"
#: libraries/config/messages.inc.php:222
msgid "Startup"
@ -5323,8 +5322,8 @@ msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
"Egy parancsfájl számára a lefoglaláshoz engedélyezett bájtok száma, pl. "
"[kbd]32M[/kbd] (korlátlan: [kbd]0[/kbd])"
"Egy parancsfájl számára a lefoglaláshoz engedélyezett bájtok száma, pl. [kbd]"
"32M[/kbd] (korlátlan: [kbd]0[/kbd])"
#: libraries/config/messages.inc.php:298
msgid "Memory limit"
@ -5689,8 +5688,8 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
"Hagyja üresen, ha nincs [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]könyvjelző[/a] támogatás, alapértelmezés: [kbd]pma_bookmark[/kbd]"
"Hagyja üresen, ha nincs [a@http://wiki.phpmyadmin.net/pma/bookmark]könyvjelző"
"[/a] támogatás, alapértelmezés: [kbd]pma_bookmark[/kbd]"
#: libraries/config/messages.inc.php:381
msgid "Bookmark table"
@ -5698,11 +5697,11 @@ msgstr "Könyvjelzők táblája"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Hagyja üresen, ha nincs oszlopmegjegyzés/mime-típus, ajánlott: "
"[kbd]pma_column_info[/kbd]"
"Hagyja üresen, ha nincs oszlopmegjegyzés/mime-típus, ajánlott: [kbd]"
"pma_column_info[/kbd]"
#: libraries/config/messages.inc.php:383
msgid "Column information table"
@ -5773,8 +5772,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Hagyja üresen, ha nem akar Tervező támogatást, ajánlott: "
"[kbd]pma_designer_coords[/kbd]"
"Hagyja üresen, ha nem akar Tervező támogatást, ajánlott: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5786,8 +5785,8 @@ msgid ""
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
"Bővebben a [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"hibakövetőben[/a] és a [a@http://bugs.mysql.com/19588]MySQL "
"hibabejelentőben[/a] olvashat róla"
"hibakövetőben[/a] és a [a@http://bugs.mysql.com/19588]MySQL hibabejelentőben"
"[/a] olvashat róla"
#: libraries/config/messages.inc.php:398
msgid "Disable use of INFORMATION_SCHEMA"
@ -5881,8 +5880,8 @@ msgstr "A konfigurációs hitelesítés jelszava"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Hagyja üresen, ha nem szeretne PDF-séma támogatást, ajánlott: "
"[kbd]pma_pdf_pages[/kbd]"
"Hagyja üresen, ha nem szeretne PDF-séma támogatást, ajánlott: [kbd]"
"pma_pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -5926,8 +5925,8 @@ msgstr "Utoljára használt tábla"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Hagyja üresen, ha nincs [a@http://wiki.phpmyadmin.net/pma/relation]relációs "
"hivatkozás[/a] támogatás, ajánlott: [kbd]pma_relation[/kbd]"
@ -5946,8 +5945,8 @@ msgstr "SHOW DATABASES parancs"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Lásd a [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]hitelesítési "
"típusok[/a] példáját"
@ -5983,8 +5982,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Hagyja üresen, ha nincs PDF-séma támogatás, alapértelmezés: "
"[kbd]pma_table_coords[/kbd]"
"Hagyja üresen, ha nincs PDF-séma támogatás, alapértelmezés: [kbd]"
"pma_table_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6061,8 +6060,8 @@ msgstr "Utasítások követésre"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Hagyja üresen, ha nincs szükség az SQL-lekérdezések előzményeinek "
"támogatására, ajánlott: [kbd]pma_history[/kbd]"
@ -6085,8 +6084,8 @@ msgstr "Verziók automatikus létrehozása"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Hagyja üresen, ha nincs szükség a felhasználói beállítások tárolására az "
"adatbázisban, ajánlott: [kbd]pma_history[/kbd]"
@ -6098,11 +6097,11 @@ msgstr "Felhasználók beállításainak tárolótáblája"
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Hagyja üresen, ha nincs szükség a felhasználói beállítások tárolására az "
"adatbázisban, ajánlott: [kbd]pma_history[/kbd]"
@ -6116,11 +6115,11 @@ msgstr "Felhasználandó táblák"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Hagyja üresen, ha nincs szükség a felhasználói beállítások tárolására az "
"adatbázisban, ajánlott: [kbd]pma_history[/kbd]"
@ -6134,8 +6133,8 @@ msgstr "Hoszt-tábla használata"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6353,8 +6352,8 @@ msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
"Ha Önnek egyedi felhasználóneve van, itt megnevezheti (alapértelmezett: "
"[kbd]anonymous[/kbd])"
"Ha Önnek egyedi felhasználóneve van, itt megnevezheti (alapértelmezett: [kbd]"
"anonymous[/kbd])"
#: libraries/config/messages.inc.php:506 tbl_tracking.php:559
#: tbl_tracking.php:621
@ -10334,21 +10333,21 @@ msgstr "Felhasználók"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Szerver verzió"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Adatbázis-kiszolgáló"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Tábla megjegyzése"
#: libraries/server_privileges.lib.php:3260
@ -12520,8 +12519,8 @@ msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
"Ön Git verziót használ, futtassa a [kbd]git pull[/kbd] parancsot :-)"
"[br]Legújabb stabil verzió: %s, kiadás dátuma: %s."
"Ön Git verziót használ, futtassa a [kbd]git pull[/kbd] parancsot :-)[br]"
"Legújabb stabil verzió: %s, kiadás dátuma: %s."
#: setup/lib/index.lib.php:170
msgid "No newer stable version is available"
@ -12635,15 +12634,15 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Ön a [kbd]konfigurációs[/kbd] hitelesítési típust állította be, s az "
"automatikus bejelentkezéshez megadta a felhasználónevet és a jelszót, ami "
"működő állomások esetén nemkívánatos beállítás. Bárki, aki tudja vagy "
"kitalálja a phpMyAdmin URL-címét, közvetlenül hozzá tud férni a phpMyAdmin "
"panelhoz. Állítsa %sauthentication type%s-t [kbd]cookie[/kbd]-ra vagy "
"[kbd]http[/kbd]-re."
"panelhoz. Állítsa %sauthentication type%s-t [kbd]cookie[/kbd]-ra vagy [kbd]"
"http[/kbd]-re."
#: setup/lib/index.lib.php:236
#, php-format
@ -14617,14 +14616,14 @@ msgstr "A concurrent_insert 0-ra van állítva"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "E beállítás [kbd]beágyazottra[/kbd] állításakor a táblanév alias kerül "
#~ "csak felhasználásra a táblák felosztásához/beágyazásához a "
#~ "$cfg['LeftFrameTableSeparator'] utasítás alapján, ezért csak a mappát "
#~ "hívják úgy, mint az aliast, a táblanév változatlan marad"
#~ "csak felhasználásra a táblák felosztásához/beágyazásához a $cfg"
#~ "['LeftFrameTableSeparator'] utasítás alapján, ezért csak a mappát hívják "
#~ "úgy, mint az aliast, a táblanév változatlan marad"
#~ msgid "Display table comment instead of its name"
#~ msgstr "A tábla megjegyzésének megjelenítése a neve helyett"
@ -15138,5 +15137,5 @@ msgstr "A concurrent_insert 0-ra van állítva"
#~ "This [a@?page=form&amp;formset=features#tab_Security]option[/a] should be "
#~ "enabled if your web server supports it"
#~ msgstr ""
#~ "Engedélyeznie kell ezt a [a@?page=form&amp;"
#~ "formset=features#tab_Security]beállítást[/a], ha támogatja a webszerver"
#~ "Engedélyeznie kell ezt a [a@?page=form&amp;formset=features#tab_Security]"
#~ "beállítást[/a], ha támogatja a webszerver"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-03-30 12:19+0200\n"
"Last-Translator: Hamlet Muradyan <contact@hamletmuradyan.com>\n"
"Language-Team: Armenian <http://l10n.cihar.com/projects/phpmyadmin/master/hy/"
@ -4156,8 +4156,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4678,9 +4678,8 @@ msgstr ""
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5420,8 +5419,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5614,8 +5613,8 @@ msgstr ""
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5632,8 +5631,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -5730,8 +5729,8 @@ msgstr ""
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -5750,8 +5749,8 @@ msgstr ""
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -5760,8 +5759,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -5772,8 +5771,8 @@ msgstr "Օգտագործել աղյուսակներ"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -9698,21 +9697,23 @@ msgstr ""
#: libraries/server_privileges.lib.php:3236
#: libraries/server_privileges.lib.php:3402
msgid "Server level tabs"
msgstr ""
#, fuzzy
#| msgid "Table comments"
msgid "Server-level tabs"
msgstr "Աղյուսակի մեկնաբանությունը"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database comment: "
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Տվյալների բազայի մեկնաբանությունը՝ "
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Աղյուսակի մեկնաբանությունը"
#: libraries/server_privileges.lib.php:3260
@ -11737,8 +11738,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -7,11 +7,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-29 16:58+0200\n"
"Last-Translator: Giovanni Sora <g.sora@tiscali.it>\n"
"Language-Team: Interlingua "
"<http://l10n.cihar.com/projects/phpmyadmin/master/ia/>\n"
"Language-Team: Interlingua <http://l10n.cihar.com/projects/phpmyadmin/master/"
"ia/>\n"
"Language: ia\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -2295,7 +2295,8 @@ msgstr "Character inexpectate al linea %s."
#, php-format
msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"."
msgstr ""
"Character inexpectate al linea %1$s. Il expectava tab, ma on trovava \"%2$s\"."
"Character inexpectate al linea %1$s. Il expectava tab, ma on trovava \"%2$s"
"\"."
#: libraries/Advisor.class.php:470
msgid "per second"
@ -2688,7 +2689,6 @@ msgstr ""
#: libraries/DisplayResults.class.php:4933
#, php-format
#| msgid "%d table(s)"
msgid "%d total"
msgstr "%d total"
@ -4242,8 +4242,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4764,9 +4764,8 @@ msgstr ""
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5504,8 +5503,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5698,8 +5697,8 @@ msgstr ""
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5716,8 +5715,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -5816,8 +5815,8 @@ msgstr ""
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -5836,8 +5835,8 @@ msgstr ""
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -5845,29 +5844,21 @@ msgid "User preferences storage table"
msgstr ""
#: libraries/config/messages.inc.php:455
#| msgid ""
#| "Leave blank for no \"persistent\" tables' UI preferences across sessions, "
#| "suggested: [kbd]pma__table_uiprefs[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Lassa vacue pro dishabilitar characteristica de menus configurabile, "
"proponite: [kbd]pma__users[/kbd]"
#: libraries/config/messages.inc.php:456
#| msgid "%s table"
#| msgid_plural "%s tables"
msgid "Users table"
msgstr "Tabula de usatores"
#: libraries/config/messages.inc.php:457
#| msgid ""
#| "Leave blank for no \"persistent\" tables' UI preferences across sessions, "
#| "suggested: [kbd]pma__table_uiprefs[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Lassa vacue pro dishabilitar characteristica de menus configurabile, "
"proponite: [kbd]pma__usergroups[/kbd]"
@ -7338,12 +7329,10 @@ msgid "Functions:"
msgstr "Connexiones"
#: libraries/navigation/Navigation.class.php:174
#| msgid "Processes"
msgid "Procedures:"
msgstr "Procedimentos:"
#: libraries/navigation/Navigation.class.php:175
#| msgid "Table:"
msgid "Tables:"
msgstr "Tabulas:"
@ -9773,30 +9762,29 @@ msgstr ""
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version:"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Version de servitor:"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Servitor de base de datos"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#| msgid "Table comments"
msgid "Table level tabs"
#, fuzzy
#| msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Tabulationes de nivello de tabula"
#: libraries/server_privileges.lib.php:3260
#| msgid "in use"
msgid "View users"
msgstr "Vide usatores"
#: libraries/server_privileges.lib.php:3288
#: libraries/server_privileges.lib.php:3344
#| msgid "Add user"
msgid "Add user group"
msgstr "Adde gruppo de usator"
@ -11807,8 +11795,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

107
po/id.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-06-20 14:00+0200\n"
"Last-Translator: Dadan Setia <da2n_s@yahoo.co.id>\n"
"Language-Team: Indonesian <http://l10n.cihar.com/projects/phpmyadmin/master/"
@ -4286,8 +4286,8 @@ msgid ""
"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
"authentication"
msgstr ""
"Rahasia passphrase digunakan untuk enkripsi cookie dalam otentifikasi "
"[kbd]cookie[/kbd]"
"Rahasia passphrase digunakan untuk enkripsi cookie dalam otentifikasi [kbd]"
"cookie[/kbd]"
#: libraries/config/messages.inc.php:23
msgid "Blowfish secret"
@ -4327,9 +4327,9 @@ msgid ""
"columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/"
"kbd] - allows newlines in columns"
msgstr ""
"Menentukan jenis masukan yang dipakai untuk kolom CHAR dan VARCHAR; "
"[kbd]input[/kbd] - mengizinkan pembatasan panjang masukan, [kbd]textarea[/"
"kbd] - mengizinkan baris baru dalam kolom"
"Menentukan jenis masukan yang dipakai untuk kolom CHAR dan VARCHAR; [kbd]"
"input[/kbd] - mengizinkan pembatasan panjang masukan, [kbd]textarea[/kbd] - "
"mengizinkan baris baru dalam kolom"
#: libraries/config/messages.inc.php:31
msgid "CHAR columns editing"
@ -4337,8 +4337,8 @@ msgstr "Pengeditan kolom CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4884,9 +4884,8 @@ msgstr "Judul halaman"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5679,11 +5678,11 @@ msgstr "Tabel markah"
#: libraries/config/messages.inc.php:382
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
@ -5748,8 +5747,8 @@ msgstr "Inang pengendali"
#: libraries/config/messages.inc.php:395
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
@ -5790,8 +5789,8 @@ msgstr "Sembunyikan basis data"
#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
@ -5857,8 +5856,8 @@ msgstr "Sandi untuk autentikasi config"
#: libraries/config/messages.inc.php:416
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
@ -5891,8 +5890,8 @@ msgstr "Porta server"
#: libraries/config/messages.inc.php:422
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]"
@ -5906,8 +5905,8 @@ msgstr "Tabel yang baru digunakan"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5924,8 +5923,8 @@ msgstr "Perintah SHOW DATABASES"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -5955,8 +5954,8 @@ msgstr "Gunakan SSL"
#: libraries/config/messages.inc.php:435
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
@ -5981,8 +5980,8 @@ msgstr "Tabel kolom tampilan"
#: libraries/config/messages.inc.php:439
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]"
@ -6035,11 +6034,11 @@ msgstr "Statement untuk dilacak"
#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
@ -6061,11 +6060,11 @@ msgstr "Buat versi secara otomatis"
#: libraries/config/messages.inc.php:453
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
@ -6077,11 +6076,11 @@ msgstr "Tabel penyimpanan preferensi pengguna"
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
@ -6095,11 +6094,11 @@ msgstr "Gunakan Tabel"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Biarkan kosong untuk tidak menyimpan preferensi pengguna dalam basis data, "
"saran: [kbd]pma_userconfig[/kbd]"
@ -6113,8 +6112,8 @@ msgstr "Gunakan Host Table"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -10290,21 +10289,21 @@ msgstr "Pengguna"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Versi Server"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Server basis data"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Komentar tabel"
#: libraries/server_privileges.lib.php:3260
@ -12474,8 +12473,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

141
po/it.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-06-28 21:11+0200\n"
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
"Language-Team: Italian <http://l10n.cihar.com/projects/phpmyadmin/master/it/"
@ -4318,9 +4318,9 @@ msgid ""
"cross-frame scripting attacks"
msgstr ""
"L'abilitazione di questa opzione consente l'integrazione di phpMyAdmin "
"all'interno di pagine situate in altri domini; ed è una potenziale "
"[strong]falla di sicurezza[/strong] che permetterebbe attacchi di cross-"
"frame scripting"
"all'interno di pagine situate in altri domini; ed è una potenziale [strong]"
"falla di sicurezza[/strong] che permetterebbe attacchi di cross-frame "
"scripting"
#: libraries/config/messages.inc.php:20
msgid "Allow third party framing"
@ -4387,8 +4387,8 @@ msgstr "Modifica dei campi CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4796,9 +4796,9 @@ msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
"Ordinamento degli elementi nel menu a tendina delle chiavi esterne; "
"[kbd]content[/kbd] sono i dati di rifereimento, [kbd]id[/kbd] é il valore "
"della chiave"
"Ordinamento degli elementi nel menu a tendina delle chiavi esterne; [kbd]"
"content[/kbd] sono i dati di rifereimento, [kbd]id[/kbd] é il valore della "
"chiave"
#: libraries/config/messages.inc.php:151
msgid "Foreign key dropdown order"
@ -4940,9 +4940,8 @@ msgstr "Titoli delle pagine"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Specifica il testo per la barra del titolo. Puoi consultare la "
"[doc@cfg_TitleTable]documentazione[/doc] per vedere delle stringhe che "
@ -5762,8 +5761,8 @@ msgid ""
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
"Il percorso per il file di configurazione per [a@http://swekey."
"com]autenticazione hardware SweKey[/a] (not salvata nella cartella document "
"Il percorso per il file di configurazione per [a@http://swekey.com]"
"autenticazione hardware SweKey[/a] (not salvata nella cartella document "
"root; percorso consigliato: /etc/swekey.conf)"
#: libraries/config/messages.inc.php:377
@ -5797,11 +5796,11 @@ msgstr "Tabella dei segnalibri"
#: libraries/config/messages.inc.php:382
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
#| "[kbd]pma_column_info[/kbd]"
#| "Leave blank for no column comments/mime types, suggested: [kbd]"
#| "pma_column_info[/kbd]"
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Lascia vuoto per diattivare i commenti/tipi mime per i campi, consigliato: "
"[kbd]pma_column_info[/kbd]"
@ -5883,8 +5882,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Lascia vuoto disattivare il supporto per Designer, consigliato: "
"[kbd]pma_designer_coords[/kbd]"
"Lascia vuoto disattivare il supporto per Designer, consigliato: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5895,9 +5894,8 @@ msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
"Maggiori informazioni su [a@https://sourceforge.net/p/phpmyadmin/"
"bugs/2606/]PMA bug tracker[/a] e [a@http://bugs.mysql.com/19588]MySQL Bugs[/"
"a]"
"Maggiori informazioni su [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]"
"PMA bug tracker[/a] e [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
#: libraries/config/messages.inc.php:398
msgid "Disable use of INFORMATION_SCHEMA"
@ -5924,8 +5922,8 @@ msgstr "Nascondi i database"
#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
#| "[kbd]pma_history[/kbd]"
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
@ -6007,8 +6005,8 @@ msgstr "Parola chiave per config auth"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Lascia vuoto disabilitare il supporto per i schemi PDF, consigliato: "
"[kbd]pma_pdf_pages[/kbd]"
"Lascia vuoto disabilitare il supporto per i schemi PDF, consigliato: [kbd]"
"pma_pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -6059,8 +6057,8 @@ msgstr "Tabella utilizzata recentemente"
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
#| "links[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Lascia vuoto per disabilitare il supporto per [a@http://wiki.phpmyadmin.net/"
"pma/relation]relation-links[/a], consigliato: [kbd]pma_relation[/kbd]"
@ -6079,8 +6077,8 @@ msgstr "Commando SHOW DATABASES"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Vedi [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipi di "
"autenticazione[/a] per un esempio"
@ -6120,8 +6118,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Lascia vuoto per disabilita il supporto dello schema PDF, consigliato: "
"[kbd]pma_table_coords[/kbd]"
"Lascia vuoto per disabilita il supporto dello schema PDF, consigliato: [kbd]"
"pma_table_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6209,11 +6207,11 @@ msgstr "Istruzioni da monitorare"
#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
#| "[kbd]pma_tracking[/kbd]"
#| "Leave blank for no SQL query tracking support, suggested: [kbd]"
#| "pma_tracking[/kbd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Lascia vuoto per disabilitare il supporto per il monitoriaggio delle query "
"SQL, consigliato: [kbd]pma_tracking[/kbd]"
@ -6237,11 +6235,11 @@ msgstr "Crea versioni automaticamente"
#: libraries/config/messages.inc.php:453
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Lascia vuoto per disabilitare la memorizzazione delle preferenze degli "
"utenti nel database, consigliato: [kbd]pma_userconfig[/kbd]"
@ -6253,11 +6251,11 @@ msgstr "Tabella di memorizzazione delle preferenze degli utenti"
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Lascia vuoto per disabilitare la memorizzazione delle preferenze degli "
"utenti nel database, consigliato: [kbd]pma_userconfig[/kbd]"
@ -6271,11 +6269,11 @@ msgstr "Utilizza tabelle"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Lascia vuoto per disabilitare la memorizzazione delle preferenze degli "
"utenti nel database, consigliato: [kbd]pma_userconfig[/kbd]"
@ -6289,8 +6287,8 @@ msgstr "Utilizza la Tabella dell'Host"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6333,10 +6331,10 @@ msgid ""
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
"Si prega di notare che l'attivazione di questo non ha effetto con "
"[kbd]config[/kbd] la modalità di autenticazione perché la password è salvata "
"nel file di configurazione; questo non limita la capacità di eseguire lo "
"stesso comando direttamente"
"Si prega di notare che l'attivazione di questo non ha effetto con [kbd]config"
"[/kbd] la modalità di autenticazione perché la password è salvata nel file "
"di configurazione; questo non limita la capacità di eseguire lo stesso "
"comando direttamente"
#: libraries/config/messages.inc.php:468
msgid "Show password change form"
@ -6508,8 +6506,8 @@ msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
"Se hai un nome utente personalizzato, specificalo qui (il predefinito é "
"[kbd]anonymous[/kbd])"
"Se hai un nome utente personalizzato, specificalo qui (il predefinito é [kbd]"
"anonymous[/kbd])"
#: libraries/config/messages.inc.php:506 tbl_tracking.php:559
#: tbl_tracking.php:621
@ -6674,8 +6672,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
"Abilita la compressione [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] per le operazioni di importazione ed esportazione"
"Abilita la compressione [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP"
"[/a] per le operazioni di importazione ed esportazione"
#: libraries/config/messages.inc.php:540
msgid "ZIP"
@ -8613,8 +8611,8 @@ msgid ""
"names formed with special characters or keywords)</i>"
msgstr ""
"Racchiudi i nomi dei campi e delle tabelle in virgolette ` <i>(Protegge i "
"nomi dei campi e tabelle che contengono caratteri speciali or parole "
"chiave)</i>"
"nomi dei campi e tabelle che contengono caratteri speciali or parole chiave)"
"</i>"
#: libraries/plugins/export/ExportSql.class.php:304
#, fuzzy
@ -10602,21 +10600,21 @@ msgstr "Utenti"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Versione del server"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Server del Database"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Commenti alla tabella"
#: libraries/server_privileges.lib.php:3260
@ -12721,9 +12719,8 @@ msgid ""
"Otherwise you will be only able to download or display it."
msgstr ""
"Prego, crea una cartella scrivibile dal web server [em]config[/em] nella "
"cartella principale di phpMyAdmin come descritto nella "
"[doc@setup_script]documentazione[/doc]. Altrimenti potrai solo scaricarlo o "
"visualizzarlo."
"cartella principale di phpMyAdmin come descritto nella [doc@setup_script]"
"documentazione[/doc]. Altrimenti potrai solo scaricarlo o visualizzarlo."
#: setup/frames/index.inc.php:60
msgid ""
@ -12982,8 +12979,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Hai impostato il tipo di autenticazione [kbd]config[/kbd] e hai inclusi il "
"nome utente e la parola chiave per l'auto-login, questo non è desiderato per "
@ -15072,9 +15069,9 @@ msgstr "concurrent_insert è impostato a 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Quando questo é impostato a [kbd]nested[/kbd], l'alias del nome della "
#~ "tabella è utilizzato solo per dividere/nidificare le tabelle in accordo "

107
po/ja.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-08 21:24+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Japanese <http://l10n.cihar.com/projects/phpmyadmin/master/ja/"
@ -662,8 +662,8 @@ msgid ""
"[doc@faq1-16]FAQ 1.16[/doc]."
msgstr ""
"インポートするデータを受信できませんでした。ファイル名が送信されていないか、"
"ファイルサイズが PHP の設定で許可された最大値を超えています。"
"[doc@faq1-16]FAQ 1.16[/doc] をご覧ください。"
"ファイルサイズが PHP の設定で許可された最大値を超えています。[doc@faq1-16]"
"FAQ 1.16[/doc] をご覧ください。"
#: import.php:467
msgid ""
@ -4377,8 +4377,8 @@ msgstr "CHAR 系カラムの編集"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"構文の色分けや行番号の付加といった分かりやすいエディタ ([a@http://codemirror."
"net/]CodeMirror[/a]) を、SQL クエリの編集の際に使用します。"
@ -4929,9 +4929,8 @@ msgstr "ページタイトル"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"ブラウザのタイトルバーのテキストの指定を行います。使用可能な特別な埋め込み変"
"数は[doc@cfg_TitleTable]ドキュメント[/doc]を参照してください。"
@ -5769,14 +5768,14 @@ msgstr "ブックマークテーブル"
#: libraries/config/messages.inc.php:382
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
#| "[kbd]pma_column_info[/kbd]"
#| "Leave blank for no column comments/mime types, suggested: [kbd]"
#| "pma_column_info[/kbd]"
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"カラムのコメントと MIME タイプ機能を使わない場合は空欄にします。"
"[kbd]pma_column_info[/kbd] としておくのがいいでしょう。"
"カラムのコメントと MIME タイプ機能を使わない場合は空欄にします。[kbd]"
"pma_column_info[/kbd] としておくのがいいでしょう。"
#: libraries/config/messages.inc.php:383
msgid "Column information table"
@ -5893,8 +5892,8 @@ msgstr "非表示にするデータベース"
#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
#| "[kbd]pma_history[/kbd]"
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
@ -6030,8 +6029,8 @@ msgstr "最近使用したテーブル"
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
#| "links[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/relation]リレーションリンク[/a]機能を使わな"
"い場合は空欄にします。[kbd]pma_relation[/kbd] としておくのがいいでしょう。"
@ -6050,8 +6049,8 @@ msgstr "SHOW DATABASES コマンド"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"設定例は[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]認証モード[/a]を"
"参照してください。"
@ -6107,8 +6106,8 @@ msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]"
msgstr ""
"表示するカラムを記述するためのテーブル。使用しない場合は空欄にします。"
"[kbd]pma_table_info[/kbd] としておくのがいいでしょう。"
"表示するカラムを記述するためのテーブル。使用しない場合は空欄にします。[kbd]"
"pma_table_info[/kbd] としておくのがいいでしょう。"
#: libraries/config/messages.inc.php:438
msgid "Display columns table"
@ -6177,11 +6176,11 @@ msgstr "追跡するコマンド"
#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
#| "[kbd]pma_tracking[/kbd]"
#| "Leave blank for no SQL query tracking support, suggested: [kbd]"
#| "pma_tracking[/kbd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"SQL コマンドの追跡機能を使わない場合は空欄にします。[kbd]pma_tracking[/kbd] "
"としておくのがいいでしょう。"
@ -6205,11 +6204,11 @@ msgstr "世代の自動作成"
#: libraries/config/messages.inc.php:453
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_userconfig[/"
"kbd] としておくのがいいでしょう。"
@ -6221,11 +6220,11 @@ msgstr "ユーザ環境保管テーブル"
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_userconfig[/"
"kbd] としておくのがいいでしょう。"
@ -6239,11 +6238,11 @@ msgstr "利用するテーブル"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"データベースにユーザ設定の保存しない場合は空欄にします。[kbd]pma_userconfig[/"
"kbd] としておくのがいいでしょう。"
@ -6257,8 +6256,8 @@ msgstr "ホストテーブルを使う"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -10512,21 +10511,21 @@ msgstr "ユーザ"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "サーバのバージョン"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "データベースサーバ"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table removal"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "テーブル名"
#: libraries/server_privileges.lib.php:3260
@ -12827,8 +12826,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"[kbd]config[/kbd] 認証タイプを設定し、自動ログインのためにユーザ名とパスワー"
"ドを含めています。このことは、実働しているホストにとって望ましい方法とはいえ"
@ -14894,14 +14893,14 @@ msgstr "concurrent_insert は 0 に設定されています。"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "[kbd]nested[/kbd] に設定した場合、テーブル名のエイリアス"
#~ "は、$cfg['LeftFrameTableSeparator'] の指示に応じてテーブルを分割/入れ子す"
#~ "るために使用されます。そのフォルダはエイリアスのように呼び出されるだけで、"
#~ "テーブル名自体はそのまま変わることありません。"
#~ "[kbd]nested[/kbd] に設定した場合、テーブル名のエイリアスは、$cfg"
#~ "['LeftFrameTableSeparator'] の指示に応じてテーブルを分割/入れ子するために"
#~ "使用されます。そのフォルダはエイリアスのように呼び出されるだけで、テーブル"
#~ "名自体はそのまま変わることありません。"
#~ msgid "Display table comment instead of its name"
#~ msgstr "テーブルの名前の代わりにコメントを表示する"
@ -15451,8 +15450,8 @@ msgstr "concurrent_insert は 0 に設定されています。"
#~ "The result of this query can't be used for a chart. See [doc@faq6-29]FAQ "
#~ "6.29[/doc]"
#~ msgstr ""
#~ "このクエリの結果は、グラフに使用することができませんでした。"
#~ "[doc@faq6-29]FAQ 6.29[/doc] を参照してください。"
#~ "このクエリの結果は、グラフに使用することができませんでした。[doc@faq6-29]"
#~ "FAQ 6.29[/doc] を参照してください。"
#~ msgid "Title"
#~ msgstr "タイトル"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2012-12-13 13:04+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Georgian <http://l10n.cihar.com/projects/phpmyadmin/master/ka/"
@ -4590,8 +4590,8 @@ msgstr "CHAR fields editing"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5161,9 +5161,8 @@ msgstr "გვერდის ნომერი:"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5994,8 +5993,8 @@ msgstr "ცხრილის ჩანიშვნა"
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@ -6229,8 +6228,8 @@ msgstr "Recall user name"
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@ -6249,8 +6248,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6370,8 +6369,8 @@ msgstr "Statements"
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@ -6399,8 +6398,8 @@ msgstr "Automatic recovery mode"
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@ -6414,8 +6413,8 @@ msgstr ""
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@ -6431,8 +6430,8 @@ msgstr "გამოიყენე ცხრილები"
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
"kbd]"
@ -10811,21 +10810,21 @@ msgstr "მომხმარებელი"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "სერვერის ვერსია"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database for user"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "მონაცემთა ბაზა მომხმარებლისთვის"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table removal"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "ცხრილის სახელი"
#: libraries/server_privileges.lib.php:3260
@ -12807,18 +12806,16 @@ msgstr "კონფიგურაციის შენახვა ან ჩ
#, fuzzy
#| msgid ""
#| "ase create web server writable folder [em]config[/em] in phpMyAdmin "
#| "level directory as described in [a@../Documentation."
#| "html#setup_script]umentation[/a]. Otherwise you will be only able to "
#| "download or display "
#| "level directory as described in [a@../Documentation.html#setup_script]"
#| "umentation[/a]. Otherwise you will be only able to download or display "
msgid ""
"Please create web server writable folder [em]config[/em] in phpMyAdmin top "
"level directory as described in [doc@setup_script]documentation[/doc]. "
"Otherwise you will be only able to download or display it."
msgstr ""
"Please create web server writable folder [em]config[/em] in phpMyAdmin top "
"level directory as described in [a@../Documentation."
"html#setup_script]documentation[/a]. Otherwise you will be only able to "
"download or display it."
"level directory as described in [a@../Documentation.html#setup_script]"
"documentation[/a]. Otherwise you will be only able to download or display it."
#: setup/frames/index.inc.php:60
msgid ""
@ -12968,10 +12965,10 @@ msgstr ""
#| msgid ""
#| "s [a@?page=form&amp;formset=features#tab_Security]option[/a] should be "
#| "abled as it allows attackers to bruteforce login to any MySQL server. you "
#| "feel this is necessary, use [a@?page=form&amp;"
#| "mset=features#tab_Security]trusted proxies list[/a]. However, IP-based "
#| "tection may not be reliable if your IP belongs to an ISP where usands of "
#| "users, including you, are connected to."
#| "feel this is necessary, use [a@?page=form&amp;mset=features#tab_Security]"
#| "trusted proxies list[/a]. However, IP-based tection may not be reliable "
#| "if your IP belongs to an ISP where usands of users, including you, are "
#| "connected to."
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
"login to any MySQL server. If you feel this is necessary, use %strusted "
@ -13076,11 +13073,11 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
"If you feel this is necessary, use additional protection settings - [a@?"
"page=servers&amp;mode=edit&amp;id=%1$d#tab_Server_config]host "
"authentication[/a] settings and [a@?page=form&amp;"
"formset=features#tab_Security]trusted proxies list[/a]. However, IP-based "
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
"page=servers&amp;mode=edit&amp;id=%1$d#tab_Server_config]host authentication"
"[/a] settings and [a@?page=form&amp;formset=features#tab_Security]trusted "
"proxies list[/a]. However, IP-based protection may not be reliable if your "
"IP belongs to an ISP where thousands of users, including you, are connected "
"to."
#: setup/lib/index.lib.php:234
#, fuzzy, php-format
@ -13088,22 +13085,20 @@ msgstr ""
#| " set the [kbd]config[/kbd] authentication type and included username "
#| "password for auto-login, which is not a desirable option for live ts. "
#| "Anyone who knows or guesses your phpMyAdmin URL can directly ess your "
#| "phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;"
#| "id=d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or "
#| "[kbd]httpbd]."
#| "phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id=d#tab_Server]"
#| "authentication type[/a] to [kbd]cookie[/kbd] or [kbd]httpbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id="
"%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
"kbd]."
"phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id=%1$d#tab_Server]"
"authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/kbd]."
#: setup/lib/index.lib.php:236
#, fuzzy, php-format

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 11:25+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Kazakh <http://l10n.cihar.com/projects/phpmyadmin/master/kk/"
@ -4217,8 +4217,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4743,9 +4743,8 @@ msgstr ""
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5489,8 +5488,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5683,8 +5682,8 @@ msgstr ""
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5701,8 +5700,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -5799,8 +5798,8 @@ msgstr ""
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -5819,8 +5818,8 @@ msgstr ""
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -5829,8 +5828,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -5841,8 +5840,8 @@ msgstr "Кестелерді қолдану"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -9790,21 +9789,21 @@ msgstr ""
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Current settings"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Ағымдағы баптау"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database comment: "
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Дерекқорына түсініктеме: "
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Кестеге түсініктеме"
#: libraries/server_privileges.lib.php:3260
@ -11857,8 +11856,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-06-04 15:25+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Kannada <http://l10n.cihar.com/projects/phpmyadmin/master/kn/"
@ -4117,8 +4117,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4639,9 +4639,8 @@ msgstr ""
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5379,8 +5378,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5573,8 +5572,8 @@ msgstr ""
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5591,8 +5590,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -5689,8 +5688,8 @@ msgstr ""
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -5709,8 +5708,8 @@ msgstr ""
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -5719,8 +5718,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -5729,8 +5728,8 @@ msgstr ""
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -9628,17 +9627,17 @@ msgstr ""
#: libraries/server_privileges.lib.php:3236
#: libraries/server_privileges.lib.php:3402
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr ""
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr ""
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr ""
#: libraries/server_privileges.lib.php:3260
@ -11657,8 +11656,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-06-25 01:09+0200\n"
"Last-Translator: Kyeong Su Shin <ksshin@uwaterloo.ca>\n"
"Language-Team: Korean <http://l10n.cihar.com/projects/phpmyadmin/master/ko/"
@ -4265,8 +4265,8 @@ msgstr "CHAR 컬럼 편집"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"사용하기 쉬운 편집기([a@http://codemirror.net/]CodeMirror[/a], 문법 강조 및 "
"줄 번호 지원)로 SQL 쿼리를 편집"
@ -4799,9 +4799,8 @@ msgstr "페이지 제목"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5561,8 +5560,8 @@ msgstr "테이블 즐겨찾기"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5769,8 +5768,8 @@ msgstr "최근에 사용한 테이블"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5787,8 +5786,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -5890,11 +5889,11 @@ msgstr "명세"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"SQL 쿼리 추적 기능을 사용하지 않으려면 빈 칸으로 비워두세요. 권장: "
"[kbd]pma__tracking[/kbd]"
"SQL 쿼리 추적 기능을 사용하지 않으려면 빈 칸으로 비워두세요. 권장: [kbd]"
"pma__tracking[/kbd]"
#: libraries/config/messages.inc.php:450
msgid "SQL query tracking table"
@ -5912,8 +5911,8 @@ msgstr "버전 자동생성"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -5926,8 +5925,8 @@ msgstr ""
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
#| "kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"PDF 스키마를 제공하지 않을 경우 비워두세요. 제안값: [kbd]pma__pdf_pages[/kbd]"
@ -5943,8 +5942,8 @@ msgstr "사용할 테이블"
#| "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/"
#| "kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"PDF 스키마를 제공하지 않을 경우 비워두세요. 제안값: [kbd]pma__pdf_pages[/kbd]"
@ -5957,14 +5956,14 @@ msgstr "사용할 테이블"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
#| "[kbd]pma__tracking[/kbd]"
#| "Leave blank for no SQL query tracking support, suggested: [kbd]"
#| "pma__tracking[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
msgstr ""
"SQL 쿼리 추적 기능을 사용하지 않으려면 빈 칸으로 비워두세요. 권장: "
"[kbd]pma__tracking[/kbd]"
"SQL 쿼리 추적 기능을 사용하지 않으려면 빈 칸으로 비워두세요. 권장: [kbd]"
"pma__tracking[/kbd]"
#: libraries/config/messages.inc.php:460
msgid "Hidden navigation items table"
@ -6310,8 +6309,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
"가져오기와 내보내기 작업들에 대해 [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] compression 가능하게 함"
"가져오기와 내보내기 작업들에 대해 [a@http://en.wikipedia.org/wiki/ZIP_"
"(file_format)]ZIP[/a] compression 가능하게 함"
#: libraries/config/messages.inc.php:540
msgid "ZIP"
@ -10085,21 +10084,21 @@ msgstr "사용자"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "서버 버전"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "데이터베이스 서버"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "테이블 설명"
#: libraries/server_privileges.lib.php:3260
@ -12261,8 +12260,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

126
po/lt.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 11:14+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Lithuanian <http://l10n.cihar.com/projects/phpmyadmin/master/"
@ -4374,8 +4374,8 @@ msgid ""
"kbd] - allows newlines in columns"
msgstr ""
"Nustato kokio tipo redagavimo laukelis turėtų būti naudojamas CHAR ir "
"VARCHAR laukeliams; [kbd]input[/kbd] - leidžia riboti įvedimo ilgį, "
"[kbd]textarea[/kbd] - leidžia naujas eilutes laukelyje"
"VARCHAR laukeliams; [kbd]input[/kbd] - leidžia riboti įvedimo ilgį, [kbd]"
"textarea[/kbd] - leidžia naujas eilutes laukelyje"
#: libraries/config/messages.inc.php:31
msgid "CHAR columns editing"
@ -4383,8 +4383,8 @@ msgstr "CHAR stulpelių redagavimas"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4929,9 +4929,8 @@ msgstr "Puslapių pavadinimai"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Nurodykite naršyklės pavadinimo juostos tekstą. Pasinaudokite "
"[doc@cfg_TitleTable]dokumentacija[/doc] magiškiesiems tekstams, kurie bus "
@ -5770,11 +5769,11 @@ msgstr "Pažymėti lentelę"
#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/"
#| "kbd]"
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: "
"[kbd]pma_table_coords[/kbd]"
"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: [kbd]"
"pma_table_coords[/kbd]"
#: libraries/config/messages.inc.php:383
msgid "Column information table"
@ -5847,8 +5846,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: "
"[kbd]pma_designer_coords[/kbd]"
"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5886,14 +5885,14 @@ msgstr "Slėpti duomenų bazes"
#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
#| "[kbd]pma_history[/kbd]"
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
msgstr ""
"Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: "
"[kbd]pma_history[/kbd]"
"Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: [kbd]pma_history"
"[/kbd]"
#: libraries/config/messages.inc.php:404
msgid "SQL query history table"
@ -5968,8 +5967,8 @@ msgstr ""
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Palikite tuščią jei nenorite PDF schemų palaikymo, siūlome: "
"[kbd]pma_pdf_pages[/kbd]"
"Palikite tuščią jei nenorite PDF schemų palaikymo, siūlome: [kbd]"
"pma_pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -6020,8 +6019,8 @@ msgstr "Paskiausiai naudota lentelė"
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
#| "links[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Palikite tuščią jei nenorite, kad palaikytų [a@http://wiki.phpmyadmin.net/"
"pma/relation]sąryšines nuorodas[/a], pasiūlymas: [kbd]pma_relation[/kbd]"
@ -6040,11 +6039,11 @@ msgstr "SHOW DATABASES komanda"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Žiūrėkite [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]autentifikacijos tipus[/a] dėl pavyzdžių"
"Žiūrėkite [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]"
"autentifikacijos tipus[/a] dėl pavyzdžių"
#: libraries/config/messages.inc.php:429
msgid "Signon session name"
@ -6079,8 +6078,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: "
"[kbd]pma_table_coords[/kbd]"
"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: [kbd]"
"pma_table_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6095,8 +6094,8 @@ msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]"
msgstr ""
"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: "
"[kbd]pma_table_coords[/kbd]"
"Palikite tuščią, kad nebūtų PDF schemos palaikymo, siūlome: [kbd]"
"pma_table_coords[/kbd]"
#: libraries/config/messages.inc.php:438
msgid "Display columns table"
@ -6109,8 +6108,8 @@ msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]"
msgstr ""
"Jei tuščias nebus „įkyrių“ UI nustatymų tarp seansų, siūlome: "
"[kbd]pma_table_uiprefs[/kbd]"
"Jei tuščias nebus „įkyrių“ UI nustatymų tarp seansų, siūlome: [kbd]"
"pma_table_uiprefs[/kbd]"
#: libraries/config/messages.inc.php:440
msgid "UI preferences table"
@ -6157,14 +6156,14 @@ msgstr "Sekamos užklausos"
#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
#| "[kbd]pma_history[/kbd]"
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: "
"[kbd]pma_history[/kbd]"
"Palikite tuščią, jei nenorite SQL užklausų žurnalo, siūlome: [kbd]pma_history"
"[/kbd]"
#: libraries/config/messages.inc.php:450
msgid "SQL query tracking table"
@ -6185,11 +6184,11 @@ msgstr "Automatiškai sukurti versijas"
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: "
"[kbd]pma_designer_coords[/kbd]"
"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:454
msgid "User preferences storage table"
@ -6200,11 +6199,11 @@ msgstr ""
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: "
"[kbd]pma_designer_coords[/kbd]"
"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:456
#, fuzzy
@ -6217,11 +6216,11 @@ msgstr "Naudoti lenteles"
#| msgid ""
#| "blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: "
"[kbd]pma_designer_coords[/kbd]"
"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:458
#, fuzzy
@ -6237,8 +6236,8 @@ msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
msgstr ""
"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: "
"[kbd]pma_designer_coords[/kbd]"
"Palikite tuščią jeigu nenorite „Designer“ palaikymo, siūlome: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:460
msgid "Hidden navigation items table"
@ -8819,8 +8818,8 @@ msgstr ""
#: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31
#, fuzzy
#| msgid ""
#| "ys the contents of the field as-is, without running it through "
#| "ecialchars(). That is, the field is assumed to contain valid HTML."
#| "ys the contents of the field as-is, without running it through ecialchars"
#| "(). That is, the field is assumed to contain valid HTML."
msgid ""
"Displays the contents of the column as-is, without running it through "
"htmlspecialchars(). That is, the column is assumed to contain valid HTML."
@ -10484,21 +10483,21 @@ msgstr "Naudotojai"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Serverio versija"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Duomenų bazės serveris"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Lentelės komentarai"
#: libraries/server_privileges.lib.php:3260
@ -12430,9 +12429,8 @@ msgid ""
"Otherwise you will be only able to download or display it."
msgstr ""
"Prašome interneto serveryje phpMyAdmin pagrindiniame kataloge sukurti "
"įrašomą [em]config[/em] katalogą kaip parašyta "
"[doc@setup_script]dokumentacijoje[/doc]. Kitaip Jūs galėsite jį tik "
"parsisiųsti ir peržiūrėti."
"įrašomą [em]config[/em] katalogą kaip parašyta [doc@setup_script]"
"dokumentacijoje[/doc]. Kitaip Jūs galėsite jį tik parsisiųsti ir peržiūrėti."
#: setup/frames/index.inc.php:60
msgid ""
@ -12449,8 +12447,8 @@ msgid ""
"If your server is also configured to accept HTTPS requests follow [a@%s]this "
"link[/a] to use a secure connection."
msgstr ""
"Jeigu Jūsų serveris sukonfigūruotas priimti HTTPS užklausas eikite [a@"
"%s]čia[/a] tam, kad naudoti saugų susijungimą."
"Jeigu Jūsų serveris sukonfigūruotas priimti HTTPS užklausas eikite [a@%s]čia"
"[/a] tam, kad naudoti saugų susijungimą."
#: setup/frames/index.inc.php:68
msgid "Insecure connection"
@ -12680,8 +12678,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Jūs nustatėte [kbd]config[/kbd] identifikacijos tipą ir įtraukėte naudotojo "
"vardą ir slaptažodį automatiniam prisijungimui, tai nėra pageidaujama "

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 11:30+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Latvian <http://l10n.cihar.com/projects/phpmyadmin/master/lv/"
@ -4441,8 +4441,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5009,9 +5009,8 @@ msgstr "Lapas numurs:"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5787,8 +5786,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5994,8 +5993,8 @@ msgstr "Analizēt tabulu"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -6013,8 +6012,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6118,8 +6117,8 @@ msgstr "Parametrs"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6139,8 +6138,8 @@ msgstr "Servera versija"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6149,8 +6148,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6161,8 +6160,8 @@ msgstr "Lietot tabulas"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10471,21 +10470,21 @@ msgstr "Lietotājs"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Servera versija"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Databases"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Datubāzes"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Komentārs tabulai"
#: libraries/server_privileges.lib.php:3260
@ -12693,8 +12692,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-04-25 15:32+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Macedonian <http://l10n.cihar.com/projects/phpmyadmin/master/"
@ -4555,8 +4555,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5129,9 +5129,8 @@ msgstr "Број на страници:"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5910,8 +5909,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -6117,8 +6116,8 @@ msgstr "Анализа на табелата"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -6136,8 +6135,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6241,8 +6240,8 @@ msgstr "Име"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6263,8 +6262,8 @@ msgstr "Режим на автоматско опоравување"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6273,8 +6272,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6285,8 +6284,8 @@ msgstr "Користи табели"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10644,21 +10643,21 @@ msgstr "Корисник"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Верзија на серверот"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Databases"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "База на податоци"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Коментар на табелата"
#: libraries/server_privileges.lib.php:3260
@ -12858,8 +12857,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2011-09-27 08:42+0200\n"
"Last-Translator: <sadik.khalid@gmail.com>\n"
"Language-Team: Malayalam <ml@li.org>\n"
@ -4157,8 +4157,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4681,9 +4681,8 @@ msgstr ""
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5427,8 +5426,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5621,8 +5620,8 @@ msgstr ""
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5639,8 +5638,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -5737,8 +5736,8 @@ msgstr ""
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -5757,8 +5756,8 @@ msgstr ""
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -5767,8 +5766,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -5779,8 +5778,8 @@ msgstr "പട്ടികകൾ ഉപയോഗിക്കുക"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -9699,21 +9698,23 @@ msgstr ""
#: libraries/server_privileges.lib.php:3236
#: libraries/server_privileges.lib.php:3402
msgid "Server level tabs"
msgstr ""
#, fuzzy
#| msgid "Table comments"
msgid "Server-level tabs"
msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database comment: "
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "വിവരശേഖര അഭിപ്രായം: "
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "പട്ടിക അഭിപ്രയങ്ങൾ"
#: libraries/server_privileges.lib.php:3260
@ -11743,8 +11744,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-04-25 15:34+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Mongolian <http://l10n.cihar.com/projects/phpmyadmin/master/"
@ -4576,8 +4576,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5144,9 +5144,8 @@ msgstr "Хуудасны дугаар:"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5922,8 +5921,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -6124,8 +6123,8 @@ msgstr "Хүснэгтийг задлах"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -6142,8 +6141,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6246,8 +6245,8 @@ msgstr "Баримтжуулал"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6268,8 +6267,8 @@ msgstr "Авто сэргээх горим"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6278,8 +6277,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6290,8 +6289,8 @@ msgstr "Хүснэгт хэрэглэх"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -8946,8 +8945,8 @@ msgstr ""
#: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31
#, fuzzy
#| msgid ""
#| "ys the contents of the field as-is, without running it through "
#| "ecialchars(). That is, the field is assumed to contain valid HTML."
#| "ys the contents of the field as-is, without running it through ecialchars"
#| "(). That is, the field is assumed to contain valid HTML."
msgid ""
"Displays the contents of the column as-is, without running it through "
"htmlspecialchars(). That is, the column is assumed to contain valid HTML."
@ -10643,21 +10642,21 @@ msgstr "Хэрэглэгч"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Сервэрийн хувилбар"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database for user"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Хэрэглэгчийн өгөгдлийн сан"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table removal"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Хүснэгтийн нэр"
#: libraries/server_privileges.lib.php:3260
@ -12903,8 +12902,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-05-07 17:19+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Malay <http://l10n.cihar.com/projects/phpmyadmin/master/ms/>\n"
@ -4469,8 +4469,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5028,9 +5028,8 @@ msgstr "Muka Surat:"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5793,8 +5792,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5999,8 +5998,8 @@ msgstr "Analyze table"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -6018,8 +6017,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6121,8 +6120,8 @@ msgstr "Penyataan"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6142,8 +6141,8 @@ msgstr "Versi Pelayan"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6152,8 +6151,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6164,8 +6163,8 @@ msgstr "Guna Jadual"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10328,21 +10327,21 @@ msgstr "Pengguna"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Versi Pelayan"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Databases"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "pangkalan data"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Komen jadual"
#: libraries/server_privileges.lib.php:3260
@ -12520,8 +12519,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

125
po/nb.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 11:14+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Norwegian Bokmål <http://l10n.cihar.com/projects/phpmyadmin/"
@ -4329,8 +4329,8 @@ msgid ""
"kbd] - allows newlines in columns"
msgstr ""
"Definerer hvilken type redigeringskontroll som skal brukes for CHAR og "
"VARCHAR kolonner; [kbd]input[/kbd] - tillater begrensning av lengde, "
"[kbd]textarea[/kbd] - tillater linjeskift i kolonner"
"VARCHAR kolonner; [kbd]input[/kbd] - tillater begrensning av lengde, [kbd]"
"textarea[/kbd] - tillater linjeskift i kolonner"
#: libraries/config/messages.inc.php:31
msgid "CHAR columns editing"
@ -4338,8 +4338,8 @@ msgstr "CHAR kolonneredigering"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4745,8 +4745,8 @@ msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
"Sorteringsrekkefølge for elementer i en fremmednøkkel nedfallsboks; "
"[kbd]content[/kbd] for refererte data, [kbd]id[/kbd] for nøkkelverdien"
"Sorteringsrekkefølge for elementer i en fremmednøkkel nedfallsboks; [kbd]"
"content[/kbd] for refererte data, [kbd]id[/kbd] for nøkkelverdien"
#: libraries/config/messages.inc.php:151
msgid "Foreign key dropdown order"
@ -4892,13 +4892,12 @@ msgstr "Sidetitler"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Spesifiser vindustittelen til nettleseren. Se forøvrig "
"[doc@cfg_TitleTable]dokumentasjon[/doc] for spesielle strenger som kan tas i "
"bruk for å tilgang til spesialverdier."
"Spesifiser vindustittelen til nettleseren. Se forøvrig [doc@cfg_TitleTable]"
"dokumentasjon[/doc] for spesielle strenger som kan tas i bruk for å tilgang "
"til spesialverdier."
#: libraries/config/messages.inc.php:194
#: libraries/navigation/NavigationHeader.class.php:209
@ -5334,8 +5333,8 @@ msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
"Maks antal byte et skript har lov til å bruke, f.eks. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for ingen begrensning)"
"Maks antal byte et skript har lov til å bruke, f.eks. [kbd]32M[/kbd] ([kbd]0"
"[/kbd] for ingen begrensning)"
#: libraries/config/messages.inc.php:298
msgid "Memory limit"
@ -5705,9 +5704,8 @@ msgid ""
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
"Stien til konfigfila for [a@http://swekey.com]SweKey hardware "
"authentication[/a] (ikke lokalisert i din dokumentrot; foreslått: /etc/"
"swekey.conf)"
"Stien til konfigfila for [a@http://swekey.com]SweKey hardware authentication"
"[/a] (ikke lokalisert i din dokumentrot; foreslått: /etc/swekey.conf)"
#: libraries/config/messages.inc.php:377
msgid "SweKey config file"
@ -5730,8 +5728,8 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
"La stå tom for ingen [a@http://wiki.phpmyadmin.net/pma/bookmark]bokmerke[/"
"a]støtte, anbefalt: [kbd]pma_bookmark[/kbd]"
"La stå tom for ingen [a@http://wiki.phpmyadmin.net/pma/bookmark]bokmerke[/a]"
"støtte, anbefalt: [kbd]pma_bookmark[/kbd]"
#: libraries/config/messages.inc.php:381
msgid "Bookmark table"
@ -5740,14 +5738,14 @@ msgstr "Bokmerketabell"
#: libraries/config/messages.inc.php:382
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
#| "[kbd]pma_column_info[/kbd]"
#| "Leave blank for no column comments/mime types, suggested: [kbd]"
#| "pma_column_info[/kbd]"
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"La stå tom for ingen kolonnekommentarer/mime typer, anbefalt: "
"[kbd]pma_column_info[/kbd]"
"La stå tom for ingen kolonnekommentarer/mime typer, anbefalt: [kbd]"
"pma_column_info[/kbd]"
#: libraries/config/messages.inc.php:383
msgid "Column information table"
@ -5779,8 +5777,8 @@ msgid ""
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
"En spesiell MySQL bruker konfigurert med begrensede rettigheter, mer "
"informasjon tilgjengelig på [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]"
"informasjon tilgjengelig på [a@http://wiki.phpmyadmin.net/pma/controluser]"
"wiki[/a]"
#: libraries/config/messages.inc.php:390
msgid "Control user"
@ -5863,8 +5861,8 @@ msgstr "Skul databaser"
#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
#| "[kbd]pma_history[/kbd]"
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
@ -5993,11 +5991,11 @@ msgstr "Nylig brukt tabell"
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
#| "links[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"La stå tom for ingen [a@http://wiki.phpmyadmin.net/pma/"
"relation]relasjonslink[/a]støtte, anbefalt: [kbd]pma_relation[/kbd]"
"La stå tom for ingen [a@http://wiki.phpmyadmin.net/pma/relation]relasjonslink"
"[/a]støtte, anbefalt: [kbd]pma_relation[/kbd]"
#: libraries/config/messages.inc.php:425
msgid "Relation table"
@ -6013,8 +6011,8 @@ msgstr "SHOW DATABASES kommando"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentiseringstyper[/"
"a] for et eksempel"
@ -6136,11 +6134,11 @@ msgstr "Spørringer som skal spores"
#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
#| "[kbd]pma_tracking[/kbd]"
#| "Leave blank for no SQL query tracking support, suggested: [kbd]"
#| "pma_tracking[/kbd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
@ -6165,8 +6163,8 @@ msgstr "Automatisk opprette versjoner"
#| msgid ""
#| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]"
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
@ -6179,8 +6177,8 @@ msgstr "Tabell for lagring av brukerpreferanser"
#| msgid ""
#| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
@ -6195,8 +6193,8 @@ msgstr "Bruk tabeller"
#| msgid ""
#| "blank for no SQL query tracking support, suggested: [kbd]_tracking[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"La stå tom for ingen SQL spørringshistorie, anbefalt: [kbd]pma_tracking[/kbd]"
@ -6414,8 +6412,8 @@ msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
"Hvis du har et egendefinert brukernavn, angi det her (standard: "
"[kbd]anonymous[/kbd])"
"Hvis du har et egendefinert brukernavn, angi det her (standard: [kbd]"
"anonymous[/kbd])"
#: libraries/config/messages.inc.php:506 tbl_tracking.php:559
#: tbl_tracking.php:621
@ -10595,21 +10593,21 @@ msgstr "Brukere"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Tjenerversjon"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Databaseserver"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Tabellkommentarer"
#: libraries/server_privileges.lib.php:3260
@ -12740,9 +12738,9 @@ msgid ""
"Otherwise you will be only able to download or display it."
msgstr ""
"Opprett en mappe [em]config[/em] som er skrivbar for webtjener i phpMyAdmin "
"øverste mappe som beskrevet i [a@../Documentation."
"html#setup_script]documentation[/a]. Hvis ikke så vil du kun være i stand "
"til å laste ned eller fremvise den."
"øverste mappe som beskrevet i [a@../Documentation.html#setup_script]"
"documentation[/a]. Hvis ikke så vil du kun være i stand til å laste ned "
"eller fremvise den."
#: setup/frames/index.inc.php:60
msgid ""
@ -13025,15 +13023,14 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Du valgte [kbd]config[/kbd] autentisering og inkluderte brukernavn og "
"passord for autmatisk innlogging, noe som ikke anbefales for aktive tjenere. "
"Hvem som helst som kjenner phpMyAdmin URL kan direkte få adgang til ditt "
"phpMyAdmin panel. Velg [a@?page=servers&amp;mode=edit&amp;id="
"%1$d#tab_Server]autentiseringstype[/a] [kbd]cookie[/kbd] eller [kbd]http[/"
"kbd]."
"phpMyAdmin panel. Velg [a@?page=servers&amp;mode=edit&amp;id=%1$d#tab_Server]"
"autentiseringstype[/a] [kbd]cookie[/kbd] eller [kbd]http[/kbd]."
#: setup/lib/index.lib.php:236
#, fuzzy, php-format
@ -13056,8 +13053,8 @@ msgid ""
"%sZip decompression%s requires functions (%s) which are unavailable on this "
"system."
msgstr ""
"[a@?page=form&amp;formset=features#tab_Import_export]Zip dekomprimering[/"
"a]trenger funksjoner (%s) som ikke er tilgjengelig på dette systemet."
"[a@?page=form&amp;formset=features#tab_Import_export]Zip dekomprimering[/a]"
"trenger funksjoner (%s) som ikke er tilgjengelig på dette systemet."
#: setup/lib/index.lib.php:266
#, fuzzy
@ -15017,9 +15014,9 @@ msgstr "maks. samtidige tilkoblinger"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Når du setter denne til [kbd]nested[/kbd] så blir tabellnavnaliaset kun "
#~ "brukt til å splitte/neste tabellene etter $cfg['LeftFrameTableSeparator'] "

143
po/nl.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-29 16:11+0200\n"
"Last-Translator: Dieter Adriaenssens <ruleant@users.sourceforge.net>\n"
"Language-Team: Dutch <http://l10n.cihar.com/projects/phpmyadmin/master/nl/>\n"
@ -1951,7 +1951,6 @@ msgid "Hide Panel"
msgstr "Paneel verbergen"
#: js/messages.php:369
#| msgid "Show logo in navigation panel"
msgid "Show hidden navigation tree items"
msgstr "Verborgen navigatieboom items weergeven"
@ -2673,13 +2672,11 @@ msgstr ""
#: libraries/DisplayResults.class.php:4921
#, php-format
#| msgid "Showing rows"
msgid "Showing rows %1s - %2s"
msgstr "Weergave van records %1s - %2s"
#: libraries/DisplayResults.class.php:4933
#, php-format
#| msgid "total"
msgid "%d total"
msgstr "%d totaal"
@ -2798,8 +2795,8 @@ msgstr "Onbekende fout bij het uploaden."
#: libraries/File.class.php:476
msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]"
msgstr ""
"Fout bij het verplaatsen van het geüploade bestand, zie [doc@faq1-11]FAQ "
"1.11[/doc]"
"Fout bij het verplaatsen van het geüploade bestand, zie [doc@faq1-11]FAQ 1.11"
"[/doc]"
#: libraries/File.class.php:494
msgid "Error while moving uploaded file."
@ -3861,7 +3858,8 @@ msgstr "Selecteer uit de web-server upload directory <b>%s</b>:"
#: libraries/Util.class.php:3406 libraries/insert_edit.lib.php:1183
#: libraries/sql_query_form.lib.php:483
msgid "The directory you set for upload work cannot be reached."
msgstr "De folder die u heeft ingesteld om te uploaden kan niet worden bereikt."
msgstr ""
"De folder die u heeft ingesteld om te uploaden kan niet worden bereikt."
#: libraries/Util.class.php:3417
msgid "There are no files to upload"
@ -4279,9 +4277,9 @@ msgid ""
"cross-frame scripting attacks"
msgstr ""
"Door deze optie in te schakelen is het toegestaan om phpMyAdmin vanuit een "
"pagina op een ander domein in een frame te openen. Een potentieel "
"[strong]beveiligingslek[/strong] wat cross-frame scripting aanvallen "
"mogelijk kan maken"
"pagina op een ander domein in een frame te openen. Een potentieel [strong]"
"beveiligingslek[/strong] wat cross-frame scripting aanvallen mogelijk kan "
"maken"
#: libraries/config/messages.inc.php:20
msgid "Allow third party framing"
@ -4296,8 +4294,8 @@ msgid ""
"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
"authentication"
msgstr ""
"Geheime sleutelzin gebruikt voor de versleuteling van cookies in "
"[kbd]cookie[/kbd]-authenticatie"
"Geheime sleutelzin gebruikt voor de versleuteling van cookies in [kbd]cookie"
"[/kbd]-authenticatie"
#: libraries/config/messages.inc.php:23
msgid "Blowfish secret"
@ -4348,8 +4346,8 @@ msgstr "CHAR-kolommen bewerken"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Gebruik de gebruiksvriendelijk editor voor SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) met syntaxmarkering en lijnnummers"
@ -4747,8 +4745,8 @@ msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
"Sorteer volgorde van elementen in een vreemdesleutel-afrolmenu; "
"[kbd]content[/kbd] is de gerefereerde data, [kbd]id[/kbd] is de sleutelwaarde"
"Sorteer volgorde van elementen in een vreemdesleutel-afrolmenu; [kbd]content"
"[/kbd] is de gerefereerde data, [kbd]id[/kbd] is de sleutelwaarde"
#: libraries/config/messages.inc.php:151
msgid "Foreign key dropdown order"
@ -4888,9 +4886,8 @@ msgstr "Paginatitels"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Browser titel balk tekst. Zie [doc@cfg_TitleTable]documentatie[/doc] voor "
"bruikbare codes."
@ -4955,8 +4952,8 @@ msgid ""
"documentation"
msgstr ""
"Configureer de phpMyAdmin-configuratie-opslag om toegang te krijgen tot "
"extra functionaliteit, zie [doc@linked-tables]phpMyAdmin-configuratie-"
"opslag[/doc] in de documentatie"
"extra functionaliteit, zie [doc@linked-tables]phpMyAdmin-configuratie-opslag"
"[/doc] in de documentatie"
#: libraries/config/messages.inc.php:206
msgid "Changes tracking"
@ -5354,8 +5351,8 @@ msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
"Open de pagina in het hoofdvenster ([kbd]main[/kbd]) of in een nieuwe "
"([kbd]new[/kbd])"
"Open de pagina in het hoofdvenster ([kbd]main[/kbd]) of in een nieuwe ([kbd]"
"new[/kbd])"
#: libraries/config/messages.inc.php:304
msgid "Logo link target"
@ -5696,8 +5693,8 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
"Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]bladwijzers[/a] te gebruiken, suggestie: [kbd]pma__bookmark[/kbd]"
"Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/bookmark]"
"bladwijzers[/a] te gebruiken, suggestie: [kbd]pma__bookmark[/kbd]"
#: libraries/config/messages.inc.php:381
msgid "Bookmark table"
@ -5705,8 +5702,8 @@ msgstr "Bladwijzertabel"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Laat dit veld leeg om geen kolomopmerkingen en mimetypes te ondersteunen, "
"suggestie: [kbd]pma__column_info[/kbd]"
@ -5778,8 +5775,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Laat dit veld leeg om de Designer niet te gebruiken, suggestie: "
"[kbd]pma__designer_coords[/kbd]"
"Laat dit veld leeg om de Designer niet te gebruiken, suggestie: [kbd]"
"pma__designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5790,9 +5787,8 @@ msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
"Zie voor meer informatie: [a@https://sourceforge.net/p/phpmyadmin/"
"bugs/2606/]PMA-bugtracker[/a] en [a@http://bugs.mysql.com/19588]MySQL Bugs[/"
"a]"
"Zie voor meer informatie: [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]"
"PMA-bugtracker[/a] en [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
#: libraries/config/messages.inc.php:398
msgid "Disable use of INFORMATION_SCHEMA"
@ -5822,8 +5818,8 @@ msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
msgstr ""
"Laat dit veld leeg om geen SQL-geschiedenis te ondersteunen, suggestie: "
"[kbd]pma__history[/kbd]"
"Laat dit veld leeg om geen SQL-geschiedenis te ondersteunen, suggestie: [kbd]"
"pma__history[/kbd]"
#: libraries/config/messages.inc.php:404
msgid "SQL query history table"
@ -5903,8 +5899,8 @@ msgid ""
msgstr ""
"Databank die wordt gebruikt om relaties, bladwijzers en PDF-eigenschappen op "
"te slaan. Zie [a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] voor meer "
"informatie. Laat dit veld leeg om dit uit te schakelen, suggestie: "
"[kbd]phpmyadmin[/kbd]"
"informatie. Laat dit veld leeg om dit uit te schakelen, suggestie: [kbd]"
"phpmyadmin[/kbd]"
#: libraries/config/messages.inc.php:419
msgid "Database name"
@ -5934,12 +5930,11 @@ msgstr "Recent gebruikte tabel"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/"
"relation]relation-links[/a] te ondersteunen, suggestie: [kbd]pma__relation[/"
"kbd]"
"Laat dit veld leeg om geen [a@http://wiki.phpmyadmin.net/pma/relation]"
"relation-links[/a] te ondersteunen, suggestie: [kbd]pma__relation[/kbd]"
#: libraries/config/messages.inc.php:425
msgid "Relation table"
@ -5955,8 +5950,8 @@ msgstr "Opdracht SHOW DATABASES"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Zie [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authenticatietypes[/"
"a] voor een voorbeeld"
@ -5992,8 +5987,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Laat dit veld leeg om geen PDF-schema te ondersteunen, suggestie: "
"[kbd]pma__table_coords[/kbd]"
"Laat dit veld leeg om geen PDF-schema te ondersteunen, suggestie: [kbd]"
"pma__table_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6072,8 +6067,8 @@ msgstr "Bij te houden opdrachten"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Laat dit veld leeg om het opvolgen van SQL queries niet te ondersteunen, "
"suggestie: [kbd]pma__tracking[/kbd]"
@ -6096,8 +6091,8 @@ msgstr "Automatisch versies aanmaken"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Laat dit veld leeg om geen gebruikersvoorkeuren op te slaan in de databank, "
"suggestie: [kbd]pma__userconfig[/kbd]"
@ -6109,42 +6104,40 @@ msgstr "Opslagtabel voor gebruikersvoorkeuren"
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Laat dit veld leeg om geen gebruikersvoorkeuren op te slaan in de databank, "
"suggestie: [kbd]pma__userconfig[/kbd]"
#: libraries/config/messages.inc.php:456
#| msgid "Use Tables"
msgid "Users table"
msgstr "Gebruikerstabel"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Laat dit veld leeg om geen gebruikersvoorkeuren op te slaan in de databank, "
"suggestie: [kbd]pma__userconfig[/kbd]"
#: libraries/config/messages.inc.php:458
#| msgid "Use Host Table"
msgid "User groups table"
msgstr "Gebruikersgroepentabel"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6275,8 +6268,8 @@ msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
"Toon link naar de uitvoer van [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
"Toon link naar de uitvoer van [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a]"
#: libraries/config/messages.inc.php:485
msgid "Show phpinfo() link"
@ -7733,27 +7726,22 @@ msgid "An error has occured while loading the navigation tree"
msgstr "Er is een fout opgetreden bij het laden van de navigatieboom"
#: libraries/navigation/Navigation.class.php:172
#| msgid "Events"
msgid "Events:"
msgstr "Gebeurtenissen:"
#: libraries/navigation/Navigation.class.php:173
#| msgid "Functions"
msgid "Functions:"
msgstr "Functies:"
#: libraries/navigation/Navigation.class.php:174
#| msgid "Procedures"
msgid "Procedures:"
msgstr "Procedures:"
#: libraries/navigation/Navigation.class.php:175
#| msgid "Tables"
msgid "Tables:"
msgstr "Tabellen:"
#: libraries/navigation/Navigation.class.php:176
#| msgid "Views"
msgid "Views:"
msgstr "Views:"
@ -8858,7 +8846,6 @@ msgid "User preferences"
msgstr "Gebruikersvoorkeuren"
#: libraries/relation.lib.php:264
#| msgid "Configuration: %s"
msgid "Configurable menus"
msgstr "Configureerbare menu's"
@ -10278,7 +10265,6 @@ msgid "Add privileges on the following table:"
msgstr "Rechten toevoegen op de volgende tabel:"
#: libraries/server_privileges.lib.php:2599
#| msgid "Edit server"
msgid "Edit user group"
msgstr "Gebruikersgroep bewerken"
@ -10353,7 +10339,6 @@ msgstr ""
#: libraries/server_privileges.lib.php:3229
#: libraries/server_privileges.lib.php:3878
#| msgid "Users"
msgid "User groups"
msgstr "Gebruikersgroepen"
@ -10361,21 +10346,21 @@ msgstr "Gebruikersgroepen"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Serverversie"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Databankserver"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Tabelopmerkingen"
#: libraries/server_privileges.lib.php:3260
@ -12681,8 +12666,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"U gebruikt het [kbd]config[/kbd]-authenticatietype en heeft de te gebruiken "
"gebruikersnaam en wachtwoord hierbij opgegeven voor automatisch aanmelden. "
@ -14701,9 +14686,9 @@ msgstr "concurrent_insert is ingesteld op 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Indien ingesteld op [kbd]nested[/kbd] wordt de opmerking enkel op basis "
#~ "van $cfg['LeftFrameTableSeparator'] gesplitst. Hierdoor krijgt enkel de "

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2012-09-01 12:11+0200\n"
"Last-Translator: gurjit dhillon <dhillon616@gmail.com>\n"
"Language-Team: Punjabi <http://l10n.cihar.com/projects/phpmyadmin/master/pa/"
@ -4123,8 +4123,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4645,9 +4645,8 @@ msgstr ""
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5385,8 +5384,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5579,8 +5578,8 @@ msgstr ""
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5597,8 +5596,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -5695,8 +5694,8 @@ msgstr ""
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -5715,8 +5714,8 @@ msgstr ""
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -5725,8 +5724,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -5735,8 +5734,8 @@ msgstr ""
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -9634,17 +9633,17 @@ msgstr ""
#: libraries/server_privileges.lib.php:3236
#: libraries/server_privileges.lib.php:3402
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr ""
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr ""
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr ""
#: libraries/server_privileges.lib.php:3260
@ -11663,8 +11662,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-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"
@ -4116,8 +4116,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4638,9 +4638,8 @@ msgstr ""
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5378,8 +5377,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5572,8 +5571,8 @@ msgstr ""
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5590,8 +5589,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -5688,8 +5687,8 @@ msgstr ""
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -5708,8 +5707,8 @@ msgstr ""
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -5718,8 +5717,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -5728,8 +5727,8 @@ msgstr ""
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -9627,17 +9626,17 @@ msgstr ""
#: libraries/server_privileges.lib.php:3236
#: libraries/server_privileges.lib.php:3402
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr ""
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr ""
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr ""
#: libraries/server_privileges.lib.php:3260
@ -11656,8 +11655,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

133
po/pl.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 11:28+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Polish <http://l10n.cihar.com/projects/phpmyadmin/master/pl/"
@ -4417,8 +4417,8 @@ msgstr "Edycja kolumny typu CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Użyj przyjaznego dla użytkownika edytora do edycji zapytań SQL ([a@http://"
"codemirror.net/]CodeMirror[/a]) z kolorowaniem składni i numerami linii"
@ -4966,9 +4966,8 @@ msgstr "Tytuły stron"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Określ tytuł. Przeczytaj szczegóły w [doc@cfg_TitleTable]dokumentacji[/doc], "
"żeby dowiedzieć się więcej."
@ -5436,8 +5435,8 @@ msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
"Otwieraj stronę w tym samym oknie ([kbd]main[/kbd]) lub w nowym oknie "
"([kbd]new[/kbd])"
"Otwieraj stronę w tym samym oknie ([kbd]main[/kbd]) lub w nowym oknie ([kbd]"
"new[/kbd])"
#: libraries/config/messages.inc.php:304
msgid "Logo link target"
@ -5793,8 +5792,8 @@ msgstr "Tabela zakładek"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Pozostaw puste bez uwag typu kolumn/mime, zasugerował: [kbd]pma_column_info[/"
"kbd]"
@ -5814,8 +5813,8 @@ msgstr "Kompresja połączenia"
#: libraries/config/messages.inc.php:386
msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
msgstr ""
"Sposób połączenia z serwerem; w razie niepewności, należy pozostawić "
"[kbd]tcp[/kbd]"
"Sposób połączenia z serwerem; w razie niepewności, należy pozostawić [kbd]tcp"
"[/kbd]"
#: libraries/config/messages.inc.php:387
msgid "Connection type"
@ -5831,8 +5830,8 @@ msgid ""
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
"Specjalny użytkownik MySQL z ograniczonymi uprawnieniami. Więcej informacji "
"jest dostępnych pod adresem: [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]"
"jest dostępnych pod adresem: [a@http://wiki.phpmyadmin.net/pma/controluser]"
"wiki[/a]"
#: libraries/config/messages.inc.php:390
msgid "Control user"
@ -5874,8 +5873,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Pozostaw puste, bez żadnego wsparcia projektantów, zaproponował: "
"[kbd]pma_designer_coords[/kbd]"
"Pozostaw puste, bez żadnego wsparcia projektantów, zaproponował: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5887,8 +5886,8 @@ msgid ""
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
"Więcej informacji jest dostępnych pod adresem: [a@https://sourceforge.net/p/"
"phpmyadmin/bugs/2606/]PMA bug tracker[/a] i [a@http://bugs.mysql."
"com/19588]MySQL Bugs[/a]"
"phpmyadmin/bugs/2606/]PMA bug tracker[/a] i [a@http://bugs.mysql.com/19588]"
"MySQL Bugs[/a]"
#: libraries/config/messages.inc.php:398
msgid "Disable use of INFORMATION_SCHEMA"
@ -5916,8 +5915,8 @@ msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
msgstr ""
"Pozostaw puste, bez zapytania poparcie historii SQL, zasugerował: "
"[kbd]pma_history[/kbd]"
"Pozostaw puste, bez zapytania poparcie historii SQL, zasugerował: [kbd]"
"pma_history[/kbd]"
#: libraries/config/messages.inc.php:404
msgid "SQL query history table"
@ -5990,8 +5989,8 @@ msgstr "Hasło dla uwierzytelniania konfiguracji"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Pozostaw puste, bez żadnego wsparcia PDF schematu, zaproponował: "
"[kbd]pma_pdf_pages[/kbd]"
"Pozostaw puste, bez żadnego wsparcia PDF schematu, zaproponował: [kbd]"
"pma_pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -6005,8 +6004,8 @@ msgid ""
msgstr ""
"Baza danych używana prze funkcje związków, zakładek i generowania PDF-ów. "
"Pełna informacja znajduje się na stronie [a@http://wiki.phpmyadmin.net/pma/"
"pmadb]pmadb[/a]. Puste pole oznacza brak obsługi. Domyślna wartość: "
"[kbd]phpmyadmin[/kbd]"
"pmadb]pmadb[/a]. Puste pole oznacza brak obsługi. Domyślna wartość: [kbd]"
"phpmyadmin[/kbd]"
#: libraries/config/messages.inc.php:419
msgid "Database name"
@ -6035,11 +6034,11 @@ msgstr "Ostatnio używane tabele"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Pozostaw puste, by nie obsługiwać [a@http://wiki.phpmyadmin.net/pma/"
"relation]relation-links[/a]. Sugerowana nazwa: [kbd]pma_relation[/kbd]"
"Pozostaw puste, by nie obsługiwać [a@http://wiki.phpmyadmin.net/pma/relation]"
"relation-links[/a]. Sugerowana nazwa: [kbd]pma_relation[/kbd]"
#: libraries/config/messages.inc.php:425
msgid "Relation table"
@ -6055,8 +6054,8 @@ msgstr "Polecenie SHOW DATABASES"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Zobacz przykład usługi pojedynczego logowania (Signon) [a@http://wiki."
"phpmyadmin.net/pma/auth_types#signon]authentication types[/a]"
@ -6092,8 +6091,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Pozostaw puste, aby nie obsługiwać schematu PDF. Sugerowana nazwa: "
"[kbd]pma_table_coords[/kbd]"
"Pozostaw puste, aby nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]"
"pma_table_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6120,8 +6119,8 @@ msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]"
msgstr ""
"Pozostaw puste, by nie obsługiwać schematu PDF. Sugerowana nazwa: "
"[kbd]pma_table_coords[/kbd]"
"Pozostaw puste, by nie obsługiwać schematu PDF. Sugerowana nazwa: [kbd]"
"pma_table_coords[/kbd]"
#: libraries/config/messages.inc.php:440
msgid "UI preferences table"
@ -6174,11 +6173,11 @@ msgstr "Instrukcje do śledzenia"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Puste pole oznacza brak wsparcia śledzenia zapytań SQL, zaproponował: "
"[kbd]pma_tracking[/kbd]"
"Puste pole oznacza brak wsparcia śledzenia zapytań SQL, zaproponował: [kbd]"
"pma_tracking[/kbd]"
#: libraries/config/messages.inc.php:450
msgid "SQL query tracking table"
@ -6197,8 +6196,8 @@ msgstr "Automatyczne tworzenie wersji"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Pozostaw puste, dla braku preferencji użytkownika magazynu w bazie. "
"Zasugerowano: [kbd]pma_designer_coords[/kbd]"
@ -6210,11 +6209,11 @@ msgstr "Tabela przechowująca preferencje użytkowników"
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Pozostaw puste, dla braku preferencji użytkownika magazynu w bazie. "
"Zasugerowano: [kbd]pma_designer_coords[/kbd]"
@ -6228,11 +6227,11 @@ msgstr "Użyj tabel"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Pozostaw puste, dla braku preferencji użytkownika magazynu w bazie. "
"Zasugerowano: [kbd]pma_designer_coords[/kbd]"
@ -6246,8 +6245,8 @@ msgstr "Użyj tabeli hostów"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6464,8 +6463,8 @@ msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
"Jeśli masz swoją nazwa użytkownika, ustaw ją tutaj (domyślnie "
"[kbd]anonymous[/kbd])"
"Jeśli masz swoją nazwa użytkownika, ustaw ją tutaj (domyślnie [kbd]anonymous"
"[/kbd])"
#: libraries/config/messages.inc.php:506 tbl_tracking.php:559
#: tbl_tracking.php:621
@ -6630,8 +6629,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
"Włącza format kompresji [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] dla operacji importu i eksportu"
"Włącza format kompresji [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP"
"[/a] dla operacji importu i eksportu"
#: libraries/config/messages.inc.php:540
msgid "ZIP"
@ -10500,21 +10499,21 @@ msgstr "Użytkownicy"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Wersja serwera"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Serwer bazy danych"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Komentarze tabeli"
#: libraries/server_privileges.lib.php:3260
@ -12593,9 +12592,9 @@ msgid ""
"Otherwise you will be only able to download or display it."
msgstr ""
"Proszę stworzyć serwer zapisu internetowej folderze [em]koniguracji[/em] w "
"głównym katalogu phpMyAdmina w sposób opisany w "
"[doc@setup_script]dokumentacji (po angielsku)[/doc]. W przeciwnym razie "
"będzie tylko mogli pobrać lub wyświetlić to."
"głównym katalogu phpMyAdmina w sposób opisany w [doc@setup_script]"
"dokumentacji (po angielsku)[/doc]. W przeciwnym razie będzie tylko mogli "
"pobrać lub wyświetlić to."
#: setup/frames/index.inc.php:60
msgid ""
@ -12849,8 +12848,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Ustaw [kbd]konfigurację[/kbd] typu uwierzytelniania i zawiera nazwę "
"użytkownika i hasło automatycznego logowania, która nie jest pożądanym "
@ -14874,13 +14873,13 @@ msgstr "concurrent_insert jest ustawiony na 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Gdy jest ustawione na [kbd]nested[/kbd], alias nazwy tabeli jest używany "
#~ "tylko do rozdzielania/zagnieżdżania tabel zgodnie z dyrektywą "
#~ "$cfg['LeftFrameTableSeparator']. A więc tylko katalog jest nazywany jako "
#~ "tylko do rozdzielania/zagnieżdżania tabel zgodnie z dyrektywą $cfg"
#~ "['LeftFrameTableSeparator']. A więc tylko katalog jest nazywany jako "
#~ "alias, a nazwa tabeli pozostaje niezmieniona"
#~ msgid "Display table comment instead of its name"

109
po/pt.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-20 08:18+0200\n"
"Last-Translator: Telma Gonzaga <novawebproject@gmail.com>\n"
"Language-Team: Portuguese <http://l10n.cihar.com/projects/phpmyadmin/master/"
@ -3284,8 +3284,8 @@ msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
"Falha ao limpar as preferências de interface da tabela (consulte "
"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)"
"Falha ao limpar as preferências de interface da tabela (consulte $cfg"
"['Servers'][$i]['MaxTableUiprefs'] %s)"
#: libraries/Table.class.php:1620
#, php-format
@ -4320,8 +4320,8 @@ msgid ""
"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
"authentication"
msgstr ""
"Frase secreta utilizada para encriptar cookies na autenticação por "
"[kbd]cookie[/kbd]"
"Frase secreta utilizada para encriptar cookies na autenticação por [kbd]"
"cookie[/kbd]"
#: libraries/config/messages.inc.php:23
msgid "Blowfish secret"
@ -4362,8 +4362,8 @@ msgid ""
"kbd] - allows newlines in columns"
msgstr ""
"Define que tipo de controles de edição devem ser utilizados pelas colunas "
"CHAR e VARCHAR; [kbd]input[/kbd] - permite limitar o tamanho do campo, "
"[kbd]textarea[/kbd] - permite quebra de linhas em colunas"
"CHAR e VARCHAR; [kbd]input[/kbd] - permite limitar o tamanho do campo, [kbd]"
"textarea[/kbd] - permite quebra de linhas em colunas"
#: libraries/config/messages.inc.php:31
msgid "CHAR columns editing"
@ -4371,8 +4371,8 @@ msgstr "Edição de colunas CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4929,9 +4929,8 @@ msgstr "Títulos das páginas"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5767,8 +5766,8 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
"Deixe em branco quando não há [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]bookmark[/a] suporte, sugerido: [kbd]pma_bookmark[/kbd]"
"Deixe em branco quando não há [a@http://wiki.phpmyadmin.net/pma/bookmark]"
"bookmark[/a] suporte, sugerido: [kbd]pma_bookmark[/kbd]"
#: libraries/config/messages.inc.php:381
msgid "Bookmark table"
@ -5777,11 +5776,11 @@ msgstr "Tabela de favoritos"
#: libraries/config/messages.inc.php:382
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
#| "[kbd]pma_column_info[/kbd]"
#| "Leave blank for no column comments/mime types, suggested: [kbd]"
#| "pma_column_info[/kbd]"
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Deixe em branco quando não houver colunas de comentário/mime type, "
"sugeridas: [kbd]pma_column_info[/kbd]"
@ -5816,8 +5815,8 @@ msgid ""
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
"Um utilizador especial MySQL será configurado com permissões limitadas, mais "
"informações disponíveis em [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]"
"informações disponíveis em [a@http://wiki.phpmyadmin.net/pma/controluser]wiki"
"[/a]"
#: libraries/config/messages.inc.php:390
msgid "Control user"
@ -5901,8 +5900,8 @@ msgstr "Ocultar bases de dados"
#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
#| "[kbd]pma_history[/kbd]"
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
@ -5984,8 +5983,8 @@ msgstr "Palavra-passe para config-auth"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Deixe em branco se não há suporte de esquema PDF, sugerido: "
"[kbd]pma_pdf_pages[/kbd]"
"Deixe em branco se não há suporte de esquema PDF, sugerido: [kbd]"
"pma_pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -6018,8 +6017,8 @@ msgstr "Porta do servidor"
#: libraries/config/messages.inc.php:422
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
#| "[kbd]pma_column_info[/kbd]"
#| "Leave blank for no column comments/mime types, suggested: [kbd]"
#| "pma_column_info[/kbd]"
msgid ""
"Leave blank for no \"persistent\" recently used tables across sessions, "
"suggested: [kbd]pma__recent[/kbd]"
@ -6037,11 +6036,11 @@ msgstr "Tabela utilizada recentemente"
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
#| "a] support, suggested: [kbd]pma_bookmark[/kbd]"
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Deixe em branco quando não há [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]bookmark[/a] suporte, sugerido: [kbd]pma_bookmark[/kbd]"
"Deixe em branco quando não há [a@http://wiki.phpmyadmin.net/pma/bookmark]"
"bookmark[/a] suporte, sugerido: [kbd]pma_bookmark[/kbd]"
#: libraries/config/messages.inc.php:425
msgid "Relation table"
@ -6057,8 +6056,8 @@ msgstr "MOSTRAR comandos DATABASES"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Consulte [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipos de "
"autenticação[/a] para obter um exemplo"
@ -6096,8 +6095,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Deixe em branco se não há suporte de esquema PDF, sugerido: "
"[kbd]pma_pdf_pages[/kbd]"
"Deixe em branco se não há suporte de esquema PDF, sugerido: [kbd]"
"pma_pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6111,8 +6110,8 @@ msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]"
msgstr ""
"Deixe em branco se não há suporte de esquema PDF, sugerido: "
"[kbd]pma_pdf_pages[/kbd]"
"Deixe em branco se não há suporte de esquema PDF, sugerido: [kbd]"
"pma_pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:438
msgid "Display columns table"
@ -6126,8 +6125,8 @@ msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]"
msgstr ""
"Deixe em branco se não há suporte de esquema PDF, sugerido: "
"[kbd]pma_pdf_pages[/kbd]"
"Deixe em branco se não há suporte de esquema PDF, sugerido: [kbd]"
"pma_pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:440
msgid "UI preferences table"
@ -6180,11 +6179,11 @@ msgstr "Itens"
#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
#| "[kbd]pma_history[/kbd]"
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Deixe em branco se não há suporte a histórico de consulta SQL, sugerido: "
"[kbd]pma_history[/kbd]"
@ -6210,8 +6209,8 @@ msgstr "Versão do servidor"
#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
#| "kbd]"
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Deixe em branco sem suporte de Designer, sugerido: [kbd]pma_designer_coords[/"
"kbd]"
@ -6226,8 +6225,8 @@ msgstr ""
#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
#| "kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Deixe em branco sem suporte de Designer, sugerido: [kbd]pma_designer_coords[/"
"kbd]"
@ -6244,8 +6243,8 @@ msgstr "Usar Tabelas"
#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
#| "kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Deixe em branco sem suporte de Designer, sugerido: [kbd]pma_designer_coords[/"
"kbd]"
@ -8832,8 +8831,8 @@ msgstr ""
#: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31
#, fuzzy
#| msgid ""
#| "ys the contents of the field as-is, without running it through "
#| "ecialchars(). That is, the field is assumed to contain valid HTML."
#| "ys the contents of the field as-is, without running it through ecialchars"
#| "(). That is, the field is assumed to contain valid HTML."
msgid ""
"Displays the contents of the column as-is, without running it through "
"htmlspecialchars(). That is, the column is assumed to contain valid HTML."
@ -10497,21 +10496,21 @@ msgstr "Utilizadores"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Versão do servidor"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Servidor de base de dados"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Comentários da tabela"
#: libraries/server_privileges.lib.php:3260
@ -12718,8 +12717,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -4299,8 +4299,8 @@ msgid ""
"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
"authentication"
msgstr ""
"Frase secreta utilizada para encriptar cookies na autenticação por "
"[kbd]cookie[/kbd]"
"Frase secreta utilizada para encriptar cookies na autenticação por [kbd]"
"cookie[/kbd]"
#: libraries/config/messages.inc.php:23
msgid "Blowfish secret"
@ -4341,8 +4341,8 @@ msgid ""
"kbd] - allows newlines in columns"
msgstr ""
"Define quais tipo de controles de edição devem ser utilizados pelas colunas "
"CHAR e VARCHAR; [kbd]input[/kbd] - permite limitar o tamanho do campo "
"[kbd]textarea[/kbd] - permite quebras de linha em colunas"
"CHAR e VARCHAR; [kbd]input[/kbd] - permite limitar o tamanho do campo [kbd]"
"textarea[/kbd] - permite quebras de linha em colunas"
#: libraries/config/messages.inc.php:31
msgid "CHAR columns editing"
@ -4350,11 +4350,11 @@ msgstr "Edição de colunas CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Um editor amigável para editar consultas SQL ([a@http://codemirror."
"net/]CodeMirror[/a]) com destaque de sintaxe e número de linhas"
"Um editor amigável para editar consultas SQL ([a@http://codemirror.net/]"
"CodeMirror[/a]) com destaque de sintaxe e número de linhas"
#: libraries/config/messages.inc.php:33
msgid "Enable CodeMirror"
@ -4890,13 +4890,12 @@ msgstr "Títulos de páginas"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Especifica o texto da barra de título do browser. Veja a "
"[doc@cfg_TitleTable]documentação[/doc] para strings mágicas que podem ser "
"usadas para conseguir valores especiais."
"Especifica o texto da barra de título do browser. Veja a [doc@cfg_TitleTable]"
"documentação[/doc] para strings mágicas que podem ser usadas para conseguir "
"valores especiais."
#: libraries/config/messages.inc.php:194
#: libraries/navigation/NavigationHeader.class.php:209
@ -5017,8 +5016,8 @@ msgid ""
"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
msgstr ""
"Se você quiser usar o Validador SQL, você deve estar ciente de que "
"[strong]todas as instruções SQL são armazenadas de forma anônima para fins "
"Se você quiser usar o Validador SQL, você deve estar ciente de que [strong]"
"todas as instruções SQL são armazenadas de forma anônima para fins "
"estatísticos[/strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL "
"Validator[/a], Copyright 2002 Upright Database Technology. Todos os direitos "
"reservados.[/em]"
@ -5701,8 +5700,8 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
"Deixe em branco para não permitir [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]marcações[/a], sugerido: [kbd]pma_bookmark[/kbd]"
"Deixe em branco para não permitir [a@http://wiki.phpmyadmin.net/pma/bookmark]"
"marcações[/a], sugerido: [kbd]pma_bookmark[/kbd]"
#: libraries/config/messages.inc.php:381
msgid "Bookmark table"
@ -5710,11 +5709,11 @@ msgstr "Tabela de favoritos"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Deixe em branco quando não houver comentários/tipos mime, sugestão: "
"[kbd]pma_column_info[/kbd]"
"Deixe em branco quando não houver comentários/tipos mime, sugestão: [kbd]"
"pma_column_info[/kbd]"
#: libraries/config/messages.inc.php:383
msgid "Column information table"
@ -5784,8 +5783,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Deixe em branco quando não houver suporte ao Designer, sugestão: "
"[kbd]pma_designer_coords[/kbd]"
"Deixe em branco quando não houver suporte ao Designer, sugestão: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5933,8 +5932,8 @@ msgstr "Tabelas recentemente usadas"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Deixe em branco se não houver suporte a [a@http://wiki.phpmyadmin.net/pma/"
"relation]links de relação[/a], sugestão: [kbd]pma_relation[/kbd]"
@ -5953,8 +5952,8 @@ msgstr "Comando SHOW DATABASES"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Veja os [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]tipos de "
"autenticação [/a] para ver um exemplo"
@ -5990,8 +5989,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Deixe em branco se não houver suporte a esquema PDF, sugestão: "
"[kbd]pma__table_coords[/kbd]"
"Deixe em branco se não houver suporte a esquema PDF, sugestão: [kbd]"
"pma__table_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6015,8 +6014,8 @@ msgid ""
"suggested: [kbd]pma__table_uiprefs[/kbd]"
msgstr ""
"Deixe em branco para não usar tabelas' \"persistentes\" com preferências de "
"interfaces de usuário em todas as sessões, sugestão: "
"[kbd]pma__table_uiprefs[/kbd]"
"interfaces de usuário em todas as sessões, sugestão: [kbd]pma__table_uiprefs"
"[/kbd]"
#: libraries/config/messages.inc.php:440
msgid "UI preferences table"
@ -6068,8 +6067,8 @@ msgstr "Comandos a rastrear"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Deixe em branco para não oferecer suporte a rastreamento de consultas SQL, "
"sugestão: [kbd]pma__tracking[/kbd]"
@ -6092,8 +6091,8 @@ msgstr "Criar versões automaticamente"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Deixe em branco para não usar armazenamento de preferências do usuário em "
"banco de dados, sugestão: [kbd]pma__userconfig[/kbd]"
@ -6104,11 +6103,11 @@ msgstr "Tabela de armazenamento de preferências de usuário"
#: libraries/config/messages.inc.php:455
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Deixe em branco para desativar a opção de menus configuráveis, sugestão: "
"[kbd]pma__userconfig[/kbd]"
@ -6121,11 +6120,11 @@ msgstr "Tabelas dos usuários"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Deixe em branco para não usar armazenamento de preferências do usuário em "
"banco de dados, sugestão: [kbd]pma__userconfig[/kbd]"
@ -6139,8 +6138,8 @@ msgstr "Tabela de grupos de usuário"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6270,8 +6269,8 @@ msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
"Exibe link para saída de [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
"Exibe link para saída de [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a]"
#: libraries/config/messages.inc.php:485
msgid "Show phpinfo() link"
@ -6424,8 +6423,8 @@ msgid ""
msgstr ""
"Insira os proxies como [kbd]IP: Cabeçalho HTTP de confiança[/kbd]. O exemplo "
"seguinte especifica que o phpMyAdmin deve confiar no cabeçalho "
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) vindo do proxy 1.2.3.4:[br]"
"[kbd]1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
"HTTP_X_FORWARDED_FOR (X-Forwarded-For) vindo do proxy 1.2.3.4:[br][kbd]"
"1.2.3.4: HTTP_X_FORWARDED_FOR[/kbd]"
#: libraries/config/messages.inc.php:522
msgid "List of trusted proxies for IP allow/deny"
@ -6930,8 +6929,8 @@ msgid ""
"A compressed file's name must end in <b>.[format].[compression]</b>. "
"Example: <b>.sql.zip</b>"
msgstr ""
"O nome de um arquivo compactado deve terminar em <b>.[formato]."
"[compactação]</b>. Exemplo: <b>.sql.zip</b>"
"O nome de um arquivo compactado deve terminar em <b>.[formato].[compactação]"
"</b>. Exemplo: <b>.sql.zip</b>"
#: libraries/display_import.lib.php:245
msgid "File uploads are not allowed on this server."
@ -10333,21 +10332,21 @@ msgstr "Usuários"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Versão do servidor"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Servidor de banco de dados"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Comentários da tabela"
#: libraries/server_privileges.lib.php:3260
@ -12378,9 +12377,8 @@ msgid ""
"Otherwise you will be only able to download or display it."
msgstr ""
"Por favor, crie a pasta [em]config[/em] com permissão de escrita no servidor "
"web, no diretório raiz do phpMyAdmin conforme descrito na "
"[doc@setup_script]documentação[/doc]. Caso contrário, você somente poderá "
"baixá-la ou exibi-la."
"web, no diretório raiz do phpMyAdmin conforme descrito na [doc@setup_script]"
"documentação[/doc]. Caso contrário, você somente poderá baixá-la ou exibi-la."
#: setup/frames/index.inc.php:60
msgid ""
@ -12639,14 +12637,14 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Você [kbd]configurou[/kbd] o tipo de autenticação e incluiu o usuário e "
"senha para auto-login, o que não é uma opção desejável para live hosts. "
"Qualquer um que souber ou descobrir sua URL do phpMyAdmin pode ter acesso "
"direto ao painel de controle. Configure o %stipo de autenticação%s para "
"[kbd]cookie[/kbd] ou [kbd]http[/kbd]."
"direto ao painel de controle. Configure o %stipo de autenticação%s para [kbd]"
"cookie[/kbd] ou [kbd]http[/kbd]."
#: setup/lib/index.lib.php:236
#, php-format
@ -14643,13 +14641,13 @@ msgstr "concurrent_insert está com valor 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Ao definir este [kbd]aninhamento[/kbd], o alias da tabela é apenas usado "
#~ "para dividir/aninhar as tabelas de acordo com a "
#~ "$cfg['LeftFrameTableSeparator'] diretiva, somente a pasta é chamada pelo "
#~ "para dividir/aninhar as tabelas de acordo com a $cfg"
#~ "['LeftFrameTableSeparator'] diretiva, somente a pasta é chamada pelo "
#~ "alias, o nome da tabela continua inalterado"
#~ msgid "Display table comment instead of its name"

142
po/ro.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 11:14+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Romanian <http://l10n.cihar.com/projects/phpmyadmin/master/ro/"
@ -4531,8 +4531,8 @@ msgstr "Editare coloane CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5107,9 +5107,8 @@ msgstr "Titluri de pagini"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Specificaţi textul din bara de titlu a browser-ului. Consultaţi "
"[doc@cfg_TitleTable] documentaţia [/doc] pentru siruri de caractere magice "
@ -5963,9 +5962,9 @@ msgid ""
"authentication[/a] (not located in your document root; suggested: /etc/"
"swekey.conf)"
msgstr ""
"Calea către fișierul de configurare pentru [a@http://swekey."
"com]autentificarea hardware SweKey [/a] (ce nu se află în rădăcină; "
"sugestie: /etc/swekey.conf)"
"Calea către fișierul de configurare pentru [a@http://swekey.com]"
"autentificarea hardware SweKey [/a] (ce nu se află în rădăcină; sugestie: /"
"etc/swekey.conf)"
#: libraries/config/messages.inc.php:377
msgid "SweKey config file"
@ -5998,11 +5997,11 @@ msgstr "Tabelul de bookmark-uri"
#: libraries/config/messages.inc.php:382
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
#| "[kbd]pma_column_info[/kbd]"
#| "Leave blank for no column comments/mime types, suggested: [kbd]"
#| "pma_column_info[/kbd]"
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Lăsați necompletat dacă nu doriți comentarii pentru coloane/mime types, "
"sugestie: [kbd]pma_column_info[/kbd]"
@ -6092,8 +6091,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Lăsați necompletat dacă nu doriți suport pentru Designeri, sugestie: "
"[kbd]pma_designer_coords[/kbd]"
"Lăsați necompletat dacă nu doriți suport pentru Designeri, sugestie: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -6104,9 +6103,8 @@ msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
"Mai multe informații pe [a@https://sourceforge.net/p/phpmyadmin/"
"bugs/2606/]PMA bug tracker[/a] și pe [a@http://bugs.mysql.com/19588]MySQL "
"Bugs[/a]"
"Mai multe informații pe [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]"
"PMA bug tracker[/a] și pe [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
#: libraries/config/messages.inc.php:398
msgid "Disable use of INFORMATION_SCHEMA"
@ -6133,8 +6131,8 @@ msgstr "Ascunde baze de date"
#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
#| "[kbd]pma_history[/kbd]"
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
@ -6215,8 +6213,8 @@ msgstr "Parola pentru „config auth”"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Lăsați necompletat dacă nu doriți suport PDF schema, sugesti: "
"[kbd]pma_pdf_pages[/kbd]"
"Lăsați necompletat dacă nu doriți suport PDF schema, sugesti: [kbd]"
"pma_pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:417
#, fuzzy
@ -6231,8 +6229,8 @@ msgid ""
msgstr ""
"Bază de date folosită pentru relații, bookmarks și proprietăți PDF. Vedeți "
"[a@http://wiki.phpmyadmin.net/pma/pmadb]pmadb[/a] pentru informații "
"complete. Lăsați necompletat dacă nu doriți suport. Sugestie: "
"[kbd]phpmyadmin[/kbd]"
"complete. Lăsați necompletat dacă nu doriți suport. Sugestie: [kbd]phpmyadmin"
"[/kbd]"
#: libraries/config/messages.inc.php:419
#, fuzzy
@ -6270,8 +6268,8 @@ msgstr "Tabel folosit recent"
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
#| "links[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Lăsați necompletat dacă nu doriți suport [a@http://wiki.phpmyadmin.net/pma/"
"relation]relation-links[/a], sugestie: [kbd]pma_relation[/kbd]"
@ -6292,11 +6290,11 @@ msgstr "comanda SHOW DATABASES"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Vezi [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] pentru un exemplu"
"Vezi [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] pentru un exemplu"
#: libraries/config/messages.inc.php:429
#, fuzzy
@ -6332,8 +6330,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Lăsați necompletat dacă nu doriți suport PDF schema, sugestie: "
"[kbd]pma_table_coords[/kbd]"
"Lăsați necompletat dacă nu doriți suport PDF schema, sugestie: [kbd]"
"pma_table_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6367,8 +6365,8 @@ msgid ""
"suggested: [kbd]pma__table_uiprefs[/kbd]"
msgstr ""
"Lăsați necompletat dacă nu doriți suport \"persistent\" pentru preferințele "
"Interfeței cu Utilizatorul ale tabelului peste sesiuni, sugestie: "
"[kbd]pma_table_uiprefs[/kbd]"
"Interfeței cu Utilizatorul ale tabelului peste sesiuni, sugestie: [kbd]"
"pma_table_uiprefs[/kbd]"
#: libraries/config/messages.inc.php:440
msgid "UI preferences table"
@ -6423,11 +6421,11 @@ msgstr "Declarații de urmărit"
#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query tracking support, suggested: "
#| "[kbd]pma_tracking[/kbd]"
#| "Leave blank for no SQL query tracking support, suggested: [kbd]"
#| "pma_tracking[/kbd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Lăsați necompletat dacă nu doriți suport pentru urmărirea interogărilor SQL, "
"sugestie: [kbd]pma_tracking[/kbd]"
@ -6454,11 +6452,11 @@ msgstr "Regim de recuperare automată"
#: libraries/config/messages.inc.php:453
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Lăsați necompletat dacă nu doriți stocarea preferințelor utilizatorilor în "
"baza de date, sugestie: [kbd]pma_userconfig[/kbd]"
@ -6470,11 +6468,11 @@ msgstr "Tabelul de stocare a preferințelor utilizatorului"
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Lăsați necompletat dacă nu doriți stocarea preferințelor utilizatorilor în "
"baza de date, sugestie: [kbd]pma_userconfig[/kbd]"
@ -6488,11 +6486,11 @@ msgstr "Utilizare tabele"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Lăsați necompletat dacă nu doriți stocarea preferințelor utilizatorilor în "
"baza de date, sugestie: [kbd]pma_userconfig[/kbd]"
@ -6506,8 +6504,8 @@ msgstr "Utilizare tabel gazde"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6539,8 +6537,8 @@ msgstr "Numele \"verbose\" al acestui server"
#: libraries/config/messages.inc.php:465
msgid "Whether a user should be displayed a &quot;show all (rows)&quot; button"
msgstr ""
"Dacă unui utilizator să i se afișeze un buton &quot;arata-le pe "
"toate(randurile&quot;"
"Dacă unui utilizator să i se afișeze un buton &quot;arata-le pe toate"
"(randurile&quot;"
#: libraries/config/messages.inc.php:466
msgid "Allow to display all the rows"
@ -6730,8 +6728,8 @@ msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
"Dacă aveți un nume de utilizator, specificați-l aici ( default este "
"[kbd]anonymous[/kbd] )"
"Dacă aveți un nume de utilizator, specificați-l aici ( default este [kbd]"
"anonymous[/kbd] )"
#: libraries/config/messages.inc.php:506 tbl_tracking.php:559
#: tbl_tracking.php:621
@ -6899,8 +6897,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
"Activați compresia în format [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] pentru operațiile de import și export"
"Activați compresia în format [a@http://en.wikipedia.org/wiki/ZIP_"
"(file_format)]ZIP[/a] pentru operațiile de import și export"
#: libraries/config/messages.inc.php:540
msgid "ZIP"
@ -9610,9 +9608,9 @@ msgid ""
"Make sure, you have unique server-id in your configuration file (my.cnf). If "
"not, please add the following line into [mysqld] section:"
msgstr ""
"Asigurați-vă că aveți un id al server-ului unic în fișierul de "
"configurare(my.cnf). Dacă nu, vă rugăm să adăugați următoarea linie în "
"secțiunea [mysqld]:"
"Asigurați-vă că aveți un id al server-ului unic în fișierul de configurare"
"(my.cnf). Dacă nu, vă rugăm să adăugați următoarea linie în secțiunea "
"[mysqld]:"
#: libraries/replication_gui.lib.php:384 libraries/replication_gui.lib.php:761
#: libraries/server_privileges.lib.php:1150
@ -10976,21 +10974,21 @@ msgstr "Utilizatori"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Versiune server"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database for user"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Bază de date pentru utilizatorul"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table removal"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Denumire tabel"
#: libraries/server_privileges.lib.php:3260
@ -13220,8 +13218,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236
@ -15188,14 +15186,14 @@ msgstr "concurrent_insert este setat cu 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Când setați [kbd]nested[/kbd], alias-ul numelui tabelului este folosit "
#~ "doar pentru a împărți/grupa tabelele conform directivei "
#~ "$cfg['LeftFrameTableSeparator'], astfel încât doar numele folder-ului va "
#~ "fi ca alias-ul, numele tabelului rămânând neschimbat"
#~ "doar pentru a împărți/grupa tabelele conform directivei $cfg"
#~ "['LeftFrameTableSeparator'], astfel încât doar numele folder-ului va fi "
#~ "ca alias-ul, numele tabelului rămânând neschimbat"
#~ msgid "Display table comment instead of its name"
#~ msgstr "Afișează comentariul tabelului în loc de numele acestuia"

116
po/ru.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 11:29+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Russian <http://l10n.cihar.com/projects/phpmyadmin/master/ru/"
@ -4301,8 +4301,8 @@ msgid ""
"cross-frame scripting attacks"
msgstr ""
"Включение данного параметра позволяет странице расположенной на другом "
"домене вызвать phpMyAdmin внутри фрейма, что является потенциальной "
"[strong]дырой в безопасности[/strong] допуская возможность XFS (Cross Frame "
"домене вызвать phpMyAdmin внутри фрейма, что является потенциальной [strong]"
"дырой в безопасности[/strong] допуская возможность XFS (Cross Frame "
"Scripting)"
#: libraries/config/messages.inc.php:20
@ -4370,11 +4370,11 @@ msgstr "Редактирование полей типа CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Использовать визуальный редактор SQL запросов ([a@http://codemirror."
"net/]CodeMirror[/a]) с подсветкой синтаксиса и нумерацией строк"
"Использовать визуальный редактор SQL запросов ([a@http://codemirror.net/]"
"CodeMirror[/a]) с подсветкой синтаксиса и нумерацией строк"
#: libraries/config/messages.inc.php:33
msgid "Enable CodeMirror"
@ -4913,9 +4913,8 @@ msgstr "Заголовки страниц"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Определите текст заголовка браузера. Для ввода особых значений используйте "
"подставные строки, которые описаны в [doc@cfg_TitleTable]документации[/doc]."
@ -5725,9 +5724,8 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
"Для отключения поддержки [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]закладок[/a] оставьте поле пустым, рекомендуется: "
"[kbd]pma__bookmark[/kbd]"
"Для отключения поддержки [a@http://wiki.phpmyadmin.net/pma/bookmark]закладок"
"[/a] оставьте поле пустым, рекомендуется: [kbd]pma__bookmark[/kbd]"
#: libraries/config/messages.inc.php:381
msgid "Bookmark table"
@ -5735,8 +5733,8 @@ msgstr "Таблица закладок"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Для отключения поддержки комментариев/mime-типов полей оставьте поле пустым, "
"рекомендуется: [kbd]pma__column_info[/kbd]"
@ -5917,8 +5915,8 @@ msgstr "Прописанный пароль"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Для отключения поддержки PDF схемы оставьте поле пустым, рекомендуется: "
"[kbd]pma__pdf_pages[/kbd]"
"Для отключения поддержки PDF схемы оставьте поле пустым, рекомендуется: [kbd]"
"pma__pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -5931,9 +5929,9 @@ msgid ""
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
"База данных используемая для расширенных функций: связей, закладок, и PDF. "
"Для более полной информации смотрите [a@http://wiki.phpmyadmin.net/pma/"
"pmadb]pmadb[/a]. Для отключения поддержки, оставьте поле пустым. "
"Рекомендуется: [kbd]phpmyadmin[/kbd]"
"Для более полной информации смотрите [a@http://wiki.phpmyadmin.net/pma/pmadb]"
"pmadb[/a]. Для отключения поддержки, оставьте поле пустым. Рекомендуется: "
"[kbd]phpmyadmin[/kbd]"
#: libraries/config/messages.inc.php:419
msgid "Database name"
@ -5963,12 +5961,12 @@ msgstr "Недавно использованная таблица"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Для отключения поддержки [a@http://wiki.phpmyadmin.net/pma/"
"relation]связанных таблиц[/a] оставьте поле пустым, рекомендуется: "
"[kbd]pma__relation[/kbd]"
"Для отключения поддержки [a@http://wiki.phpmyadmin.net/pma/relation]"
"связанных таблиц[/a] оставьте поле пустым, рекомендуется: [kbd]pma__relation"
"[/kbd]"
#: libraries/config/messages.inc.php:425
msgid "Relation table"
@ -5984,8 +5982,8 @@ msgstr "Команда SHOW DATABASES"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Для примера смотрите раздел [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]типы идентификации[/a]"
@ -6021,8 +6019,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Для отключения поддержки PDF схемы оставьте поле пустым, рекомендуется: "
"[kbd]pma__table_coords[/kbd]"
"Для отключения поддержки PDF схемы оставьте поле пустым, рекомендуется: [kbd]"
"pma__table_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6100,8 +6098,8 @@ msgstr "Слежение за выражениями"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Для отключения поддержки слежения за SQL запросами оставьте поле пустым, "
"рекомендуется: [kbd]pma__tracking[/kbd]"
@ -6124,8 +6122,8 @@ msgstr "Автоматическое создание версий"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Для отключения возможности хранения пользовательских настроек в базе данных "
"оставьте поле пустым, рекомендуется: [kbd]pma__userconfig[/kbd]"
@ -6137,11 +6135,11 @@ msgstr "Таблица хранения настроек пользовател
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Для отключения возможности хранения пользовательских настроек в базе данных "
"оставьте поле пустым, рекомендуется: [kbd]pma__userconfig[/kbd]"
@ -6155,11 +6153,11 @@ msgstr "Использовать таблицы"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Для отключения возможности хранения пользовательских настроек в базе данных "
"оставьте поле пустым, рекомендуется: [kbd]pma__userconfig[/kbd]"
@ -6173,8 +6171,8 @@ msgstr "Использовать таблицу хостов"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6303,8 +6301,8 @@ msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
"Вывести ссылку для отображения [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
"Вывести ссылку для отображения [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a]"
#: libraries/config/messages.inc.php:485
msgid "Show phpinfo() link"
@ -10378,21 +10376,21 @@ msgstr "Пользователи"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Версия сервера"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Сервер баз данных"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Комментарии к таблице"
#: libraries/server_privileges.lib.php:3260
@ -12454,8 +12452,8 @@ msgid ""
"level directory as described in [doc@setup_script]documentation[/doc]. "
"Otherwise you will be only able to download or display it."
msgstr ""
"Пожалуйста, создайте на сервере в корневой директории phpMyAdmin каталог "
"[em]config[/em] и установите у него разрешение на запись, как описано в "
"Пожалуйста, создайте на сервере в корневой директории phpMyAdmin каталог [em]"
"config[/em] и установите у него разрешение на запись, как описано в "
"[doc@setup_script]документации[/doc]. В противном случае вы сможете только "
"скачать, или просмотреть его."
@ -12474,8 +12472,8 @@ msgid ""
"If your server is also configured to accept HTTPS requests follow [a@%s]this "
"link[/a] to use a secure connection."
msgstr ""
"Если ваш сервер настроен также и на приём HTTPS запросов, перейдите по [a@"
"%s]данной ссылке[/a] для использования безопасного соединения."
"Если ваш сервер настроен также и на приём HTTPS запросов, перейдите по [a@%s]"
"данной ссылке[/a] для использования безопасного соединения."
#: setup/frames/index.inc.php:68
msgid "Insecure connection"
@ -12718,8 +12716,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Вы установили [kbd]config[/kbd] идентификацию и ввели имя пользователя с "
"паролем для автоматического входа, что крайне не рекомендуется для рабочего "
@ -14744,13 +14742,13 @@ msgstr "concurrent_insert установлен в 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "При выборе [kbd]nested[/kbd], комментарий таблицы будет выведен только у "
#~ "корневого значения, разделенных указанной в директиве "
#~ "$cfg['LeftFrameTableSeparator'] строкой, таблиц"
#~ "корневого значения, разделенных указанной в директиве $cfg"
#~ "['LeftFrameTableSeparator'] строкой, таблиц"
#~ msgid "Display table comment instead of its name"
#~ msgstr "Комментарий таблицы вместо имени"

109
po/si.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-12 14:54+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Sinhala <http://l10n.cihar.com/projects/phpmyadmin/master/si/"
@ -638,8 +638,8 @@ msgid ""
"[doc@faq1-16]FAQ 1.16[/doc]."
msgstr ""
"ආනයනය සඳහා දත්ත කිසිවක් නොලැබුණි. ගොනුව ආනයනය සඳහා යොමු නොකිරීම හෝ යොමු කල ගොනුවේ "
"විශාලත්වය PHP වින්‍යාසයන්හි අනුමත ප්‍රමාණයට වැඩ විශාල වීම මීට හේතු විය හැකිය. "
"[doc@faq1-16]FAQ 1.16[/doc] බලන්න."
"විශාලත්වය PHP වින්‍යාසයන්හි අනුමත ප්‍රමාණයට වැඩ විශාල වීම මීට හේතු විය හැකිය. [doc@faq1-16]"
"FAQ 1.16[/doc] බලන්න."
#: import.php:467
msgid ""
@ -4262,8 +4262,8 @@ msgstr "CHAR තීරු සංස්කරණය"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"විමසුම් සංස්කරණය සඳහා, පේළි අංක සහිත, වාක්‍ය වින්‍යාස ඉස්මතු කෙරෙන [a@http://codemirror."
"net/]CodeMirror[/a] සංස්කාරකය භාවිතා කරන්න"
@ -4796,9 +4796,8 @@ msgstr "පිටු නාම"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"බව්සරයේ මාතෘකා පටියේ දැක්වෙන පෙළ සඳහන් කරයි. මේ සඳහා යොදාගත හැකි විශේෂ අගයන් ගෙනදෙන "
"වචන දැනගැනීමට [doc@cfg_TitleTable]ලියකියවිලි[/doc] බලන්න."
@ -5580,8 +5579,8 @@ msgstr "පොත්සලකුණු ගොනුව"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"තීර විස්තර/mime වර්ග විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න. යෝජිත: [kbd]pma__column_info[/"
"kbd]"
@ -5693,8 +5692,8 @@ msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
msgstr ""
"SQL විමසුම් ඉතිහාසය රඳවා ගැනීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: "
"[kbd]pma__history[/kbd]"
"SQL විමසුම් ඉතිහාසය රඳවා ගැනීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]"
"pma__history[/kbd]"
#: libraries/config/messages.inc.php:404
msgid "SQL query history table"
@ -5753,8 +5752,8 @@ msgstr "config සත්‍යාපනය සඳහා මුරපදය"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: "
"[kbd]pma__pdf_pages[/kbd]"
"ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]"
"pma__pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -5796,8 +5795,8 @@ msgstr "මෑතදී භාවිතා වූ වගුව"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/relation]වගු අතර සම්බන්ධතා දැක්වෙන සබැඳි[/a] "
"විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__relation[/kbd]"
@ -5816,8 +5815,8 @@ msgstr "SHOW DATABASES විධානය"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"උදාහරණයක් ලෙස [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]සත්‍යාපන ක්‍රම[/"
"a] බලන්න"
@ -5851,8 +5850,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: "
"[kbd]pma__table_coords[/kbd]"
"ක්‍රමානුරූපය PDF ලෙස අපනයනය කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]"
"pma__table_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -5863,8 +5862,8 @@ msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]"
msgstr ""
"දර්ෂිත තීර පිලිබඳ දත්ත අඩංගු වගුව. විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න; යෝජිත: "
"[kbd]pma__table_info[/kbd]"
"දර්ෂිත තීර පිලිබඳ දත්ත අඩංගු වගුව. විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න; යෝජිත: [kbd]"
"pma__table_info[/kbd]"
#: libraries/config/messages.inc.php:438
msgid "Display columns table"
@ -5926,8 +5925,8 @@ msgstr "අවධානය සක්‍රීය කල යුතු ප්‍
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"SQL විමසුම් අවධානය විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න, යෝජිත: [kbd]pma__tracking[/kbd]"
@ -5947,8 +5946,8 @@ msgstr "ස්වයංක්‍රියව අනුවාද සාදන්
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"භාවිතා කරන්නාගේ අභිරුචි දත්තගබඩාවේ ගබඩා කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න; යෝජිත: "
"[kbd]pma__userconfig[/kbd]"
@ -5960,11 +5959,11 @@ msgstr "භාවිතා කරන්නාගේ අභිරුචි වග
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"භාවිතා කරන්නාගේ අභිරුචි දත්තගබඩාවේ ගබඩා කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න; යෝජිත: "
"[kbd]pma__userconfig[/kbd]"
@ -5978,11 +5977,11 @@ msgstr "වගු භාවිතා කරන්න"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"භාවිතා කරන්නාගේ අභිරුචි දත්තගබඩාවේ ගබඩා කිරීමේ විශේෂාංගය අනවශ්‍ය නම් හිස්ව තබන්න; යෝජිත: "
"[kbd]pma__userconfig[/kbd]"
@ -5996,8 +5995,8 @@ msgstr "දායක වගුව භාවිතා කරන්න"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6191,8 +6190,8 @@ msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
"ඔබට සාදා ගත් භාවිත නාමයක් ඇත්නම් එය මෙහි සඳහන් කරන්න (නැත්නම් පෙරනිමි අගය වන "
"[kbd]anonymous[/kbd] භාවිතා කෙරේ)"
"ඔබට සාදා ගත් භාවිත නාමයක් ඇත්නම් එය මෙහි සඳහන් කරන්න (නැත්නම් පෙරනිමි අගය වන [kbd]"
"anonymous[/kbd] භාවිතා කෙරේ)"
#: libraries/config/messages.inc.php:506 tbl_tracking.php:559
#: tbl_tracking.php:621
@ -6346,8 +6345,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
"ආනයන අපනයන මෙහෙයුම් සඳහා [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] හැකිළීම යොදාගැනීම සක්‍රීය කරන්න"
"ආනයන අපනයන මෙහෙයුම් සඳහා [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP"
"[/a] හැකිළීම යොදාගැනීම සක්‍රීය කරන්න"
#: libraries/config/messages.inc.php:540
msgid "ZIP"
@ -8194,8 +8193,8 @@ msgid ""
"(1,2,3)</code>"
msgstr ""
"සියලුම <code>INSERT</code> ප්‍රකාශ වල තීර නම් ඇතුලත් කරන්න <br /> &nbsp; &nbsp; "
"&nbsp; උදාහරණ: <code>INSERT INTO tbl_name (col_A,col_B,col_C) VALUES "
"(1,2,3)</code>"
"&nbsp; උදාහරණ: <code>INSERT INTO tbl_name (col_A,col_B,col_C) VALUES (1,2,3)"
"</code>"
#: libraries/plugins/export/ExportSql.class.php:370
msgid ""
@ -8276,8 +8275,8 @@ msgid ""
"The first line of the file contains the table column names <i>(if this is "
"unchecked, the first line will become part of the data)</i>"
msgstr ""
"ගොනුවේ පළමු පේළියේ ඇත්තේ වගුවේ තීරවල නම්ය.<i>(මෙය තෝරා නොගතහොත් පළමු පේලිය දත්ත සේ "
"ගැනේ)</i>"
"ගොනුවේ පළමු පේළියේ ඇත්තේ වගුවේ තීරවල නම්ය.<i>(මෙය තෝරා නොගතහොත් පළමු පේලිය දත්ත සේ ගැනේ)"
"</i>"
#: libraries/plugins/import/ImportCsv.class.php:72
msgid ""
@ -10032,21 +10031,21 @@ msgstr "භාවිතා කරන්නන්"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "සේවාදායකයේ අනුවාදය"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "දත්තගබඩා සේවාදායකය"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "වගු විස්තර"
#: libraries/server_privileges.lib.php:3260
@ -12157,8 +12156,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"ඔබ [kbd]config[/kbd] සත්‍යාපනය තෝරා ස්වයංක්‍රීය ඇතුල්වීම සඳහා භාවිත නාමය සහ මුරපදය සඳහන් "
"කර ඇත. සජීවී සත්කාරකයන් සඳහා මෙය නුසුදුසුය. ඔබගේ phpMyAdmin URLය දන්නා ඕනෑම අයෙකුට "
@ -14013,13 +14012,13 @@ msgstr "concurrent_insert ශුන්‍යයට සිටුවා ඇත"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "මෙය [kbd]nested[/kbd] වෙත සිටවූ විට, වගුවේ අන්වර්ථ නාමය යොදා ගැනෙනුයේ "
#~ "$cfg['LeftFrameTableSeparator'] අගය අනුව වගු වෙන්කිරීමට/කාණ්ඩගත කිරීමට පමණි. එම "
#~ "නිසා කාණ්ඩය පමණක් අන්වර්ථ නාමයෙන් හැඳින්වෙන අතර, වගු නාමයන් නොවෙනස්ව පවතී"
#~ "මෙය [kbd]nested[/kbd] වෙත සිටවූ විට, වගුවේ අන්වර්ථ නාමය යොදා ගැනෙනුයේ $cfg"
#~ "['LeftFrameTableSeparator'] අගය අනුව වගු වෙන්කිරීමට/කාණ්ඩගත කිරීමට පමණි. එම නිසා "
#~ "කාණ්ඩය පමණක් අන්වර්ථ නාමයෙන් හැඳින්වෙන අතර, වගු නාමයන් නොවෙනස්ව පවතී"
#~ msgid "Display table comment instead of its name"
#~ msgstr "වගුවේ නම වෙනුවට විස්තරය පෙන්වන්න"

121
po/sk.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 11:31+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Slovak <http://l10n.cihar.com/projects/phpmyadmin/master/sk/"
@ -866,9 +866,9 @@ msgid ""
msgstr ""
"Nastavenie v php.ini [a@http://php.net/manual/en/session.configuration."
"php#ini.session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a] má nižšiu "
"hodnotu ako nastavenie životnosti cookie v phpMyAdmin "
"($cfg['LoginCookieValidity']). Kvôli tomu vaše prihlásenie vyprší skôr ako "
"je nastavené v konfigurácii phpMyAdmin."
"hodnotu ako nastavenie životnosti cookie v phpMyAdmin ($cfg"
"['LoginCookieValidity']). Kvôli tomu vaše prihlásenie vyprší skôr ako je "
"nastavené v konfigurácii phpMyAdmin."
#: index.php:456
msgid ""
@ -4338,8 +4338,8 @@ msgid ""
"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
"authentication"
msgstr ""
"Tajné heslo používané pre šifrovanie cookies pri prihlasovaní pomocou "
"[kbd]cookie[/kbd]"
"Tajné heslo používané pre šifrovanie cookies pri prihlasovaní pomocou [kbd]"
"cookie[/kbd]"
#: libraries/config/messages.inc.php:23
msgid "Blowfish secret"
@ -4380,8 +4380,8 @@ msgid ""
"kbd] - allows newlines in columns"
msgstr ""
"Nastavte, ktorý typ ovládacích prvkov sa má použiť pri editácii polí typu "
"CHAR a VARCHAR; [kbd]vstup[/kbd] - umožňuje obmedziť dĺžku vstupu, "
"[kbd]textová oblasť[/kbd] - umožňuje použitie nových riadkov v poli"
"CHAR a VARCHAR; [kbd]vstup[/kbd] - umožňuje obmedziť dĺžku vstupu, [kbd]"
"textová oblasť[/kbd] - umožňuje použitie nových riadkov v poli"
#: libraries/config/messages.inc.php:31
msgid "CHAR columns editing"
@ -4389,8 +4389,8 @@ msgstr "Úprava polí typu CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Použiť užívateľsky príjemný editor na úpravu SQL dozatazov ([a@http://"
"codemirror.net/]CodeMirror[/a]) s číslovaním riadkov a zvýrazňovaním syntaxe"
@ -4936,13 +4936,12 @@ msgstr "Mená stránok"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Zadajte titulku, ktorú bude zobrazovať prehliadač. V "
"[doc@cfg_TitleTable]documentácii[/doc] nájdete špeciálne reťazce, ktoré "
"môžete použiť na získanie špeciálnych hodnôt."
"Zadajte titulku, ktorú bude zobrazovať prehliadač. V [doc@cfg_TitleTable]"
"documentácii[/doc] nájdete špeciálne reťazce, ktoré môžete použiť na "
"získanie špeciálnych hodnôt."
#: libraries/config/messages.inc.php:194
#: libraries/navigation/NavigationHeader.class.php:209
@ -5063,10 +5062,10 @@ msgid ""
"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
msgstr ""
"Ak chcete používať službu SQL validátoru, mali by ste vedieť, že "
"[strong]všetky SQL príkazy sú anonymne ukladané pre štatistické účely[/"
"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
"Ak chcete používať službu SQL validátoru, mali by ste vedieť, že [strong]"
"všetky SQL príkazy sú anonymne ukladané pre štatistické účely[/strong].[br]"
"[em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright "
"2002 Upright Database Technology. All rights reserved.[/em]"
#: libraries/config/messages.inc.php:222
msgid "Startup"
@ -5400,8 +5399,8 @@ msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
"Otvoriť nové okno v hlavnej okne ([kbd]hlavná[/kbd]) alebo v novom "
"([kbd]nové[/kbd])"
"Otvoriť nové okno v hlavnej okne ([kbd]hlavná[/kbd]) alebo v novom ([kbd]nové"
"[/kbd])"
#: libraries/config/messages.inc.php:304
msgid "Logo link target"
@ -5749,11 +5748,11 @@ msgstr "Tabuľka záložiek"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Nechajte prázdne pre žiadne komentáre ci mime typy polí, navrhované: "
"[kbd]pma__column_info[/kbd]"
"Nechajte prázdne pre žiadne komentáre ci mime typy polí, navrhované: [kbd]"
"pma__column_info[/kbd]"
#: libraries/config/messages.inc.php:383
msgid "Column information table"
@ -5821,8 +5820,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Nechajte prázdne pre vypnutie návrhára, východzie nastavenie: "
"[kbd]pma__designer_coords[/kbd]"
"Nechajte prázdne pre vypnutie návrhára, východzie nastavenie: [kbd]"
"pma__designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5861,8 +5860,8 @@ msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
msgstr ""
"Nechať prázdne pre vypnutie histórie SQL dopytov, navrhované: "
"[kbd]pma__history[/kbd]"
"Nechať prázdne pre vypnutie histórie SQL dopytov, navrhované: [kbd]"
"pma__history[/kbd]"
#: libraries/config/messages.inc.php:404
msgid "SQL query history table"
@ -5926,8 +5925,8 @@ msgstr "Heslo pre prihlásenie podľa konfigurácie"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Nechajte prázdne pre vypnutie podpory pre PDF schémy, navrhované: "
"[kbd]pma__pdf_pages[/kbd]"
"Nechajte prázdne pre vypnutie podpory pre PDF schémy, navrhované: [kbd]"
"pma__pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -5970,8 +5969,8 @@ msgstr "Naposledy použitá tabuľka"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Nechajte prázdne pre vypnutie podpory [a@http://wiki.phpmyadmin.net/pma/"
"relation]relation-links[/a]. Odporúčaná hodnota: [kbd]pma__relation[/kbd]"
@ -5990,8 +5989,8 @@ msgstr "SHOW DATABASES príkaz"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Priklad, viď [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]typy "
"overovania[/a]"
@ -6109,8 +6108,8 @@ msgstr "Sledované príkazy"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Nechajte prázdne pre vypnutie podpory pre sledovanie SQL dopytov. Odporúčaná "
"hodnota: [kbd]pma__tracking[/kbd]"
@ -6132,8 +6131,8 @@ msgstr "Automaticky vytvárať verzie"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Nechajte prázdne pre vypnutie možnosti ukladania užívateľských nastavení v "
"databáze. Odporúčaná hodnota: [kbd]pma__userconfig[/kbd]"
@ -6145,11 +6144,11 @@ msgstr "Tabuľka pre užívateľské nastavenia"
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Nechajte prázdne pre vypnutie možnosti ukladania užívateľských nastavení v "
"databáze. Odporúčaná hodnota: [kbd]pma__userconfig[/kbd]"
@ -6163,11 +6162,11 @@ msgstr "Použiť tabuľky"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Nechajte prázdne pre vypnutie možnosti ukladania užívateľských nastavení v "
"databáze. Odporúčaná hodnota: [kbd]pma__userconfig[/kbd]"
@ -6181,8 +6180,8 @@ msgstr "Použiť tabuľku s hostiteľmi"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6213,8 +6212,8 @@ msgstr "Dlhé meno tohto servera"
#: libraries/config/messages.inc.php:465
msgid "Whether a user should be displayed a &quot;show all (rows)&quot; button"
msgstr ""
"Či sa bude užívateľovi zobrazovať tlačidlo &quot;zobraziť všetky "
"(riadky)&quot;"
"Či sa bude užívateľovi zobrazovať tlačidlo &quot;zobraziť všetky (riadky)"
"&quot;"
#: libraries/config/messages.inc.php:466
msgid "Allow to display all the rows"
@ -6314,8 +6313,8 @@ msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
"Zobraziť odkaz na výstup [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a] funkcie"
"Zobraziť odkaz na výstup [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a] funkcie"
#: libraries/config/messages.inc.php:485
msgid "Show phpinfo() link"
@ -6395,8 +6394,8 @@ msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
"Pokiaľ máte vlastné užívateľské meno, zadajte ho tu (východzie "
"[kbd]anonymous[/kbd])"
"Pokiaľ máte vlastné užívateľské meno, zadajte ho tu (východzie [kbd]anonymous"
"[/kbd])"
#: libraries/config/messages.inc.php:506 tbl_tracking.php:559
#: tbl_tracking.php:621
@ -10318,21 +10317,21 @@ msgstr "Používatelia"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Verzia serveru"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Databázový server"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table removal"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Názov tabuľky"
#: libraries/server_privileges.lib.php:3260
@ -12558,8 +12557,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

158
po/sl.po
View File

@ -6,8 +6,8 @@ msgstr ""
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"PO-Revision-Date: 2013-07-29 18:26+0200\n"
"Last-Translator: Domen <dbc334@gmail.com>\n"
"Language-Team: Slovenian "
"<http://l10n.cihar.com/projects/phpmyadmin/master/sl/>\n"
"Language-Team: Slovenian <http://l10n.cihar.com/projects/phpmyadmin/master/"
"sl/>\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -2664,13 +2664,11 @@ msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s."
#: libraries/DisplayResults.class.php:4921
#, php-format
#| msgid "Showing rows"
msgid "Showing rows %1s - %2s"
msgstr "Prikazujem vrstice %1s%2s"
#: libraries/DisplayResults.class.php:4933
#, php-format
#| msgid "total"
msgid "%d total"
msgstr "skupaj %d"
@ -3234,8 +3232,8 @@ msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
"Čiščenje nastavitev uporabniškega vmesnika tabel je spodletelo (glej "
"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)"
"Čiščenje nastavitev uporabniškega vmesnika tabel je spodletelo (glej $cfg"
"['Servers'][$i]['MaxTableUiprefs'] %s)"
#: libraries/Table.class.php:1620
#, php-format
@ -4256,9 +4254,8 @@ msgid ""
"cross-frame scripting attacks"
msgstr ""
"Omogočitev tega dovoljuje strani, ki se nahaja na drugačni domeni, "
"vključitev phpMyAdmina v okvirju, kar predstavlja morebitno "
"[strong]varnostno luknjo[/strong], saj dovoljuje skriptne napade preko "
"okvirjev"
"vključitev phpMyAdmina v okvirju, kar predstavlja morebitno [strong]"
"varnostno luknjo[/strong], saj dovoljuje skriptne napade preko okvirjev"
#: libraries/config/messages.inc.php:20
msgid "Allow third party framing"
@ -4274,8 +4271,8 @@ msgid ""
"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
"authentication"
msgstr ""
"Skrivno geslo, ki se uporabi pri šifriranju piškotkov v overovitvi "
"[kbd]cookie[/kbd]"
"Skrivno geslo, ki se uporabi pri šifriranju piškotkov v overovitvi [kbd]"
"cookie[/kbd]"
#: libraries/config/messages.inc.php:23
msgid "Blowfish secret"
@ -4316,8 +4313,8 @@ msgid ""
"kbd] - allows newlines in columns"
msgstr ""
"Določa, katera vrsta urejevalnih kontrolnikov naj se uporablja za stolpce "
"CHAR in VARCHAR; [kbd]input[/kbd] omogoča omejevanje dolžine vnosa, "
"[kbd]textarea[/kbd] omogoča nove vrstice v stolpcu"
"CHAR in VARCHAR; [kbd]input[/kbd] omogoča omejevanje dolžine vnosa, [kbd]"
"textarea[/kbd] omogoča nove vrstice v stolpcu"
#: libraries/config/messages.inc.php:31
msgid "CHAR columns editing"
@ -4325,8 +4322,8 @@ msgstr "Urejanje stolpcev CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Uporabi uporabniku prijazen urejevalnik za urejanje poizvedb SQL ([a@http://"
"codemirror.net/]CodeMirror[/a]) z obarvanjem skladnje in številkami vrstic"
@ -4862,9 +4859,8 @@ msgstr "Naslovi strani"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Določite besedilo naslovne vrstice brskalnika. Oglejte si "
"[doc@cfg_TitleTable]dokumentacijo[/doc] za čarobne nize, ki jih lahko "
@ -4989,10 +4985,10 @@ msgid ""
"strong].[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], "
"Copyright 2002 Upright Database Technology. All rights reserved.[/em]"
msgstr ""
"Če želite uporabljati storitev Preverjalnika SQL, se zavedajte, da "
"[strong]so vse izjave SQL brezimno shranjene v statistične namene[/strong]."
"[br][em][a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright "
"2002 Upright Database Technology. Vse pravice pridržane.[/em]"
"Če želite uporabljati storitev Preverjalnika SQL, se zavedajte, da [strong]"
"so vse izjave SQL brezimno shranjene v statistične namene[/strong].[br][em]"
"[a@http://sqlvalidator.mimer.com/]Mimer SQL Validator[/a], Copyright 2002 "
"Upright Database Technology. Vse pravice pridržane.[/em]"
#: libraries/config/messages.inc.php:222
msgid "Startup"
@ -5676,11 +5672,11 @@ msgstr "Tabela zaznamkov"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Pustite prazno, če ne želite pripomb/vrst MIME stolpcev; predlagano: "
"[kbd]pma__column_info[/kbd]"
"Pustite prazno, če ne želite pripomb/vrst MIME stolpcev; predlagano: [kbd]"
"pma__column_info[/kbd]"
#: libraries/config/messages.inc.php:383
msgid "Column information table"
@ -5750,8 +5746,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Pustite prazno, če ne želite podpore Oblikovalnika; predlagano: "
"[kbd]pma__designer_coords[/kbd]"
"Pustite prazno, če ne želite podpore Oblikovalnika; predlagano: [kbd]"
"pma__designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5762,9 +5758,8 @@ msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
"Več informacij na [a@https://sourceforge.net/p/phpmyadmin/"
"bugs/2606/]sledilniku hroščev PMA[/a] in[a@http://bugs.mysql."
"com/19588]hroščih MySQL[/a]"
"Več informacij na [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]"
"sledilniku hroščev PMA[/a] in[a@http://bugs.mysql.com/19588]hroščih MySQL[/a]"
#: libraries/config/messages.inc.php:398
msgid "Disable use of INFORMATION_SCHEMA"
@ -5856,8 +5851,8 @@ msgstr "Geslo za overovitev config"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Pustite prazno, če ne želite podpore sheme PDF; predlagano: "
"[kbd]pma__pdf_pages[/kbd]"
"Pustite prazno, če ne želite podpore sheme PDF; predlagano: [kbd]"
"pma__pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -5900,8 +5895,8 @@ msgstr "Nedavno uporabljena tabela"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Pustite prazno, če ne želite podpore [a@http://wiki.phpmyadmin.net/pma/"
"relation]relacijskih povezav[/a]; priporočeno: [kbd]pma__relation[/kbd]"
@ -5920,8 +5915,8 @@ msgstr "Ukaz SHOW DATABASES"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Oglejte si [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]vrste "
"overovitev[/a] za primer"
@ -5956,8 +5951,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"Pustite prazno, če ne želite podpore sheme PDF; predlagano: "
"[kbd]pma__table_coords[/kbd]"
"Pustite prazno, če ne želite podpore sheme PDF; predlagano: [kbd]"
"pma__table_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6035,11 +6030,11 @@ msgstr "Izjave za sledenje"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Pustite prazno, če ne želite podpore sledenja poizvedb SQL; predlagano: "
"[kbd]pma__tracking[/kbd]"
"Pustite prazno, če ne želite podpore sledenja poizvedb SQL; predlagano: [kbd]"
"pma__tracking[/kbd]"
#: libraries/config/messages.inc.php:450
msgid "SQL query tracking table"
@ -6058,8 +6053,8 @@ msgstr "Samodejno ustvari različice"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Pustite prazno, če ne želite hranjenja uporabnikovih nastavitev v zbirki "
"podatkov; predlagano: [kbd]pma__userconfig[/kbd]"
@ -6071,11 +6066,11 @@ msgstr "Tabela za hranjenje uporabnikovih nastavitev"
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Pustite prazno, če ne želite hranjenja uporabnikovih nastavitev v zbirki "
"podatkov; predlagano: [kbd]pma__userconfig[/kbd]"
@ -6089,11 +6084,11 @@ msgstr "Uporabi tabele"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Pustite prazno, če ne želite hranjenja uporabnikovih nastavitev v zbirki "
"podatkov; predlagano: [kbd]pma__userconfig[/kbd]"
@ -6105,9 +6100,6 @@ msgid "User groups table"
msgstr "Uporabi tabelo gostiteljev"
#: libraries/config/messages.inc.php:459
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6235,8 +6227,8 @@ msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
"Prikaže povezavo do podatkov [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
"Prikaže povezavo do podatkov [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a]"
#: libraries/config/messages.inc.php:485
msgid "Show phpinfo() link"
@ -6316,8 +6308,8 @@ msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
"Če imate uporabniško ime po meri, ga določite tukaj (privzeto "
"[kbd]anonymous[/kbd])"
"Če imate uporabniško ime po meri, ga določite tukaj (privzeto [kbd]anonymous"
"[/kbd])"
#: libraries/config/messages.inc.php:506 tbl_tracking.php:559
#: tbl_tracking.php:621
@ -7679,7 +7671,6 @@ msgid "Events:"
msgstr "Dogodki"
#: libraries/navigation/Navigation.class.php:173
#| msgid "Functions"
msgid "Functions:"
msgstr "Funkcije:"
@ -7690,7 +7681,6 @@ msgid "Procedures:"
msgstr "Procedure"
#: libraries/navigation/Navigation.class.php:175
#| msgid "Tables"
msgid "Tables:"
msgstr "Tabele:"
@ -8395,8 +8385,8 @@ msgid ""
"(7,8,9)</code>"
msgstr ""
"vključi več vrstic v vsaki izjavi <code>INSERT</code><br /> &nbsp; &nbsp; "
"&nbsp; Primer: <code>INSERT INTO ime_tabele VALUES (1,2,3), (4,5,6), "
"(7,8,9)</code>"
"&nbsp; Primer: <code>INSERT INTO ime_tabele VALUES (1,2,3), (4,5,6), (7,8,9)"
"</code>"
#: libraries/plugins/export/ExportSql.class.php:375
msgid ""
@ -8789,12 +8779,10 @@ msgid "User preferences"
msgstr "Uporabniške nastavitve"
#: libraries/relation.lib.php:264
#| msgid "Configuration: %s"
msgid "Configurable menus"
msgstr "Nastavljivi meniji"
#: libraries/relation.lib.php:275
#| msgid "Reload navigation frame"
msgid "Hide/show navigation items"
msgstr "Skrij/prikaži navigacijske predmete"
@ -10268,7 +10256,6 @@ msgstr "Našel nisem nobenega uporabnika, ki pripada tej uporabniški skupini."
#: libraries/server_privileges.lib.php:3229
#: libraries/server_privileges.lib.php:3878
#| msgid "Users"
msgid "User groups"
msgstr "Uporabniške skupine"
@ -10276,20 +10263,21 @@ msgstr "Uporabniške skupine"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Različica strežnika"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Strežnik zbirke podatkov"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#| msgid "Table comments"
msgid "Table level tabs"
#, fuzzy
#| msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Zavihki stopenj tabele"
#: libraries/server_privileges.lib.php:3260
@ -10311,12 +10299,10 @@ msgid "Edit user group: '%s'"
msgstr "Uredi uporabniško skupino: '%s'"
#: libraries/server_privileges.lib.php:3363
#| msgid "No privileges."
msgid "User group privileges"
msgstr "Privilegiji uporabniške skupine"
#: libraries/server_privileges.lib.php:3370
#| msgid "Column names: "
msgid "Group name:"
msgstr "Ime skupine:"
@ -12302,9 +12288,9 @@ msgid ""
"Otherwise you will be only able to download or display it."
msgstr ""
"Prosimo, na spletnem strežniku ustvarite zapisljivo mapo [em]config[/em] v "
"najvišjem nivoju mape phpMyAdmina, kot opisuje "
"[doc@setup_script]dokumentacija[/doc]. V naprotnem primeru jo boste lahko "
"samo prenesli ali jo prikazali."
"najvišjem nivoju mape phpMyAdmina, kot opisuje [doc@setup_script]"
"dokumentacija[/doc]. V naprotnem primeru jo boste lahko samo prenesli ali jo "
"prikazali."
#: setup/frames/index.inc.php:60
msgid ""
@ -12446,8 +12432,8 @@ msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
"Uporabljate nadležno različico, zaženite [kbd]tecnoba odstrani[/kbd] :-)"
"[br]Najnovejša stabilna različica je %s, izdana %s."
"Uporabljate nadležno različico, zaženite [kbd]tecnoba odstrani[/kbd] :-)[br]"
"Najnovejša stabilna različica je %s, izdana %s."
#: setup/lib/index.lib.php:170
msgid "No newer stable version is available"
@ -12558,8 +12544,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Nastavili ste vrsto overovitve [kbd]config[/kbd] in vključili uporabniško "
"ime in geslo za samodejno prijavo, kar ni zaželena možnost za gostitelje "
@ -14540,14 +14526,14 @@ msgstr "concurrent_insert je nastavljeno na 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Ko je nastavljeno na [kbd]nested[/kbd], je pridevek imena tabele "
#~ "uporabljen samo za razdružitev/združitev tabel v skladu z določilom "
#~ "$cfg['LeftFrameTableSeparator'], zato je samo mapa imenovana kot "
#~ "pridevek, sama imena tabel pa ostanejo nespremenjena"
#~ "uporabljen samo za razdružitev/združitev tabel v skladu z določilom $cfg"
#~ "['LeftFrameTableSeparator'], zato je samo mapa imenovana kot pridevek, "
#~ "sama imena tabel pa ostanejo nespremenjena"
#~ msgid "Display table comment instead of its name"
#~ msgstr "Prikaži pripombo tabele namesto njenega imena"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-06-06 16:49+0200\n"
"Last-Translator: Spartak Ferrollari <spartakx@gmail.com>\n"
"Language-Team: Albanian <http://l10n.cihar.com/projects/phpmyadmin/master/sq/"
@ -849,8 +849,8 @@ msgstr ""
#: index.php:468
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"Tani nevojitet një fjalëkalim sekret për skedarin e "
"konfigurimit(blowfish_secret)."
"Tani nevojitet një fjalëkalim sekret për skedarin e konfigurimit"
"(blowfish_secret)."
#: index.php:479
msgid ""
@ -4284,8 +4284,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4852,9 +4852,8 @@ msgstr "Numri i faqes:"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5630,8 +5629,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5837,8 +5836,8 @@ msgstr "Analizo tabelën"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5856,8 +5855,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -5961,8 +5960,8 @@ msgstr "Instruksione"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -5982,8 +5981,8 @@ msgstr "Versioni i MySQL"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -5992,8 +5991,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6004,8 +6003,8 @@ msgstr "Përdor tabelat"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10300,21 +10299,21 @@ msgstr "Përdorues"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Versioni i MySQL"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Serveri i Bazës së të Dhënave"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Komentet e tabelës"
#: libraries/server_privileges.lib.php:3260
@ -12515,8 +12514,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-05-07 17:13+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Serbian <http://l10n.cihar.com/projects/phpmyadmin/master/sr/"
@ -4594,8 +4594,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5173,9 +5173,8 @@ msgstr "Број стране:"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5975,8 +5974,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -6183,8 +6182,8 @@ msgstr "Анализирај табелу"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -6202,8 +6201,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6307,8 +6306,8 @@ msgstr "Име"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6329,8 +6328,8 @@ msgstr "Режим аутоматског опоравка"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6339,8 +6338,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6351,8 +6350,8 @@ msgstr "Користи табеле"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -9031,8 +9030,8 @@ msgstr ""
#: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31
#, fuzzy
#| msgid ""
#| "ys the contents of the field as-is, without running it through "
#| "ecialchars(). That is, the field is assumed to contain valid HTML."
#| "ys the contents of the field as-is, without running it through ecialchars"
#| "(). That is, the field is assumed to contain valid HTML."
msgid ""
"Displays the contents of the column as-is, without running it through "
"htmlspecialchars(). That is, the column is assumed to contain valid HTML."
@ -10732,21 +10731,21 @@ msgstr "Корисник"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Верзија сервера"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database for user"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "База за корисника"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Коментари табеле"
#: libraries/server_privileges.lib.php:3260
@ -13078,8 +13077,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 11:13+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Serbian (latin) <http://l10n.cihar.com/projects/phpmyadmin/"
@ -3298,8 +3298,8 @@ msgid ""
"Failed to cleanup table UI preferences (see $cfg['Servers'][$i]"
"['MaxTableUiprefs'] %s)"
msgstr ""
"Neuspelo brisanje podešavanja korisničkog interfejsa tabele (pogledajte "
"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)"
"Neuspelo brisanje podešavanja korisničkog interfejsa tabele (pogledajte $cfg"
"['Servers'][$i]['MaxTableUiprefs'] %s)"
#: libraries/Table.class.php:1620
#, php-format
@ -4292,9 +4292,8 @@ msgid ""
"cross-frame scripting attacks"
msgstr ""
"Omogućavanje ovoga dozvoljava da stranica koja se nalazi na drugom domenu "
"pozove phpMyAdmin unutar frame-a, i predstavlja potencijalni "
"[strong]bezbednosni problem[/strong] dozvoljavajući cross-frame scripting "
"napade"
"pozove phpMyAdmin unutar frame-a, i predstavlja potencijalni [strong]"
"bezbednosni problem[/strong] dozvoljavajući cross-frame scripting napade"
#: libraries/config/messages.inc.php:20
msgid "Allow third party framing"
@ -4360,8 +4359,8 @@ msgstr "Uređenje CHAR kolona"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4768,9 +4767,8 @@ msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
"Redosled sortiranja stavki u padajućoj listi sa stranim ključevima; "
"[kbd]content[/kbd] je referencirani podatak; [kbd]id[/kbd] je vrednost "
"ključa"
"Redosled sortiranja stavki u padajućoj listi sa stranim ključevima; [kbd]"
"content[/kbd] je referencirani podatak; [kbd]id[/kbd] je vrednost ključa"
#: libraries/config/messages.inc.php:151
msgid "Foreign key dropdown order"
@ -4916,9 +4914,8 @@ msgstr "Naslovi strana"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5343,8 +5340,8 @@ msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
"Broj bajtova koji je dozvoljen da skript zauzme, primer [kbd]32M[/kbd] "
"([kbd]0[/kbd] nema ograničenja)"
"Broj bajtova koji je dozvoljen da skript zauzme, primer [kbd]32M[/kbd] ([kbd]"
"0[/kbd] nema ograničenja)"
#: libraries/config/messages.inc.php:298
msgid "Memory limit"
@ -5735,8 +5732,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5931,8 +5928,8 @@ msgstr "Skorašnje korišćena tabela"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5949,8 +5946,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6047,8 +6044,8 @@ msgstr "Praćenje komandi"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6067,8 +6064,8 @@ msgstr "Automatski kreiraj verzije"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6077,8 +6074,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6089,8 +6086,8 @@ msgstr "Koristi tabele"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10208,21 +10205,21 @@ msgstr "Korisnici"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Verzija servera"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Server baze podataka"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Komentari tabele"
#: libraries/server_privileges.lib.php:3260
@ -12455,8 +12452,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

124
po/sv.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-19 20:33+0200\n"
"Last-Translator: Anders Jonsson <anders.jonsson@norsjovallen.se>\n"
"Language-Team: Swedish <http://l10n.cihar.com/projects/phpmyadmin/master/sv/"
@ -4298,8 +4298,8 @@ msgstr "Redigera CHAR-kolumn"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Använd användarvänlig editor för att redigera SQL-frågor ([a@http://"
"codemirror.net/]CodeMirror[/a]) med syntaxmarkering och radnummer"
@ -4836,9 +4836,8 @@ msgstr "Sidtitlar"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Ange webbläsarens namnlisttext. Se [doc@cfg_TitleTable]dokumentationen[/doc] "
"för magiska strängar som kan användas för att få speciella värden."
@ -5633,8 +5632,8 @@ msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
"support, suggested: [kbd]pma__bookmark[/kbd]"
msgstr ""
"Lämna tomt för att stänga av [a@http://wiki.phpmyadmin.net/pma/"
"bookmark]bokmärken[/a], förslag: [kbd]pma_bookmark[/kbd]"
"Lämna tomt för att stänga av [a@http://wiki.phpmyadmin.net/pma/bookmark]"
"bokmärken[/a], förslag: [kbd]pma_bookmark[/kbd]"
#: libraries/config/messages.inc.php:381
msgid "Bookmark table"
@ -5642,11 +5641,11 @@ msgstr "Tabell för bokmärken"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Lämna tomt för att stänga av kolumnkommentarer/mime-typer, förslag: "
"[kbd]pma_column_info[/kbd]"
"Lämna tomt för att stänga av kolumnkommentarer/mime-typer, förslag: [kbd]"
"pma_column_info[/kbd]"
#: libraries/config/messages.inc.php:383
msgid "Column information table"
@ -5678,8 +5677,8 @@ msgid ""
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
"En speciell MySQL-användare konfigurerad med begränsade rättigheter, mer "
"information tillgänglig på [a@http://wiki.phpmyadmin.net/pma/"
"controluser]wiki[/a]"
"information tillgänglig på [a@http://wiki.phpmyadmin.net/pma/controluser]wiki"
"[/a]"
#: libraries/config/messages.inc.php:390
msgid "Control user"
@ -5757,8 +5756,8 @@ msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
msgstr ""
"Lämna blankt för att stänga av stöd för SQL-frågehistorik, förslag: "
"[kbd]pma__history[/kbd]"
"Lämna blankt för att stänga av stöd för SQL-frågehistorik, förslag: [kbd]"
"pma__history[/kbd]"
#: libraries/config/messages.inc.php:404
msgid "SQL query history table"
@ -5822,8 +5821,8 @@ msgstr "Lösenord för config auth"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"Lämna blankt för att stänga av stöd för PDF-schema, förslag: "
"[kbd]pma__pdf_pages[/kbd]"
"Lämna blankt för att stänga av stöd för PDF-schema, förslag: [kbd]"
"pma__pdf_pages[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -5865,11 +5864,11 @@ msgstr "Nyligen använd tabell"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"Lämna tomt för avstängt stöd för [a@http://wiki.phpmyadmin.net/pma/"
"relation]relationslänkar[/a], förslag: [kbd]pma_relation[/kbd]"
"Lämna tomt för avstängt stöd för [a@http://wiki.phpmyadmin.net/pma/relation]"
"relationslänkar[/a], förslag: [kbd]pma_relation[/kbd]"
#: libraries/config/messages.inc.php:425
msgid "Relation table"
@ -5885,8 +5884,8 @@ msgstr "SHOW DATABASES-kommando"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Se [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]autentiseringstyper[/"
"a] för ett exempel"
@ -5945,8 +5944,8 @@ msgid ""
"suggested: [kbd]pma__table_uiprefs[/kbd]"
msgstr ""
"Lämna tomt för att stänga av \"ihållande\" tabellers "
"användargränssnittspreferenser som sparas över sessioner, förslag: "
"[kbd]pma__table_uiprefs[/kbd]"
"användargränssnittspreferenser som sparas över sessioner, förslag: [kbd]"
"pma__table_uiprefs[/kbd]"
#: libraries/config/messages.inc.php:440
msgid "UI preferences table"
@ -6000,11 +5999,11 @@ msgstr "Kommandon att spåra"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Lämna tomt för avstängt stöd för SQL-frågespårning, förslag: "
"[kbd]pma__tracking[/kbd]"
"Lämna tomt för avstängt stöd för SQL-frågespårning, förslag: [kbd]"
"pma__tracking[/kbd]"
#: libraries/config/messages.inc.php:450
msgid "SQL query tracking table"
@ -6024,8 +6023,8 @@ msgstr "Skapa versioner automatiskt"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Lämna tomt för att stänga av lagring av användarpreferenser i databasen, "
"förslag: [kbd]pma__userconfig[/kbd]"
@ -6037,11 +6036,11 @@ msgstr "Användarinställningar för lagringstabell"
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Lämna tomt för att stänga av lagring av användarpreferenser i databasen, "
"förslag: [kbd]pma__userconfig[/kbd]"
@ -6055,11 +6054,11 @@ msgstr "Använd tabeller"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Lämna tomt för att stänga av lagring av användarpreferenser i databasen, "
"förslag: [kbd]pma__userconfig[/kbd]"
@ -6073,8 +6072,8 @@ msgstr "Använd värdtabell"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6203,8 +6202,8 @@ msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
"Visar länk till resultatet av [a@http://php.net/manual/function.phpinfo."
"php]phpinfo()[/a]"
"Visar länk till resultatet av [a@http://php.net/manual/function.phpinfo.php]"
"phpinfo()[/a]"
#: libraries/config/messages.inc.php:485
msgid "Show phpinfo() link"
@ -6283,8 +6282,8 @@ msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
"Om du har ett eget användarnamn, ange det här (standardnamn är "
"[kbd]anonymous[/kbd])"
"Om du har ett eget användarnamn, ange det här (standardnamn är [kbd]anonymous"
"[/kbd])"
#: libraries/config/messages.inc.php:506 tbl_tracking.php:559
#: tbl_tracking.php:621
@ -8383,8 +8382,8 @@ msgid ""
"Dump binary columns in hexadecimal notation <i>(for example, \"abc\" becomes "
"0x616263)</i>"
msgstr ""
"Dumpa binära kolumner i hexadecimal notation <i>(t.ex. \"abc\" blir "
"0x616263)</i>"
"Dumpa binära kolumner i hexadecimal notation <i>(t.ex. \"abc\" blir 0x616263)"
"</i>"
#: libraries/plugins/export/ExportSql.class.php:412
msgid ""
@ -10241,21 +10240,21 @@ msgstr "Användare"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Serverversion"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Databas-server"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Tabellkommentarer"
#: libraries/server_privileges.lib.php:3260
@ -12516,8 +12515,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Du valde [kbd]config[/kbd]-autentisering och inkluderade användarnamn och "
"lösenord för autoinloggning, vilket inte är en önskvärd inställning för "
@ -14473,14 +14472,14 @@ msgstr "concurrent_insert är satt till 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "När detta är satt till [kbd]nested[/kbd], används tabellens alias endast "
#~ "för att dela/stapla tabellerna enligt direktivet "
#~ "$cfg['LeftFrameTableSeparator'] , så endast mappen kallas för detta "
#~ "alias, tabellnamnet självt förblir oförändrat"
#~ "för att dela/stapla tabellerna enligt direktivet $cfg"
#~ "['LeftFrameTableSeparator'] , så endast mappen kallas för detta alias, "
#~ "tabellnamnet självt förblir oförändrat"
#~ msgid "Display table comment instead of its name"
#~ msgstr "Visa tabellkommentar istället för dess namn"
@ -14983,10 +14982,9 @@ msgstr "concurrent_insert är satt till 0"
#~ msgstr ""
#~ "phpMyAdmin kunde inte läsa din konfigurationsfil!<br />Detta kan inträffa "
#~ "om PHP hittar ett fel i den eller om PHP inte hittar filen.<br />Anropa "
#~ "konfigurationsfilen direkt mha länken nedan och läs PHP:s "
#~ "felmeddelande(n) som du erhåller. I de flesta fall saknas ett "
#~ "citationstecken eller ett semikolon någonstans.<br />Om du får en tom "
#~ "sida är allt OK."
#~ "konfigurationsfilen direkt mha länken nedan och läs PHP:s felmeddelande"
#~ "(n) som du erhåller. I de flesta fall saknas ett citationstecken eller "
#~ "ett semikolon någonstans.<br />Om du får en tom sida är allt OK."
#~ msgid "Dropping Event"
#~ msgstr "Tar bort Händelse"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-05-07 09:20+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Tamil <http://l10n.cihar.com/projects/phpmyadmin/4-0/ta/>\n"
@ -4296,8 +4296,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4824,9 +4824,8 @@ msgstr ""
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5578,8 +5577,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5772,8 +5771,8 @@ msgstr ""
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5790,8 +5789,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -5888,8 +5887,8 @@ msgstr ""
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -5908,8 +5907,8 @@ msgstr ""
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -5918,8 +5917,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -5930,8 +5929,8 @@ msgstr "அட்டவணைகளை பயன்படுத்துக"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -9956,21 +9955,21 @@ msgstr "பாவனையளவு"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Show versions"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "பதிப்புகளை காட்டு"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Databases"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "தரவுத்தளங்கள்"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "அட்டவணைக் கருத்துரைகள்"
#: libraries/server_privileges.lib.php:3260
@ -12045,8 +12044,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2012-11-06 12:16+0200\n"
"Last-Translator: వీవెన్ <veeven@gmail.com>\n"
"Language-Team: Telugu <http://l10n.cihar.com/projects/phpmyadmin/master/te/"
@ -4407,8 +4407,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4937,9 +4937,8 @@ msgstr "పుట శీర్షికలు"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5694,8 +5693,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5891,8 +5890,8 @@ msgstr ""
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5909,8 +5908,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6009,8 +6008,8 @@ msgstr ""
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6029,8 +6028,8 @@ msgstr ""
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6039,8 +6038,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6051,8 +6050,8 @@ msgstr "పట్టికల్ని వాడు"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10163,7 +10162,7 @@ msgstr "వాడుకరి"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Last version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "చివరి కూర్పు"
# మొదటి అనువాదము
@ -10171,14 +10170,14 @@ msgstr "చివరి కూర్పు"
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "డేటాబేస్"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "పట్టిక వ్యాఖ్యలు"
# మొదటి అనువాదము
@ -12329,8 +12328,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-05-29 08:04+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Thai <http://l10n.cihar.com/projects/phpmyadmin/master/th/>\n"
@ -4312,8 +4312,8 @@ msgstr "แก้ไขคอลัมน์ CHAR"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4876,9 +4876,8 @@ msgstr "หมายเลขหน้า:"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5631,8 +5630,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5834,8 +5833,8 @@ msgstr "วิเคราะห์ตาราง"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5853,11 +5852,11 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"ดูตัวอย่าง [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]ประเภทของการรับรองความถูกต้อง[/a]"
"ดูตัวอย่าง [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]"
"ประเภทของการรับรองความถูกต้อง[/a]"
#: libraries/config/messages.inc.php:429
msgid "Signon session name"
@ -5959,8 +5958,8 @@ msgstr "คำสั่ง"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -5979,8 +5978,8 @@ msgstr "สร้างเวอร์ชั่นโดยอัตโนมั
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -5989,8 +5988,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6001,8 +6000,8 @@ msgstr "ใช้ตาราง"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10193,21 +10192,21 @@ msgstr "ผู้ใช้"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "รุ่นของเซิร์ฟเวอร์"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "เซิร์ฟเวอร์ฐานข้อมูล"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "หมายเหตุของตาราง"
#: libraries/server_privileges.lib.php:3260
@ -12398,8 +12397,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-05-07 17:12+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Turkmen <http://l10n.cihar.com/projects/phpmyadmin/master/tk/"
@ -4131,8 +4131,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4653,9 +4653,8 @@ msgstr ""
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5393,8 +5392,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5587,8 +5586,8 @@ msgstr ""
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5605,8 +5604,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -5703,8 +5702,8 @@ msgstr ""
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -5723,8 +5722,8 @@ msgstr ""
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -5733,8 +5732,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -5743,8 +5742,8 @@ msgstr ""
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -9642,17 +9641,17 @@ msgstr ""
#: libraries/server_privileges.lib.php:3236
#: libraries/server_privileges.lib.php:3402
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr ""
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr ""
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr ""
#: libraries/server_privileges.lib.php:3260
@ -11673,8 +11672,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

116
po/tr.po
View File

@ -4290,8 +4290,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for "
"import and export operations"
msgstr ""
"İçe ve dışa aktarma işlemleri için [a@http://en.wikipedia.org/wiki/"
"Bzip2]bzip2[/a] sıkıştırma etkin"
"İçe ve dışa aktarma işlemleri için [a@http://en.wikipedia.org/wiki/Bzip2]"
"bzip2[/a] sıkıştırma etkin"
#: libraries/config/messages.inc.php:29
msgid "Bzip2"
@ -4313,8 +4313,8 @@ msgstr "CHAR sütununu düzenleme"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"Sözdizimi vurgulama ve satır numaraları ile SQL sorgularını ([a@http://"
"codemirror.net/]CodeMirror[/a]) düzenlemek için kullanımı kolay düzenleyici "
@ -4712,8 +4712,8 @@ msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
"Dış anahtar aşağıılır kutusu içindeki öğeler için sıralama düzeni; "
"[kbd]content[/kbd] başvurulan veridir, [kbd]id[/kbd] anahtar değerdir"
"Dış anahtar aşağıılır kutusu içindeki öğeler için sıralama düzeni; [kbd]"
"content[/kbd] başvurulan veridir, [kbd]id[/kbd] anahtar değerdir"
#: libraries/config/messages.inc.php:151
msgid "Foreign key dropdown order"
@ -4853,9 +4853,8 @@ msgstr "Sayfa başlığı"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Tarayıcının başlık çubuğu metnini belirler. Özel değerleri almakta "
"kullanılabilecek sihirli dizgiler için [doc@cfg_TitleTable]belgeden[/doc] "
@ -4921,8 +4920,8 @@ msgid ""
"documentation"
msgstr ""
"İlave özelliklere erişim kazanmak için phpMyAdmin yapılandırma depolamasını "
"yapılandırır, belgelerde [doc@linked-tables]phpMyAdmin yapılandırma "
"depolama[/doc] kısmına bakın"
"yapılandırır, belgelerde [doc@linked-tables]phpMyAdmin yapılandırma depolama"
"[/doc] kısmına bakın"
#: libraries/config/messages.inc.php:206
msgid "Changes tracking"
@ -5045,8 +5044,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations"
msgstr ""
"İçe ve dışa aktarma işlemleri için [a@http://en.wikipedia.org/wiki/"
"Gzip]gzip[/a] sıkıştırma etkin"
"İçe ve dışa aktarma işlemleri için [a@http://en.wikipedia.org/wiki/Gzip]gzip"
"[/a] sıkıştırma etkin"
#: libraries/config/messages.inc.php:237
msgid "GZip"
@ -5672,11 +5671,11 @@ msgstr "Yer imi tablosu"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Sütun yorumları/mime türleri istenmiyorsa boş bırakın, önerilen: "
"[kbd]pma__column_info[/kbd]"
"Sütun yorumları/mime türleri istenmiyorsa boş bırakın, önerilen: [kbd]"
"pma__column_info[/kbd]"
#: libraries/config/messages.inc.php:383
msgid "Column information table"
@ -5748,8 +5747,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Tasarımcı desteği istenmiyorsa boş bırakın, önerilen: "
"[kbd]pma__designer_coords[/kbd]"
"Tasarımcı desteği istenmiyorsa boş bırakın, önerilen: [kbd]"
"pma__designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5790,8 +5789,8 @@ msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
msgstr ""
"SQL sorgu geçmişi desteği istenmiyorsa boş bırakın, önerilen: "
"[kbd]pma__history[/kbd]"
"SQL sorgu geçmişi desteği istenmiyorsa boş bırakın, önerilen: [kbd]"
"pma__history[/kbd]"
#: libraries/config/messages.inc.php:404
msgid "SQL query history table"
@ -5900,8 +5899,8 @@ msgstr "Son kullanılan tablo"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/relation]İlişki bağlantıları[/a] desteği "
"istenmiyorsa boş bırakın, önerilen: [kbd]pma__relation[/kbd]"
@ -5920,8 +5919,8 @@ msgstr "SHOW DATABASES komutu"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Örnek için [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]kimlik "
"doğrulaması türlerine[/a] bakın"
@ -5956,8 +5955,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"PDF şeması desteği istenmiyorsa boş bırakın, önerilen: "
"[kbd]pma__table_coords[/kbd]"
"PDF şeması desteği istenmiyorsa boş bırakın, önerilen: [kbd]pma__table_coords"
"[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6034,11 +6033,11 @@ msgstr "İfadelerden izlere"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"SQL sorgu izleme desteği olmaması için boş bırakın, önerilen: "
"[kbd]pma__tracking[/kbd]"
"SQL sorgu izleme desteği olmaması için boş bırakın, önerilen: [kbd]"
"pma__tracking[/kbd]"
#: libraries/config/messages.inc.php:450
msgid "SQL query tracking table"
@ -6058,8 +6057,8 @@ msgstr "Otomatik olarak sürümleri oluştur"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Veritabanında kullanıcı tercihleri depolaması olmaması için boş bırakın, "
"önerilen: [kbd]pma__userconfig[/kbd]"
@ -6070,11 +6069,11 @@ msgstr "Kullanıcı tercihleri depolama tablosu"
#: libraries/config/messages.inc.php:455
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Yapılandırılabilir menüler özelliğini etkisizleştirmek için boş bırakın, "
"önerilen: [kbd]pma__users[/kbd]"
@ -6086,11 +6085,11 @@ msgstr "Kullanıcılar tablosu"
#: libraries/config/messages.inc.php:457
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Yapılandırılabilir menüler özelliğini etkisizleştirmek için boş bırakın, "
"önerilen: [kbd]pma__usergroups[/kbd]"
@ -6102,8 +6101,8 @@ msgstr "Kullanıcı grupları tablosu"
#: libraries/config/messages.inc.php:459
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6147,10 +6146,9 @@ msgid ""
"authentication mode because the password is hard coded in the configuration "
"file; this does not limit the ability to execute the same command directly"
msgstr ""
"Lütfen unutmayın, bunu etkinleştirmek kimlik doğrulaması kipi "
"[kbd]yapılandırmasını[/kbd] etkilemez çünkü parola yapılandırma dosyasında "
"sıkı kodlanmıştır; bu, doğrudan aynı komutun yürütme kabiliyetini "
"sınırlandırmaz"
"Lütfen unutmayın, bunu etkinleştirmek kimlik doğrulaması kipi [kbd]"
"yapılandırmasını[/kbd] etkilemez çünkü parola yapılandırma dosyasında sıkı "
"kodlanmıştır; bu, doğrudan aynı komutun yürütme kabiliyetini sınırlandırmaz"
#: libraries/config/messages.inc.php:468
msgid "Show password change form"
@ -6321,8 +6319,8 @@ msgid ""
"If you have a custom username, specify it here (defaults to [kbd]anonymous[/"
"kbd])"
msgstr ""
"Eğer özel kullanıcı adınız varsa, onu burada belirleyin (varsayılanı "
"[kbd]isimsiz'dir[/kbd])"
"Eğer özel kullanıcı adınız varsa, onu burada belirleyin (varsayılanı [kbd]"
"isimsiz'dir[/kbd])"
#: libraries/config/messages.inc.php:506 tbl_tracking.php:559
#: tbl_tracking.php:621
@ -6482,8 +6480,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
"İçe ve dışa aktarma işlemleri için [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] sıkıştırma etkin"
"İçe ve dışa aktarma işlemleri için [a@http://en.wikipedia.org/wiki/ZIP_"
"(file_format)]ZIP[/a] sıkıştırma etkin"
#: libraries/config/messages.inc.php:540
msgid "ZIP"
@ -10279,19 +10277,19 @@ msgstr "Kullanıcı grupları"
#: libraries/server_privileges.lib.php:3236
#: libraries/server_privileges.lib.php:3402
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Sunucu seviyesi sekmeler"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Veritabanı seviyesi sekmeler"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Tablo seviyesi sekmeler"
#: libraries/server_privileges.lib.php:3260
@ -12559,8 +12557,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"[kbd]Yapılandırma[/kbd] kimlik doğrulaması türünü ayarladınız ve buna "
"otomatik oturum açma için kullanıcı adı ve parola dahildir, canlı "
@ -14536,9 +14534,9 @@ msgstr "concurrent_insert 0'a ayarlı"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Bu [kbd]iç içe koymaya[/kbd] ayarlandığında, tablo isimlerinin kod adları "
#~ "tabloları $cfg['LeftFrameTableSeparator'] yönergesine göre sadece bölmek/"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-06-24 16:06+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Tatar <http://l10n.cihar.com/projects/phpmyadmin/master/tt/>\n"
@ -4553,8 +4553,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5130,9 +5130,8 @@ msgstr "Bitneñ sanı:"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5926,8 +5925,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -6134,8 +6133,8 @@ msgstr "Tüşämä centekläw"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -6153,8 +6152,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6258,8 +6257,8 @@ msgstr "Cömlä"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6280,8 +6279,8 @@ msgstr "Üzennän tözälü ısulı"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6290,8 +6289,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6302,8 +6301,8 @@ msgstr "Tüşämä qullanıp"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10625,21 +10624,21 @@ msgstr "Qullanuçı"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Server söreme"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database for user"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Qullanuçı biremlege"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table removal"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "tüşämä adı"
#: libraries/server_privileges.lib.php:3260
@ -12853,8 +12852,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-06-20 20:19+0200\n"
"Last-Translator: gheni <gheni@yahoo.cn>\n"
"Language-Team: Uighur <http://l10n.cihar.com/projects/phpmyadmin/master/ug/"
@ -4443,8 +4443,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4992,9 +4992,8 @@ msgstr ""
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5752,8 +5751,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5950,8 +5949,8 @@ msgstr "جەدۋەل تەھلىلى"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5968,8 +5967,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6066,8 +6065,8 @@ msgstr ""
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6086,8 +6085,8 @@ msgstr ""
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6096,8 +6095,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -6108,8 +6107,8 @@ msgstr "جەدۋەللەرنى ئىشلىتىش"
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -10274,21 +10273,21 @@ msgstr ""
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "مۇلازىمىتىر نۇسخىسى"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Databases"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "ساندان"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "جەدۋەل ئىزاھى"
#: libraries/server_privileges.lib.php:3260
@ -12417,8 +12416,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 11:14+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Ukrainian <http://l10n.cihar.com/projects/phpmyadmin/master/"
@ -4363,8 +4363,8 @@ msgstr "CHAR редагування стовпців"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4770,8 +4770,8 @@ msgid ""
"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
"the referenced data, [kbd]id[/kbd] is the key value"
msgstr ""
"Порядок сортування елементів у випадаючому списку зовнішніх ключів; "
"[kbd]вміст[/kbd] - пов'язані дані, [kbd]id[/kbd] - ключі"
"Порядок сортування елементів у випадаючому списку зовнішніх ключів; [kbd]"
"вміст[/kbd] - пов'язані дані, [kbd]id[/kbd] - ключі"
#: libraries/config/messages.inc.php:151
msgid "Foreign key dropdown order"
@ -4919,13 +4919,12 @@ msgstr "Заголовки сторінки"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"Вкажіть рядку заголовка браузера текст. Відповідно до "
"[doc@cfg_TitleTable]documentation[/doc] для магічних рядків, які можуть "
"використовуватися для отримання спеціальних значень."
"Вкажіть рядку заголовка браузера текст. Відповідно до [doc@cfg_TitleTable]"
"documentation[/doc] для магічних рядків, які можуть використовуватися для "
"отримання спеціальних значень."
#: libraries/config/messages.inc.php:194
#: libraries/navigation/NavigationHeader.class.php:209
@ -5365,8 +5364,8 @@ msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
"Кількість байтів, що дозволяється виділяти під сценарій, наприклад. "
"[kbd]32M[/kbd] ([kbd]0[/kbd] без обмежень)"
"Кількість байтів, що дозволяється виділяти під сценарій, наприклад. [kbd]32M"
"[/kbd] ([kbd]0[/kbd] без обмежень)"
#: libraries/config/messages.inc.php:298
msgid "Memory limit"
@ -5770,8 +5769,8 @@ msgstr "Таблиця закладок"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5856,9 +5855,8 @@ msgid ""
"More information on [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]PMA "
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
"Детальніше дивіться на [a@https://sourceforge.net/p/phpmyadmin/"
"bugs/2606/]PMA bug tracker[/a] та [a@http://bugs.mysql.com/19588]MySQL Bugs[/"
"a]"
"Детальніше дивіться на [a@https://sourceforge.net/p/phpmyadmin/bugs/2606/]"
"PMA bug tracker[/a] та [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
#: libraries/config/messages.inc.php:398
msgid "Disable use of INFORMATION_SCHEMA"
@ -6004,8 +6002,8 @@ msgstr "Нещодавно використані таблиці"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -6022,8 +6020,8 @@ msgstr "Команда SHOW DATABASES"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Дивись [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] для прикладу"
@ -6132,8 +6130,8 @@ msgstr "Стеження за виразами"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -6153,8 +6151,8 @@ msgstr "Автоматично створювати версії"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -6164,11 +6162,11 @@ msgstr "Таблиця збереження налаштувань корист
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Залиште порожнім, якщо налаштування користувача не зберігаються в базі "
"даних, пропонується: [kbd]pma_userconfig[/kbd]"
@ -6182,11 +6180,11 @@ msgstr "Використовувати таблиці"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Залиште порожнім, якщо налаштування користувача не зберігаються в базі "
"даних, пропонується: [kbd]pma_userconfig[/kbd]"
@ -6200,8 +6198,8 @@ msgstr "Використовувати Таблицю Хостів"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma_userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma_userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -8602,8 +8600,8 @@ msgid ""
"reloaded between servers in different time zones)</i>"
msgstr ""
"Зберігати поля з типом TIMESTAMP в UTC <i>(дозволяє зберегти і перенести "
"поля з типом TIMESTAMP між серверами, що знаходяться в різних часових "
"зонах)</i>"
"поля з типом TIMESTAMP між серверами, що знаходяться в різних часових зонах)"
"</i>"
#: libraries/plugins/export/ExportSql.class.php:1210
msgid "Constraints for dumped tables"
@ -10494,21 +10492,21 @@ msgstr "Користувачі"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Версія сервера"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Сервер бази даних"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Коментарі таблиці"
#: libraries/server_privileges.lib.php:3260
@ -12731,8 +12729,8 @@ msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
"Якщо використовується Git версія, запустіть [kbd]git pull[/kbd] :-)"
"[br]Остання стабільна версія %s, випущена %s."
"Якщо використовується Git версія, запустіть [kbd]git pull[/kbd] :-)[br]"
"Остання стабільна версія %s, випущена %s."
#: setup/lib/index.lib.php:170
msgid "No newer stable version is available"
@ -12846,8 +12844,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Ви встановили [kbd]конфігураційний[/kbd] тип аутентифікації і ввели ім'я "
"користувача і пароль для автоматичного входу в систему, що не є бажаним "

109
po/ur.po
View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-02 10:26+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Urdu <http://l10n.cihar.com/projects/phpmyadmin/master/ur/>\n"
@ -671,8 +671,8 @@ msgid ""
"[doc@faq1-16]FAQ 1.16[/doc]."
msgstr ""
"درآمد کے لیے کوئی کوائف نہیں ملا۔ ممکن ہے کہ مسل نام بھیجا نہ گیا ہو یا مسل "
"سائز مقررہ حد سے تجاوز کرگئی ہو جو آپ کے PHP تشکیل میں ہے۔ "
"دیکھیں[doc@faq1-16]عمومی سوالات 1.16[/doc]."
"سائز مقررہ حد سے تجاوز کرگئی ہو جو آپ کے PHP تشکیل میں ہے۔ دیکھیں"
"[doc@faq1-16]عمومی سوالات 1.16[/doc]."
#: import.php:467
msgid ""
@ -4452,8 +4452,8 @@ msgstr "CHAR کالم تدوین"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5003,9 +5003,8 @@ msgstr "صفحہ عنوانات"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"براؤزر عنوان بار متن لکھیں۔ حوالہ کے لیے[doc@cfg_TitleTable]documentation[/"
"doc] خاص قدریں حاصل کرنے کے لیے میجک سٹرنگ۔"
@ -5069,8 +5068,8 @@ msgid ""
"features, see [doc@linked-tables]phpMyAdmin configuration storage[/doc] in "
"documentation"
msgstr ""
"اضافی خواص تک رسائی کے لیے phpMyAdmin تشکیلات ذخیرہ کو تشکیل کریں، "
"دیکھیں[doc@linked-tables]phpMyAdmin تشکیل ذخیرہ[/doc] دستاویزات میں"
"اضافی خواص تک رسائی کے لیے phpMyAdmin تشکیلات ذخیرہ کو تشکیل کریں، دیکھیں"
"[doc@linked-tables]phpMyAdmin تشکیل ذخیرہ[/doc] دستاویزات میں"
#: libraries/config/messages.inc.php:206
msgid "Changes tracking"
@ -5850,11 +5849,11 @@ msgstr "جدول نشان کریں"
#: libraries/config/messages.inc.php:382
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
#| "[kbd]pma_column_info[/kbd]"
#| "Leave blank for no column comments/mime types, suggested: [kbd]"
#| "pma_column_info[/kbd]"
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"کالم تبصرہ/mime اقسام کے لیے خالی چھوڑیں, مجوزہ: [kbd]pma_column_info[/kbd]"
@ -5928,8 +5927,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
"[kbd]pma_designer_coords[/kbd]"
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -5941,8 +5940,8 @@ msgid ""
"bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
"مزید معلومات یہاں موجود ہے [a@https://sourceforge.net/p/phpmyadmin/"
"bugs/2606/]PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL "
"نقائص[/a]"
"bugs/2606/]PMA bug tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL نقائص"
"[/a]"
#: libraries/config/messages.inc.php:398
msgid "Disable use of INFORMATION_SCHEMA"
@ -5968,8 +5967,8 @@ msgstr "کوائفیے چھپائیں"
#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
#| "[kbd]pma_history[/kbd]"
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
@ -6039,8 +6038,8 @@ msgstr ""
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]"
msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
"[kbd]pma_designer_coords[/kbd]"
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:417
msgid "PDF schema: pages table"
@ -6090,8 +6089,8 @@ msgstr "صارف نام یاد کریں"
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
#| "a] support, suggested: [kbd]pma_bookmark[/kbd]"
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"نہیں کے لیے خالی چھوڑیں[a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/"
"a] معاونت، مجوزہ[kbd]pma_bookmark[/kbd]"
@ -6110,8 +6109,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -6147,8 +6146,8 @@ msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/"
"kbd]"
msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
"[kbd]pma_designer_coords[/kbd]"
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:436
msgid "PDF schema: table coordinates"
@ -6163,8 +6162,8 @@ msgid ""
"Table to describe the display columns, leave blank for no support; "
"suggested: [kbd]pma__table_info[/kbd]"
msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
"[kbd]pma_designer_coords[/kbd]"
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:438
msgid "Display columns table"
@ -6178,8 +6177,8 @@ msgid ""
"Leave blank for no \"persistent\" tables' UI preferences across sessions, "
"suggested: [kbd]pma__table_uiprefs[/kbd]"
msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
"[kbd]pma_designer_coords[/kbd]"
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:440
msgid "UI preferences table"
@ -6226,11 +6225,11 @@ msgstr ""
#: libraries/config/messages.inc.php:449
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
#| "[kbd]pma_history[/kbd]"
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"SQL طلب لاگ معاونت نہ کرنے کے لیے خالی چھوڑیں , مجوزہ: [kbd]pma_history[/kbd]"
@ -6253,11 +6252,11 @@ msgstr ""
#| msgid ""
#| "ve blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
"[kbd]pma_designer_coords[/kbd]"
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:454
msgid "User preferences storage table"
@ -6268,11 +6267,11 @@ msgstr ""
#| msgid ""
#| "ve blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
"[kbd]pma_designer_coords[/kbd]"
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:456
#, fuzzy
@ -6285,11 +6284,11 @@ msgstr "جداول استعمال کریں"
#| msgid ""
#| "ve blank for no Designer support, suggested: [kbd]pma_designer_coords[/]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
"[kbd]pma_designer_coords[/kbd]"
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:458
msgid "User groups table"
@ -6303,8 +6302,8 @@ msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
msgstr ""
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: "
"[kbd]pma_designer_coords[/kbd]"
"اگر ڈیزائنر کی معاونت نہیں کرسکتے تو کالی چھوڑ دیں, مجوزہ: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:460
msgid "Hidden navigation items table"
@ -10426,21 +10425,21 @@ msgstr ""
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version:"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "سرور نسخہ:"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "کوائفیہ سرور"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "جدول تبصرے"
#: libraries/server_privileges.lib.php:3260
@ -12594,8 +12593,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

117
po/uz.po
View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-12 15:04+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Uzbek <http://l10n.cihar.com/projects/phpmyadmin/master/uz/>\n"
@ -914,8 +914,8 @@ msgstr ""
#: index.php:468
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"cookie-аутентификация ишлатилганда, конфигурацион файлдаги "
"$cfg[\"blowfish_secret\"] директиваси қийматини ўрнатиб парол белгилаш керак."
"cookie-аутентификация ишлатилганда, конфигурацион файлдаги $cfg"
"[\"blowfish_secret\"] директиваси қийматини ўрнатиб парол белгилаш керак."
#: index.php:479
#, fuzzy
@ -4671,8 +4671,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for "
"import and export operations"
msgstr ""
"Импорт ва экспорт операцияларида [a@http://en.wikipedia.org/wiki/"
"Bzip2]bzip2[/a] ёрдамида сиқишни ёқиш"
"Импорт ва экспорт операцияларида [a@http://en.wikipedia.org/wiki/Bzip2]"
"bzip2[/a] ёрдамида сиқишни ёқиш"
#: libraries/config/messages.inc.php:29
msgid "Bzip2"
@ -4702,8 +4702,8 @@ msgstr "CHAR майдонларини таҳрирлаш"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5289,9 +5289,8 @@ msgstr "Саҳифа рақами: "
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5499,8 +5498,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations"
msgstr ""
"Импорт ва экспорт операцияларида [a@http://en.wikipedia.org/wiki/"
"Gzip]gzip[/a] ёрдамида сиқишни ёқиш"
"Импорт ва экспорт операцияларида [a@http://en.wikipedia.org/wiki/Gzip]gzip"
"[/a] ёрдамида сиқишни ёқиш"
#: libraries/config/messages.inc.php:237
msgid "GZip"
@ -6179,11 +6178,11 @@ msgstr "Хатчўплар жадвали"
#: libraries/config/messages.inc.php:382
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
#| "[kbd]pma_column_info[/kbd]"
#| "Leave blank for no column comments/mime types, suggested: [kbd]"
#| "pma_column_info[/kbd]"
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Устун изоҳлари/\"mime\"-турлари ҳақидаги маълумотларни ишлатмаслик учун бўш "
"қолдиринг, асли: [kbd]pma_column_info[/kbd]"
@ -6218,8 +6217,8 @@ msgid ""
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
"Чекланган ҳуқуқларга эга бўлган махсус \"MySQL\" фойдаланувчиси тузилган, "
"батафсил маълумот [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/"
"a]да мавжуд"
"батафсил маълумот [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/a]"
"да мавжуд"
#: libraries/config/messages.inc.php:390
msgid "Control user"
@ -6259,8 +6258,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Дизайнер ишлатмаслик учун бўш қолдиринг, асл қиймати: "
"[kbd]pma_designer_coords[/kbd]"
"Дизайнер ишлатмаслик учун бўш қолдиринг, асл қиймати: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -6301,8 +6300,8 @@ msgstr "Базаларни яшириш"
#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
#| "[kbd]pma_history[/kbd]"
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
@ -6436,8 +6435,8 @@ msgstr "Фойдаланувчи номини чақириб олиш"
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
#| "links[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/relation]Алоқа боғланишлари[/a]ни "
"ишлатмаслик учун, бўш қолдиринг, асл қиймати: [kbd]\"pma_relation\"[/kbd]"
@ -6456,11 +6455,11 @@ msgstr "SHOW DATABASES буйруғи"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Намуна учун [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]аутентификация усуллари[/a]га қаранг"
"Намуна учун [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]"
"аутентификация усуллари[/a]га қаранг"
#: libraries/config/messages.inc.php:429
msgid "Signon session name"
@ -6584,8 +6583,8 @@ msgstr "Тавсиф"
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл "
"қиймати: [kbd]\"pma_history\"[/kbd]"
@ -6613,8 +6612,8 @@ msgstr "Автоматик тиклаш режими"
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл "
"қиймати: [kbd]\"pma_history\"[/kbd]"
@ -6628,8 +6627,8 @@ msgstr ""
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл "
"қиймати: [kbd]\"pma_history\"[/kbd]"
@ -6645,8 +6644,8 @@ msgstr "Жадвалларни ишлатиш"
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Агар SQL сўровлар тарихидан фойдаланмоқчи бўлмасангиз, бўш қолдиринг, асл "
"қиймати: [kbd]\"pma_history\"[/kbd]"
@ -7034,8 +7033,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
"Импорт ва экспорт операциялари учун [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] қисишни ёқиш"
"Импорт ва экспорт операциялари учун [a@http://en.wikipedia.org/wiki/ZIP_"
"(file_format)]ZIP[/a] қисишни ёқиш"
#: libraries/config/messages.inc.php:540
msgid "ZIP"
@ -11217,21 +11216,21 @@ msgstr "Фойдаланувчи"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Сервер версияси"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database for user"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Фойдаланувчи учун маълумотлар базаси"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table removal"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Жадвал номи"
#: libraries/server_privileges.lib.php:3260
@ -12114,8 +12113,8 @@ msgstr "Очиқ файллар сони."
#: libraries/server_status_variables.lib.php:632
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Очиқ оқимлар сони (журнал файлларида кўлланилади). <b>Оқим</b> деб "
"\"fopen()\" функцияси ёрдамида очилган файлга айтилади."
"Очиқ оқимлар сони (журнал файлларида кўлланилади). <b>Оқим</b> деб \"fopen"
"()\" функцияси ёрдамида очилган файлга айтилади."
#: libraries/server_status_variables.lib.php:635
msgid "The number of tables that are open."
@ -12280,8 +12279,8 @@ msgid ""
msgstr ""
"Маълум бир вақтдандан кейин қониқтирилган жадвални блокировка қилишга бўлган "
"сўровлар сони. Агар қиймат жуда катта бўлса ва унумдорлик бўйича муаммолар "
"пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса "
"жадвал(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак."
"пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал"
"(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак."
#: libraries/server_status_variables.lib.php:733
msgid ""
@ -13378,9 +13377,8 @@ msgstr "Конфигурацияни юклаб ёки сақлаб бўлмад
#, fuzzy
#| msgid ""
#| "ase create web server writable folder [em]config[/em] in phpMyAdmin "
#| "level directory as described in [a@../Documentation."
#| "html#setup_script]umentation[/a]. Otherwise you will be only able to "
#| "download or display "
#| "level directory as described in [a@../Documentation.html#setup_script]"
#| "umentation[/a]. Otherwise you will be only able to download or display "
msgid ""
"Please create web server writable folder [em]config[/em] in phpMyAdmin top "
"level directory as described in [doc@setup_script]documentation[/doc]. "
@ -13545,10 +13543,10 @@ msgstr "Янгироқ версия ҳали мавжуд эмас"
#| msgid ""
#| "s [a@?page=form&amp;formset=features#tab_Security]option[/a] should be "
#| "abled as it allows attackers to bruteforce login to any MySQL server. you "
#| "feel this is necessary, use [a@?page=form&amp;"
#| "mset=features#tab_Security]trusted proxies list[/a]. However, IP-based "
#| "tection may not be reliable if your IP belongs to an ISP where usands of "
#| "users, including you, are connected to."
#| "feel this is necessary, use [a@?page=form&amp;mset=features#tab_Security]"
#| "trusted proxies list[/a]. However, IP-based tection may not be reliable "
#| "if your IP belongs to an ISP where usands of users, including you, are "
#| "connected to."
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
"login to any MySQL server. If you feel this is necessary, use %strusted "
@ -13672,15 +13670,14 @@ msgstr ""
#| " set the [kbd]config[/kbd] authentication type and included username "
#| "password for auto-login, which is not a desirable option for live ts. "
#| "Anyone who knows or guesses your phpMyAdmin URL can directly ess your "
#| "phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;"
#| "id=d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or "
#| "[kbd]httpbd]."
#| "phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id=d#tab_Server]"
#| "authentication type[/a] to [kbd]cookie[/kbd] or [kbd]httpbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Сиз [kbd]config[/kbd] аутентификация усулини танлаб, ўз логинва паролингизни "
"конфигурацион файлга ёзиб қўйдингиз ва у Сизга автоматик тарзда phpMyAdmin "
@ -15671,9 +15668,9 @@ msgstr "Максимал уланишлар сони "
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Агар ушбу танловни [kbd]\"nested\"[/kbd] деб белгиласангиз, фақат жадвал "
#~ "номининг тахаллуси конфигурацион файлдаги $cfg[\"LeftFrameTableSeparator"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-15 11:32+0200\n"
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
"Language-Team: Uzbek (latin) <http://l10n.cihar.com/projects/phpmyadmin/"
@ -923,9 +923,8 @@ msgstr ""
#: index.php:468
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
"cookie-autentifikatsiya ishlatilganda, konfiguratsion fayldagi "
"$cfg[\"blowfish_secret\"] direktivasi qiymatini ornatib parol belgilash "
"kerak."
"cookie-autentifikatsiya ishlatilganda, konfiguratsion fayldagi $cfg"
"[\"blowfish_secret\"] direktivasi qiymatini ornatib parol belgilash kerak."
#: index.php:479
#, fuzzy
@ -961,8 +960,8 @@ msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
"MySQL-kliyent versiyasi (\"%s\") ornatilgan MySQL-server versiyasi(\"%s"
"\")dan farq qilmoqda. Bu holat noxush oqibatlarga olib kelishi mumkin."
"MySQL-kliyent versiyasi (\"%s\") ornatilgan MySQL-server versiyasi(\"%s\")"
"dan farq qilmoqda. Bu holat noxush oqibatlarga olib kelishi mumkin."
#: index.php:545
#, php-format
@ -3147,8 +3146,8 @@ msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi."
#: libraries/File.class.php:476
msgid "Error moving the uploaded file, see [doc@faq1-11]FAQ 1.11[/doc]"
msgstr ""
"Yuklangan fayl joyini ozgartirishda xatolik, [doc@faq1-11]\"FAQ 1.11\"[/"
"doc]ga qarang"
"Yuklangan fayl joyini ozgartirishda xatolik, [doc@faq1-11]\"FAQ 1.11\"[/doc]"
"ga qarang"
#: libraries/File.class.php:494
msgid "Error while moving uploaded file."
@ -4704,8 +4703,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for "
"import and export operations"
msgstr ""
"Import va eksport operatsiyalarida [a@http://en.wikipedia.org/wiki/"
"Bzip2]bzip2[/a] yordamida siqishni yoqish"
"Import va eksport operatsiyalarida [a@http://en.wikipedia.org/wiki/Bzip2]"
"bzip2[/a] yordamida siqishni yoqish"
#: libraries/config/messages.inc.php:29
msgid "Bzip2"
@ -4735,8 +4734,8 @@ msgstr "CHAR maydonlarini tahrirlash"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -5322,9 +5321,8 @@ msgstr "Sahifa raqami: "
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5532,8 +5530,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations"
msgstr ""
"Import va eksport operatsiyalarida [a@http://en.wikipedia.org/wiki/"
"Gzip]gzip[/a] yordamida siqishni yoqish"
"Import va eksport operatsiyalarida [a@http://en.wikipedia.org/wiki/Gzip]"
"gzip[/a] yordamida siqishni yoqish"
#: libraries/config/messages.inc.php:237
msgid "GZip"
@ -5824,8 +5822,8 @@ msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
"Boglangan sahifani bosh oynada ([kbd]bosh[/kbd]) yoki yangi oynada "
"([kbd]yangi[/kbd]) ochish"
"Boglangan sahifani bosh oynada ([kbd]bosh[/kbd]) yoki yangi oynada ([kbd]"
"yangi[/kbd]) ochish"
#: libraries/config/messages.inc.php:304
msgid "Logo link target"
@ -6217,11 +6215,11 @@ msgstr "Xatchoplar jadvali"
#: libraries/config/messages.inc.php:382
#, fuzzy
#| msgid ""
#| "Leave blank for no column comments/mime types, suggested: "
#| "[kbd]pma_column_info[/kbd]"
#| "Leave blank for no column comments/mime types, suggested: [kbd]"
#| "pma_column_info[/kbd]"
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
"Ustun izohlari/\"mime\"-turlari haqidagi ma`lumotlarni ishlatmaslik uchun "
"bosh qoldiring, asli: [kbd]pma_column_info[/kbd]"
@ -6256,8 +6254,8 @@ msgid ""
"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
msgstr ""
"Cheklangan huquqlarga ega bolgan maxsus \"MySQL\" foydalanuvchisi tuzilgan, "
"batafsil ma`lumot [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/"
"a]da mavjud"
"batafsil ma`lumot [a@http://wiki.phpmyadmin.net/pma/controluser]\"wiki\"[/a]"
"da mavjud"
#: libraries/config/messages.inc.php:390
msgid "Control user"
@ -6297,8 +6295,8 @@ msgid ""
"Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/"
"kbd]"
msgstr ""
"Dizayner ishlatmaslik uchun bosh qoldiring, asl qiymati: "
"[kbd]pma_designer_coords[/kbd]"
"Dizayner ishlatmaslik uchun bosh qoldiring, asl qiymati: [kbd]"
"pma_designer_coords[/kbd]"
#: libraries/config/messages.inc.php:396
msgid "Designer table"
@ -6339,8 +6337,8 @@ msgstr "Bazalarni yashirish"
#: libraries/config/messages.inc.php:403
#, fuzzy
#| msgid ""
#| "Leave blank for no SQL query history support, suggested: "
#| "[kbd]pma_history[/kbd]"
#| "Leave blank for no SQL query history support, suggested: [kbd]pma_history"
#| "[/kbd]"
msgid ""
"Leave blank for no SQL query history support, suggested: [kbd]pma__history[/"
"kbd]"
@ -6432,8 +6430,8 @@ msgid ""
"no support. Suggested: [kbd]phpmyadmin[/kbd]"
msgstr ""
"Aloqalar, xatchoplar va PDF imkoniyatlari uchun ishlatiladigan baza. "
"Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/"
"a]ga qarang. Agar foydalanmasangiz, bosh qoldiring. Asl qiymati: "
"Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]"
"ga qarang. Agar foydalanmasangiz, bosh qoldiring. Asl qiymati: "
"[kbd]\"phpmyadmin\"[/kbd]"
#: libraries/config/messages.inc.php:419
@ -6474,8 +6472,8 @@ msgstr "Foydalanuvchi nomini chaqirib olish"
#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
#| "links[/a] support, suggested: [kbd]pma_relation[/kbd]"
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"[a@http://wiki.phpmyadmin.net/pma/relation]Aloqa boglanishlari[/a]ni "
"ishlatmaslik uchun, bosh qoldiring, asl qiymati: [kbd]\"pma_relation\"[/kbd]"
@ -6494,11 +6492,11 @@ msgstr "SHOW DATABASES buyrugi"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"Namuna uchun [a@http://wiki.phpmyadmin.net/pma/"
"auth_types#signon]autentifikatsiya usullari[/a]ga qarang"
"Namuna uchun [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]"
"autentifikatsiya usullari[/a]ga qarang"
#: libraries/config/messages.inc.php:429
msgid "Signon session name"
@ -6622,8 +6620,8 @@ msgstr "Tavsif"
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
"Agar SQL sorovlar tarixidan foydalanmoqchi bolmasangiz, bosh qoldiring, "
"asl qiymati: [kbd]\"pma_history\"[/kbd]"
@ -6651,8 +6649,8 @@ msgstr "Avtomatik tiklash rejimi"
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
"Agar SQL sorovlar tarixidan foydalanmoqchi bolmasangiz, bosh qoldiring, "
"asl qiymati: [kbd]\"pma_history\"[/kbd]"
@ -6666,8 +6664,8 @@ msgstr ""
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
"Agar SQL sorovlar tarixidan foydalanmoqchi bolmasangiz, bosh qoldiring, "
"asl qiymati: [kbd]\"pma_history\"[/kbd]"
@ -6683,8 +6681,8 @@ msgstr "Jadvallarni ishlatish"
#| msgid ""
#| "ve blank for no SQL query history support, suggested: [kbd]pma_historybd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
"Agar SQL sorovlar tarixidan foydalanmoqchi bolmasangiz, bosh qoldiring, "
"asl qiymati: [kbd]\"pma_history\"[/kbd]"
@ -7075,8 +7073,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
"Import va eksport operatsiyalari uchun [a@http://en.wikipedia.org/wiki/"
"ZIP_(file_format)]ZIP[/a] qisishni yoqish"
"Import va eksport operatsiyalari uchun [a@http://en.wikipedia.org/wiki/ZIP_"
"(file_format)]ZIP[/a] qisishni yoqish"
#: libraries/config/messages.inc.php:540
msgid "ZIP"
@ -11287,21 +11285,21 @@ msgstr "Foydalanuvchi"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "Server versiyasi"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database for user"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "Foydalanuvchi uchun ma`lumotlar bazasi"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table removal"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "Jadval nomi"
#: libraries/server_privileges.lib.php:3260
@ -12192,8 +12190,8 @@ msgstr "Ochiq fayllar soni."
#: libraries/server_status_variables.lib.php:632
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
"Ochiq oqimlar soni (jurnal fayllarida kollaniladi). <b>Oqim</b> deb "
"\"fopen()\" funksiyasi yordamida ochilgan faylga aytiladi."
"Ochiq oqimlar soni (jurnal fayllarida kollaniladi). <b>Oqim</b> deb \"fopen"
"()\" funksiyasi yordamida ochilgan faylga aytiladi."
#: libraries/server_status_variables.lib.php:635
msgid "The number of tables that are open."
@ -13469,18 +13467,17 @@ msgstr "Konfiguratsiyani yuklab yoki saqlab bolmadi"
#, fuzzy
#| msgid ""
#| "ase create web server writable folder [em]config[/em] in phpMyAdmin "
#| "level directory as described in [a@../Documentation."
#| "html#setup_script]umentation[/a]. Otherwise you will be only able to "
#| "download or display "
#| "level directory as described in [a@../Documentation.html#setup_script]"
#| "umentation[/a]. Otherwise you will be only able to download or display "
msgid ""
"Please create web server writable folder [em]config[/em] in phpMyAdmin top "
"level directory as described in [doc@setup_script]documentation[/doc]. "
"Otherwise you will be only able to download or display it."
msgstr ""
"[a@../Documentation.html#setup_script]Dokumentatsiya[/a]da korsatilganidek, "
"phpMyAdmin joylashgan katalogda ver-server yozishi mumkin bolgan "
"[em]config[/em] nomli katalog oching. Aks holda, Siz uni faqat yuklab "
"olishingiz yoki korishingiz mumkin boladi."
"phpMyAdmin joylashgan katalogda ver-server yozishi mumkin bolgan [em]config"
"[/em] nomli katalog oching. Aks holda, Siz uni faqat yuklab olishingiz yoki "
"korishingiz mumkin boladi."
#: setup/frames/index.inc.php:60
msgid ""
@ -13636,10 +13633,10 @@ msgstr "Yangiroq versiya hali mavjud emas"
#| msgid ""
#| "s [a@?page=form&amp;formset=features#tab_Security]option[/a] should be "
#| "abled as it allows attackers to bruteforce login to any MySQL server. you "
#| "feel this is necessary, use [a@?page=form&amp;"
#| "mset=features#tab_Security]trusted proxies list[/a]. However, IP-based "
#| "tection may not be reliable if your IP belongs to an ISP where usands of "
#| "users, including you, are connected to."
#| "feel this is necessary, use [a@?page=form&amp;mset=features#tab_Security]"
#| "trusted proxies list[/a]. However, IP-based tection may not be reliable "
#| "if your IP belongs to an ISP where usands of users, including you, are "
#| "connected to."
msgid ""
"This %soption%s should be disabled as it allows attackers to bruteforce "
"login to any MySQL server. If you feel this is necessary, use %strusted "
@ -13765,15 +13762,14 @@ msgstr ""
#| " set the [kbd]config[/kbd] authentication type and included username "
#| "password for auto-login, which is not a desirable option for live ts. "
#| "Anyone who knows or guesses your phpMyAdmin URL can directly ess your "
#| "phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;"
#| "id=d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or "
#| "[kbd]httpbd]."
#| "phpMyAdmin panel. Set [a@?page=servers&amp;mode=edit&amp;id=d#tab_Server]"
#| "authentication type[/a] to [kbd]cookie[/kbd] or [kbd]httpbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"Siz [kbd]config[/kbd] autentifikatsiya usulini tanlab, oz loginva "
"parolingizni konfiguratsion faylga yozib qoydingiz va u Sizga avtomatik "
@ -13782,8 +13778,8 @@ msgstr ""
"adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, "
"serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga "
"oshirishi mumkin. Server [a@?page=servers&amp;mode=edit&amp;id="
"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki "
"[kbd]http[/kbd] deb belgilash tavsiya etiladi."
"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http"
"[/kbd] deb belgilash tavsiya etiladi."
#: setup/lib/index.lib.php:236
#, fuzzy, php-format
@ -15770,9 +15766,9 @@ msgstr "Maksimal ulanishlar soni "
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "Agar ushbu tanlovni [kbd]\"nested\"[/kbd] deb belgilasangiz, faqat jadval "
#~ "nomining taxallusi konfiguratsion fayldagi $cfg[\"LeftFrameTableSeparator"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-25 14:40+0200\n"
"Last-Translator: saurabh chikate <chikate.saurabh@gmail.com>\n"
"Language-Team: West Flemish <http://l10n.cihar.com/projects/phpmyadmin/"
@ -4117,8 +4117,8 @@ msgstr ""
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
#: libraries/config/messages.inc.php:33
@ -4639,9 +4639,8 @@ msgstr ""
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
#: libraries/config/messages.inc.php:194
@ -5379,8 +5378,8 @@ msgstr ""
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:383
@ -5573,8 +5572,8 @@ msgstr ""
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:425
@ -5591,8 +5590,8 @@ msgstr ""
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
#: libraries/config/messages.inc.php:429
@ -5689,8 +5688,8 @@ msgstr ""
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:450
@ -5709,8 +5708,8 @@ msgstr ""
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:454
@ -5719,8 +5718,8 @@ msgstr ""
#: libraries/config/messages.inc.php:455
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:456
@ -5729,8 +5728,8 @@ msgstr ""
#: libraries/config/messages.inc.php:457
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr ""
#: libraries/config/messages.inc.php:458
@ -9628,17 +9627,17 @@ msgstr ""
#: libraries/server_privileges.lib.php:3236
#: libraries/server_privileges.lib.php:3402
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr ""
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr ""
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr ""
#: libraries/server_privileges.lib.php:3260
@ -11657,8 +11656,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
#: setup/lib/index.lib.php:236

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-05-14 06:43+0200\n"
"Last-Translator: Randall Fan <fanrandall@gmail.com>\n"
"Language-Team: Simplified Chinese <http://l10n.cihar.com/projects/phpmyadmin/"
@ -4213,8 +4213,8 @@ msgstr "编辑 CHAR 类型字段"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"使用包含语法凸显与行号的用户友好的编辑器编辑SQL语句 ([a@http://codemirror."
"net/]CodeMirror[/a])"
@ -4751,9 +4751,8 @@ msgstr "页面标题"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"设置浏览器标题栏所显示的文字。参见[doc@cfg_TitleTable]文档[/doc]中关于可以取"
"得特殊值的魔术字符串。"
@ -5524,8 +5523,8 @@ msgstr "书签表"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr "留空则不使用列信息和MIME类型。推荐: [kbd]pma__column_info[/kbd]"
#: libraries/config/messages.inc.php:383
@ -5733,8 +5732,8 @@ msgstr "最近使用的表"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"不使用[a@http://wiki.phpmyadmin.net/pma/relation]关系链接 (外链,英文)[/a]功"
"能请留空,推荐: [kbd]pma__relation[/kbd]"
@ -5753,8 +5752,8 @@ msgstr "显示数据库(SHOW DATABASES)命令"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"参见[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]认证方式 (外链,英文)"
"[/a]中的例子"
@ -5857,8 +5856,8 @@ msgstr "要追踪的命令"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr "不使用 SQL 查询追踪功能请留空,推荐: [kbd]pma__tracking[/kbd]"
#: libraries/config/messages.inc.php:450
@ -5877,8 +5876,8 @@ msgstr "自动创建版本"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr "不在数据库中保存用户偏好请留空,推荐: [kbd]pma__userconfig[/kbd]"
#: libraries/config/messages.inc.php:454
@ -5888,11 +5887,11 @@ msgstr "用户偏好表"
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr "不在数据库中保存用户偏好请留空,推荐: [kbd]pma__userconfig[/kbd]"
#: libraries/config/messages.inc.php:456
@ -5904,11 +5903,11 @@ msgstr "使用表"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr "不在数据库中保存用户偏好请留空,推荐: [kbd]pma__userconfig[/kbd]"
#: libraries/config/messages.inc.php:458
@ -5920,8 +5919,8 @@ msgstr "使用主机表"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -6702,8 +6701,8 @@ msgid ""
"to the PHP timeout limit. <i>(This might be a good way to import large "
"files, however it can break transactions.)</i>"
msgstr ""
"在导入时脚本若检测到可能需要花费很长时间接近PHP超时的限定则允许中断。"
"<i>(尽管这会中断事务,但在导入大文件时是个很好的方法。)</i>"
"在导入时脚本若检测到可能需要花费很长时间接近PHP超时的限定则允许中断。<i>"
"(尽管这会中断事务,但在导入大文件时是个很好的方法。)</i>"
#: libraries/display_import.lib.php:296
msgid "Number of rows to skip, starting from the first row:"
@ -10015,21 +10014,21 @@ msgstr "用户"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "服务器版本"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "数据库服务器"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "表注释"
#: libraries/server_privileges.lib.php:3260
@ -12218,8 +12217,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"您设置了 [kbd]config[/kbd] 认证方式,且为了能够自动登录而保存了用户名和密码,"
"但在常用主机上不建议这样设置。如果有人知道 phpMyAdmin 的地址,他们就能够进入 "
@ -14047,13 +14046,13 @@ msgstr "concurrent_insert 被设为 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "当设为 [kbd]nested[/kbd] 时,数据表的别名仅根据 "
#~ "$cfg['LeftFrameTableSeparator'] 作分割/层叠用,所有只有目录的名字像别名,"
#~ "数据表自己的名字并不改变"
#~ "当设为 [kbd]nested[/kbd] 时,数据表的别名仅根据 $cfg"
#~ "['LeftFrameTableSeparator'] 作分割/层叠用,所有只有目录的名字像别名,数据"
#~ "表自己的名字并不改变"
#~ msgid "Display table comment instead of its name"
#~ msgstr "显示表备注而不显示表名"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 4.1-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
"POT-Creation-Date: 2013-07-29 15:39+0200\n"
"POT-Creation-Date: 2013-07-29 13:37-0400\n"
"PO-Revision-Date: 2013-07-13 20:32+0200\n"
"Last-Translator: Tony Chen <tonychen@finenet.com.tw>\n"
"Language-Team: Traditional Chinese <http://l10n.cihar.com/projects/"
@ -4217,8 +4217,8 @@ msgstr "編輯 CHAR 類型欄位"
#: libraries/config/messages.inc.php:32
msgid ""
"Use user-friendly editor for editing SQL queries ([a@http://codemirror."
"net/]CodeMirror[/a]) with syntax highlighting and line numbers"
"Use user-friendly editor for editing SQL queries ([a@http://codemirror.net/]"
"CodeMirror[/a]) with syntax highlighting and line numbers"
msgstr ""
"請用友善的編輯器 (具語法高亮顯示和行號功能) 來編輯 SQL 查詢 ([a@http://"
"codemirror.net/]CodeMirror[/a])"
@ -4745,9 +4745,8 @@ msgstr "頁面標題"
#: libraries/config/messages.inc.php:193
msgid ""
"Specify browser's title bar text. Refer to "
"[doc@cfg_TitleTable]documentation[/doc] for magic strings that can be used "
"to get special values."
"Specify browser's title bar text. Refer to [doc@cfg_TitleTable]documentation"
"[/doc] for magic strings that can be used to get special values."
msgstr ""
"設定瀏覽器標題欄所顯示的文字。參見[doc@cfg_TitleTable]檔案[/doc]中關於可以取"
"得特殊值的魔術字元串。"
@ -5513,8 +5512,8 @@ msgstr "書籤表"
#: libraries/config/messages.inc.php:382
msgid ""
"Leave blank for no column comments/mime types, suggested: "
"[kbd]pma__column_info[/kbd]"
"Leave blank for no column comments/mime types, suggested: [kbd]"
"pma__column_info[/kbd]"
msgstr "無欄位註解/MIME類型時留空白。建議值[kbd]pma__column_info[/kbd]"
#: libraries/config/messages.inc.php:383
@ -5716,8 +5715,8 @@ msgstr "最近使用的資料表"
#: libraries/config/messages.inc.php:424
msgid ""
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-"
"links[/a] support, suggested: [kbd]pma__relation[/kbd]"
"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
"[/a] support, suggested: [kbd]pma__relation[/kbd]"
msgstr ""
"不使用[a@http://wiki.phpmyadmin.net/pma/relation]關聯連結 [/a]功能請留空,建"
"議值:[kbd]pma__relation[/kbd]"
@ -5736,8 +5735,8 @@ msgstr "顯示資料庫(SHOW DATABASES)命令"
#: libraries/config/messages.inc.php:428
msgid ""
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication "
"types[/a] for an example"
"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
"[/a] for an example"
msgstr ""
"參見[a@http://wiki.phpmyadmin.net/pma/auth_types#signon]認證方式 [/a]中的例子"
@ -5836,8 +5835,8 @@ msgstr "要追蹤的命令"
#: libraries/config/messages.inc.php:449
msgid ""
"Leave blank for no SQL query tracking support, suggested: "
"[kbd]pma__tracking[/kbd]"
"Leave blank for no SQL query tracking support, suggested: [kbd]pma__tracking"
"[/kbd]"
msgstr "不使用 SQL 查詢追蹤功能請留空,建議值:[kbd]pma__tracking[/kbd]"
#: libraries/config/messages.inc.php:450
@ -5856,8 +5855,8 @@ msgstr "自動建立版本"
#: libraries/config/messages.inc.php:453
msgid ""
"Leave blank for no user preferences storage in database, suggested: "
"[kbd]pma__userconfig[/kbd]"
"Leave blank for no user preferences storage in database, suggested: [kbd]"
"pma__userconfig[/kbd]"
msgstr "不在資料庫中儲存使用者偏好請留空,建議值:[kbd]pma__config[/kbd]"
#: libraries/config/messages.inc.php:454
@ -5867,11 +5866,11 @@ msgstr "使用者偏好表"
#: libraries/config/messages.inc.php:455
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__users[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]pma__users"
"[/kbd]"
msgstr "不在資料庫中儲存使用者偏好請留空,建議值:[kbd]pma__config[/kbd]"
#: libraries/config/messages.inc.php:456
@ -5883,11 +5882,11 @@ msgstr "使用表"
#: libraries/config/messages.inc.php:457
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable configurable menus feature, suggested: "
"[kbd]pma__usergroups[/kbd]"
"Leave blank to disable configurable menus feature, suggested: [kbd]"
"pma__usergroups[/kbd]"
msgstr "不在資料庫中儲存使用者偏好請留空,建議值:[kbd]pma__config[/kbd]"
#: libraries/config/messages.inc.php:458
@ -5899,8 +5898,8 @@ msgstr "使用主機表"
#: libraries/config/messages.inc.php:459
#, fuzzy
#| msgid ""
#| "Leave blank for no user preferences storage in database, suggested: "
#| "[kbd]pma__userconfig[/kbd]"
#| "Leave blank for no user preferences storage in database, suggested: [kbd]"
#| "pma__userconfig[/kbd]"
msgid ""
"Leave blank to disable the feature to hide and show navigation items, "
"suggested: [kbd]pma__navigationhiding[/kbd]"
@ -9922,21 +9921,21 @@ msgstr "使用者"
#: libraries/server_privileges.lib.php:3402
#, fuzzy
#| msgid "Server version"
msgid "Server level tabs"
msgid "Server-level tabs"
msgstr "伺服器版本"
#: libraries/server_privileges.lib.php:3237
#: libraries/server_privileges.lib.php:3405
#, fuzzy
#| msgid "Database server"
msgid "Database level tabs"
msgid "Database-level tabs"
msgstr "資料庫伺服器"
#: libraries/server_privileges.lib.php:3238
#: libraries/server_privileges.lib.php:3408
#, fuzzy
#| msgid "Table comments"
msgid "Table level tabs"
msgid "Table-level tabs"
msgstr "表註釋"
#: libraries/server_privileges.lib.php:3260
@ -12071,8 +12070,8 @@ msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or "
"[kbd]http[/kbd]."
"phpMyAdmin panel. Set %sauthentication type%s to [kbd]cookie[/kbd] or [kbd]"
"http[/kbd]."
msgstr ""
"您設定了 [kbd]config[/kbd] 認證方式,且爲了能夠自動登錄而儲存了帳號和密碼,但"
"在常用主機上不建議這樣設定。如果有人知道 phpMyAdmin 的網址,他們就能夠進入 "
@ -13907,13 +13906,13 @@ msgstr "concurrent_insert 已被設置為 0"
#~ msgid ""
#~ "When setting this to [kbd]nested[/kbd], the alias of the table name is "
#~ "only used to split/nest the tables according to the "
#~ "$cfg['LeftFrameTableSeparator'] directive, so only the folder is called "
#~ "like the alias, the table name itself stays unchanged"
#~ "only used to split/nest the tables according to the $cfg"
#~ "['LeftFrameTableSeparator'] directive, so only the folder is called like "
#~ "the alias, the table name itself stays unchanged"
#~ msgstr ""
#~ "當設爲 [kbd]nested[/kbd] 時,資料表的別名僅根據 "
#~ "$cfg['LeftFrameTableSeparator'] 作分割/層疊用,所有只有目錄的名字像別名,"
#~ "資料表自己的名字並不改變"
#~ "當設爲 [kbd]nested[/kbd] 時,資料表的別名僅根據 $cfg"
#~ "['LeftFrameTableSeparator'] 作分割/層疊用,所有只有目錄的名字像別名,資料"
#~ "表自己的名字並不改變"
#~ msgid "Display table comment instead of its name"
#~ msgstr "顯示資料表備註而不顯示資料資料表名稱"

View File

@ -21,7 +21,7 @@ $scripts->addFile('import.js');
require 'libraries/server_common.inc.php';
$import_type = 'server';
require 'libraries/display_import.lib.php';
require 'libraries/display_import.inc.php';
?>

View File

@ -24,7 +24,7 @@ $url_query .= '&amp;goto=tbl_import.php&amp;back=tbl_import.php';
require_once 'libraries/tbl_info.inc.php';
$import_type = 'table';
require_once 'libraries/display_import.lib.php';
require_once 'libraries/display_import.inc.php';
?>