Merge branch 'master' into chart_notice
This commit is contained in:
commit
2ca1d9ff46
@ -372,7 +372,6 @@ $goto_whitelist = array(
|
||||
'db_printview.php',
|
||||
'db_search.php',
|
||||
//'Documentation.html',
|
||||
//'error.php',
|
||||
'export.php',
|
||||
'import.php',
|
||||
//'index.php',
|
||||
|
||||
@ -264,7 +264,7 @@ $strConfigLeftDisplayLogo_desc = __('Show logo in left frame');
|
||||
$strConfigLeftDisplayLogo_name = __('Display logo');
|
||||
$strConfigLeftDisplayServers_desc = __('Display server choice at the top of the left frame');
|
||||
$strConfigLeftDisplayServers_name = __('Display servers selection');
|
||||
$strConfigLeftDisplayTableFilterMinimum_name = __('Mimimum number of tables to display table filter');
|
||||
$strConfigLeftDisplayTableFilterMinimum_name = __('Minimum number of tables to display the table filter box');
|
||||
$strConfigLeftFrameDBSeparator_desc = __('String that separates databases into different tree levels');
|
||||
$strConfigLeftFrameDBSeparator_name = __('Database tree separator');
|
||||
$strConfigLeftFrameDBTree_desc = __('Only light version; display databases in a tree (determined by the separator defined below)');
|
||||
|
||||
@ -235,21 +235,18 @@ function PMA_fatalError($error_message, $message_args = null)
|
||||
}
|
||||
|
||||
// Displays the error message
|
||||
// (do not use & for parameters sent by header)
|
||||
$query_params = array(
|
||||
'lang' => $GLOBALS['available_languages'][$GLOBALS['lang']][1],
|
||||
'dir' => $GLOBALS['text_dir'],
|
||||
'type' => $error_header,
|
||||
'error' => $error_message,
|
||||
);
|
||||
header('Location: ' . (defined('PMA_SETUP') ? '../' : '') . 'error.php?'
|
||||
. http_build_query($query_params, null, '&'));
|
||||
$lang = $GLOBALS['available_languages'][$GLOBALS['lang']][1];
|
||||
$dir = $GLOBALS['text_dir'];
|
||||
$type = $error_header;
|
||||
$error = $error_message;
|
||||
|
||||
// on fatal errors it cannot hurt to always delete the current session
|
||||
if (isset($GLOBALS['session_name']) && isset($_COOKIE[$GLOBALS['session_name']])) {
|
||||
$GLOBALS['PMA_Config']->removeCookie($GLOBALS['session_name']);
|
||||
}
|
||||
|
||||
require('./libraries/error.inc.php');
|
||||
|
||||
exit;
|
||||
}
|
||||
|
||||
|
||||
@ -84,11 +84,11 @@ if(isset($_GET['sql_query'])) {
|
||||
<img src="<?php echo $GLOBALS['pmaThemeImage'];?>b_export.png" alt="export" />
|
||||
<?php
|
||||
if($export_type == 'server') {
|
||||
echo __('Exporting databases in the current server');
|
||||
echo __('Exporting databases from the current server');
|
||||
} elseif($export_type == 'database') {
|
||||
printf(__('Exporting tables in the database "%s"'), htmlspecialchars($db));
|
||||
printf(__('Exporting tables from "%s" database'), htmlspecialchars($db));
|
||||
} else {
|
||||
printf(__('Exporting rows in the table "%s"'), htmlspecialchars($table));
|
||||
printf(__('Exporting rows from "%s" table'), htmlspecialchars($table));
|
||||
}?>
|
||||
</h2>
|
||||
</div>
|
||||
@ -110,7 +110,7 @@ if(isset($_GET['sql_query'])) {
|
||||
} else {
|
||||
echo ' checked="checked" />';
|
||||
}
|
||||
echo '<label for ="radio_quick_export">' . __('Quick - display only the minimal options to configure') . '</label>'; ?>
|
||||
echo '<label for ="radio_quick_export">' . __('Quick - display only the minimal options') . '</label>'; ?>
|
||||
</li>
|
||||
<li>
|
||||
<?php echo '<input type="radio" name="quick_or_custom" value="custom" id="radio_custom_export"';
|
||||
@ -126,7 +126,7 @@ if(isset($_GET['sql_query'])) {
|
||||
} else {
|
||||
echo ' />';
|
||||
}
|
||||
echo '<label for="radio_custom_export">' . __('Custom - display all possible options to configure') . '</label>';?>
|
||||
echo '<label for="radio_custom_export">' . __('Custom - display all possible options') . '</label>';?>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
@ -333,7 +333,7 @@ if(isset($_GET['sql_query'])) {
|
||||
</div>
|
||||
|
||||
<div class="exportoptions" id="format_specific_opts">
|
||||
<h3><?php echo __('Format-Specific Options:'); ?></h3>
|
||||
<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('Export', $export_list); ?>
|
||||
</div>
|
||||
|
||||
@ -6,34 +6,11 @@
|
||||
* @package phpMyAdmin
|
||||
*/
|
||||
|
||||
/**
|
||||
* Input sanitizing.
|
||||
*/
|
||||
require './libraries/sanitizing.lib.php';
|
||||
|
||||
/* Get variables */
|
||||
if (! empty($_REQUEST['lang']) && is_string($_REQUEST['lang'])) {
|
||||
$lang = htmlspecialchars($_REQUEST['lang']);
|
||||
} else {
|
||||
$lang = 'en';
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
if (! empty($_REQUEST['dir']) && is_string($_REQUEST['dir'])) {
|
||||
$dir = htmlspecialchars($_REQUEST['dir']);
|
||||
} else {
|
||||
$dir = 'ltr';
|
||||
}
|
||||
|
||||
if (! empty($_REQUEST['type']) && is_string($_REQUEST['type'])) {
|
||||
$type = htmlspecialchars($_REQUEST['type']);
|
||||
} else {
|
||||
$type = 'error';
|
||||
}
|
||||
|
||||
// force utf-8 to avoid XSS with crafted URL and utf-7 in charset parameter
|
||||
$charset = 'utf-8';
|
||||
|
||||
header('Content-Type: text/html; charset=' . $charset);
|
||||
header('Content-Type: text/html; charset=utf-8');
|
||||
?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $lang; ?>" dir="<?php echo $dir; ?>">
|
||||
@ -41,7 +18,7 @@ header('Content-Type: text/html; charset=' . $charset);
|
||||
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
|
||||
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
|
||||
<title>phpMyAdmin</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset; ?>" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<style type="text/css">
|
||||
<!--
|
||||
html {
|
||||
@ -73,17 +50,8 @@ header('Content-Type: text/html; charset=' . $charset);
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>phpMyAdmin - <?php echo $type; ?></h1>
|
||||
<p><?php
|
||||
if (!empty($_REQUEST['error'])) {
|
||||
if (function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()) {
|
||||
echo PMA_sanitize(stripslashes($_REQUEST['error']));
|
||||
} else {
|
||||
echo PMA_sanitize($_REQUEST['error']);
|
||||
}
|
||||
} else {
|
||||
echo 'No error message!';
|
||||
}
|
||||
?></p>
|
||||
<h1>phpMyAdmin - <?php echo $error_header; ?></h1>
|
||||
<p><?php echo PMA_sanitize($error_message); ?></p>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@ -5,10 +5,6 @@
|
||||
* @package phpMyAdmin
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ignore
|
||||
*/
|
||||
define('PMA_MINIMUM_COMMON', true);
|
||||
/**
|
||||
* Gets core libraries and defines some variables
|
||||
*/
|
||||
|
||||
147
po/af.po
147
po/af.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: afrikaans <af@li.org>\n"
|
||||
@ -47,7 +47,7 @@ msgstr "Soek"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -64,7 +64,7 @@ msgstr "Soek"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -865,14 +865,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1460,37 +1460,37 @@ msgstr "Rekords"
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1875,7 +1875,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1891,12 +1891,12 @@ msgstr ""
|
||||
"quote of 'n kommapunt weg erens.<br />Indien jy 'n bladsy kry wat leeg is, "
|
||||
"is alles klopdisselboom."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1904,26 +1904,26 @@ msgstr ""
|
||||
"Die <tt>$cfg['PmaAbsoluteUri']</tt> veranderlike MOET gestel wees in jou "
|
||||
"konfigurasie leer!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
@ -2159,11 +2159,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Struktuur en data"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3176,7 +3176,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4292,7 +4292,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4417,19 +4417,21 @@ msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Skep 'n nuwe tabel op databasis %s"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Skep 'n nuwe tabel op databasis %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Skep 'n nuwe tabel op databasis %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4438,6 +4440,14 @@ msgstr "Skep 'n nuwe tabel op databasis %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Export"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4556,8 +4566,8 @@ msgstr "\"ge-bzip\""
|
||||
msgid "Format:"
|
||||
msgstr "Formaat"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
#: libraries/display_export.lib.php:336
|
||||
msgid "Format-specific options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
@ -4637,6 +4647,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5900,7 +5914,7 @@ msgstr "geen Beskrywing"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7682,46 +7696,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Sa"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Slegs struktuur"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Slegs struktuur"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9551,6 +9566,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "Hernoem tabel na"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Sa"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
148
po/ar.po
148
po/ar.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-05-29 14:16+0200\n"
|
||||
"Last-Translator: Ahmed <aa.mahdawy.10@gmail.com>\n"
|
||||
"Language-Team: arabic <ar@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "ابحث"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "ابحث"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -868,14 +868,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "لم يمكن قراءة الملف"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1472,37 +1472,37 @@ msgstr "الثانية"
|
||||
msgid "Font size"
|
||||
msgstr "حجم الخط"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1888,7 +1888,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1903,12 +1903,12 @@ msgstr ""
|
||||
"تكون علامة التنصيص أو علامة الفاصلة المنقوطة ناقصة في مكان ما.<br />إن حصلت "
|
||||
"على صفحة فارغة، فكل شيء على ما يرام."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1916,26 +1916,26 @@ msgstr ""
|
||||
"المتغير <span dir=\"ltr\"><tt>$cfg['PmaAbsoluteUri']</tt></span> يجب تعديله "
|
||||
"في ملف التعريف !"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "فهرس خادم غير صحيح: %s"
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "خادم"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "عليك التحديث إلى %s %s أو لاحقا."
|
||||
@ -2171,11 +2171,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "البنية والبيانات"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3200,7 +3200,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4313,7 +4313,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4440,19 +4440,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "يسمح بقفل الجداول للعملية الحالية."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "تكوين جدول جديد في قاعدة البيانات %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "تكوين جدول جديد في قاعدة البيانات %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4461,6 +4461,14 @@ msgstr "تكوين جدول جديد في قاعدة البيانات %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "نوع التصدير"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4585,9 +4593,11 @@ msgstr "\"bzipped\""
|
||||
msgid "Format:"
|
||||
msgstr "صيغة"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "خيارات التحويل"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4670,6 +4680,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5938,7 +5952,7 @@ msgstr "بدون وصف"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7767,45 +7781,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "ابدأ"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "قف"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "البنية فقط"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "البنية فقط"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr "أخطاء."
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9627,6 +9643,12 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "ابدأ"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "قف"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
147
po/az.po
147
po/az.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: azerbaijani <az@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "Axtarış"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -63,7 +63,7 @@ msgstr "Axtarış"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -865,14 +865,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Fayl oxuna bilmir"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1474,37 +1474,37 @@ msgstr "saniyede"
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1888,7 +1888,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1904,12 +1904,12 @@ msgstr ""
|
||||
"vergül eksikliyi vardır.<br />Eger boş sehife ile qarşılaşsanız, demek ki, "
|
||||
"her şey qaydasındadır."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1917,26 +1917,26 @@ msgstr ""
|
||||
"<tt>$cfg['PmaAbsoluteUri']</tt> direktivi PMA konfiqurasiya faylınızda "
|
||||
"QURULMAMIŞDIR!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Server"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
@ -2177,11 +2177,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Quruluş ve me'lumat"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3215,7 +3215,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4340,7 +4340,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4467,19 +4467,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Allows locking tables for the current thread."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "%s bazasında yeni cedvel qur"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "%s bazasında yeni cedvel qur"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4488,6 +4488,14 @@ msgstr "%s bazasında yeni cedvel qur"
|
||||
msgid "Export Method:"
|
||||
msgstr "Eksport şekli"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4612,9 +4620,11 @@ msgstr "\"bzip\"lenmiş"
|
||||
msgid "Format:"
|
||||
msgstr "Format"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Transformasiya variantları"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4695,6 +4705,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5978,7 +5992,7 @@ msgstr "Haqqında me'lumat (description) mövcud deyildir"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7841,46 +7855,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Şen"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Sadece quruluş"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Sadece quruluş"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9715,6 +9730,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "Cedveli yeniden adlandır"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Şen"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
148
po/be.po
148
po/be.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: belarusian_cyrillic <be@li.org>\n"
|
||||
@ -49,7 +49,7 @@ msgstr "Пошук"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -66,7 +66,7 @@ msgstr "Пошук"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -875,14 +875,14 @@ msgstr ""
|
||||
"зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае "
|
||||
"абмежаваньне."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Немагчыма прачытаць файл"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1500,13 +1500,13 @@ msgstr "у сэкунду"
|
||||
msgid "Font size"
|
||||
msgstr "Памер шрыфта"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"Памер загружанага файла пераўзыходзіць парамэтар upload_max_filesize у php."
|
||||
"ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1514,27 +1514,27 @@ msgstr ""
|
||||
"Памер загружанага файла пераўзыходзіць парамэтар MAX_FILE_SIZE, які быў "
|
||||
"вызначаны ў HTML-форме."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Файл быў загружаны толькі часткова."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Адсутнічае часовая тэчка."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Памылка запісу на дыск."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Загрузка файла спыненая пашырэньнем."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Падчас загрузкі файла адбылася невядомая памылка."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1933,7 +1933,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1949,13 +1949,13 @@ msgstr ""
|
||||
"пра памылкі. У большасьці выпадкаў, недзе прапушчаны апостраф або кропка з "
|
||||
"коскай.<br />Калі вы атрымаеце чыстую старонку, значыць, усё добра."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1963,28 +1963,28 @@ msgstr ""
|
||||
"Дырэктыва <tt>$cfg['PmaAbsoluteUri']</tt> ПАВІННА быць вызначаная ў вашым "
|
||||
"канфігурацыйным файле!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Некарэктны індэкс сэрвэра: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"Няправільнае імя хосту для сэрвэра %1$s. Калі ласка, праверце канфігурыцыю."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Сэрвэр"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "У канфігурацыі вызначаны некарэктны мэтад аўтэнтыфікацыі:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Вам трэба абнавіць %s да вэрсіі %s ці пазьнейшай."
|
||||
@ -2226,11 +2226,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Структуру і дадзеныя"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3277,7 +3277,7 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Колькасьць адкрытых табліц."
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4424,7 +4424,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4557,19 +4557,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Дазваляе блякаваць табліцы для бягучага патоку."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Стварыць новую табліцу ў БД %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Стварыць новую табліцу ў БД %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4578,6 +4578,15 @@ msgstr "Стварыць новую табліцу ў БД %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Тып экспарту"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Налады экспарту базы дадзеных"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4709,9 +4718,11 @@ msgstr "сьціскаць у bzip"
|
||||
msgid "Format:"
|
||||
msgstr "Фармат"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Опцыі пераўтварэньня"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4807,6 +4818,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Колькасьць (запытаў), якія трэба прапусьціць ад пачатку"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6148,7 +6163,7 @@ msgstr "няма апісаньня"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -8075,46 +8090,47 @@ msgstr "Поўнатэкстэкставае"
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Суб"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Толькі структуру"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Толькі структуру"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -10095,6 +10111,10 @@ msgstr "Назва прагляду"
|
||||
msgid "Rename view to"
|
||||
msgstr "Перайменаваць табліцу ў"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Суб"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
142
po/be@latin.po
142
po/be@latin.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: belarusian_latin <be@latin@li.org>\n"
|
||||
@ -51,7 +51,7 @@ msgstr "Pošuk"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -68,7 +68,7 @@ msgstr "Pošuk"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -873,14 +873,14 @@ msgstr ""
|
||||
"źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje "
|
||||
"abmiežavańnie."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Niemahčyma pračytać fajł"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1501,13 +1501,13 @@ msgstr "u sekundu"
|
||||
msgid "Font size"
|
||||
msgstr "Pamier šryfta"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"Pamier zahružanaha fajła pieraŭzychodzić parametar upload_max_filesize u php."
|
||||
"ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1515,27 +1515,27 @@ msgstr ""
|
||||
"Pamier zahružanaha fajła pieraŭzychodzić parametar MAX_FILE_SIZE, jaki byŭ "
|
||||
"vyznačany ŭ HTML-formie."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Fajł byŭ zahružany tolki častkova."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Adsutničaje časovaja tečka."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Pamyłka zapisu na dysk."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Zahruzka fajła spynienaja pašyreńniem."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1937,7 +1937,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1953,13 +1953,13 @@ msgstr ""
|
||||
"PHP pra pamyłki. U bolšaści vypadkaŭ, niedzie prapuščany apostraf abo kropka "
|
||||
"z koskaj. Kali vy atrymajecie čystuju staronku, značyć, usio dobra."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1967,29 +1967,29 @@ msgstr ""
|
||||
"Dyrektyva $cfg['PmaAbsoluteUri'] PAVINNA być vyznačanaja ŭ vašym "
|
||||
"kanfihuracyjnym fajle!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Niekarektny indeks servera: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"Niapravilnaje imia chostu dla servera %1$s. Kali łaska, praviercie "
|
||||
"kanfihurycyju."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Server"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "U kanfihuracyi vyznačany niekarektny metad aŭtentyfikacyi:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Vam treba abnavić %s da versii %s ci paźniejšaj."
|
||||
@ -2229,11 +2229,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Strukturu i dadzienyja"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3260,7 +3260,7 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Kolkaść adkrytych tablic."
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4391,7 +4391,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4524,19 +4524,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Dazvalaje blakavać tablicy dla biahučaha patoku."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Stvaryć novuju tablicu ŭ BD %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Stvaryć novuju tablicu ŭ BD %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4545,6 +4545,14 @@ msgstr "Stvaryć novuju tablicu ŭ BD %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Typ ekspartu"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4676,9 +4684,11 @@ msgstr "ściskać u bzip"
|
||||
msgid "Format:"
|
||||
msgstr "Farmat"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Opcyi pieraŭtvareńnia"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4775,6 +4785,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Kolkaść (zapytaŭ), jakija treba prapuścić ad pačatku"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6117,7 +6131,7 @@ msgstr "niama apisańnia"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -8039,45 +8053,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Tolki strukturu"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Tolki strukturu"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
|
||||
147
po/bg.po
147
po/bg.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-06-11 17:28+0200\n"
|
||||
"Last-Translator: <stanprog@stanprog.com>\n"
|
||||
"Language-Team: bulgarian <bg@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Търсене"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Търсене"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -866,14 +866,14 @@ msgstr ""
|
||||
"Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се "
|
||||
"към %sdдокументацията%s за да намерите начин да избегнете това ограничение."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Файлът не може да бъде прочетен"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1481,37 +1481,37 @@ msgstr "на секунда"
|
||||
msgid "Font size"
|
||||
msgstr "Размер на шрифта"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
@ -1904,7 +1904,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1920,13 +1920,13 @@ msgstr ""
|
||||
"част от случаите, някъде липсват кавички или точка и запетая.<br />Ако се "
|
||||
"изведе празна страница, всички е наред."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Конфигурацията по подразбиране не може да бъде заредена от: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1934,26 +1934,26 @@ msgstr ""
|
||||
"На <tt>$cfg['PmaAbsoluteUri']</tt> ТРЯБВА да се зададе стойност в "
|
||||
"конфигурационния файл!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Сървър"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Трябва да ъпгрейднете към %s %s или по-късно."
|
||||
@ -2194,11 +2194,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Структурата и данните"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3235,7 +3235,7 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Брой на отвотените таблици."
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4368,7 +4368,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4497,19 +4497,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Позволява заключване на таблици за текущата нишка."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Създаване на нова таблица в БД %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Създаване на нова таблица в БД %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4518,6 +4518,14 @@ msgstr "Създаване на нова таблица в БД %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Тип на експортирането"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4644,9 +4652,11 @@ msgstr "\"bzip-нато\""
|
||||
msgid "Format:"
|
||||
msgstr "Формат"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Опции на трансформацията"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4732,6 +4742,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Брой записи(завки), които да бъдат пропуснати от началото"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6021,7 +6035,7 @@ msgstr "няма Описание"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7911,46 +7925,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "сб"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Само структурата"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Само структурата"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9807,6 +9822,10 @@ msgstr "Име на ИЗГЛЕД-а"
|
||||
msgid "Rename view to"
|
||||
msgstr "Преименуване на изгледа на"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "сб"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
148
po/bn.po
148
po/bn.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
|
||||
"Last-Translator: Nobin নবীন <nobin@cyberbogra.com>\n"
|
||||
"Language-Team: bangla <bn@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "খুঁজুন"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "খুঁজুন"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -868,14 +868,14 @@ msgstr ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "ফাইল পড়া যায়নি"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1487,37 +1487,37 @@ msgstr "per second"
|
||||
msgid "Font size"
|
||||
msgstr "ফন্ট এর আকার"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
@ -1913,7 +1913,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1929,13 +1929,13 @@ msgstr ""
|
||||
"semicolon is missing somewhere.<br />If you receive a blank page, everything "
|
||||
"is fine."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি"
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1943,27 +1943,27 @@ msgstr ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Invalid server index: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "Invalid hostname for server %1$s. Please review your configuration."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "সার্ভার"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Invalid authentication method set in configuration:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "You should upgrade to %s %s or later."
|
||||
@ -2203,11 +2203,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Structure and data"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3255,7 +3255,7 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "The number of tables that are open."
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4390,7 +4390,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4520,19 +4520,19 @@ msgstr "এক্সপোর্ট প্লাগ ইন লোড করা
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Allows locking tables for the current thread."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "%s ডাটাবেজ় এ নতুন টেবিল তৈরী কর"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "%s ডাটাবেজ় এ নতুন টেবিল তৈরী কর"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4541,6 +4541,15 @@ msgstr "%s ডাটাবেজ় এ নতুন টেবিল তৈর
|
||||
msgid "Export Method:"
|
||||
msgstr "Export type"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "ডাটাবেজ এক্সপোটঁ করার সুবিধাসমূহ"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4672,9 +4681,11 @@ msgstr "\"bzipped\""
|
||||
msgid "Format:"
|
||||
msgstr "ফরমেট"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Transformation options"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4769,6 +4780,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Number of records(queries) to skip from start"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6075,7 +6090,7 @@ msgstr "কোন বর্ণনা নাই"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7984,46 +7999,47 @@ msgstr "Fulltext"
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "শনিবার"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "শুধুই গঠনপ্রণালী"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "শুধুই গঠনপ্রণালী"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9976,6 +9992,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "টেবিল রিনেম করুন"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "শনিবার"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
147
po/bs.po
147
po/bs.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: bosnian <bs@li.org>\n"
|
||||
@ -49,7 +49,7 @@ msgstr "Pretraživanje"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -66,7 +66,7 @@ msgstr "Pretraživanje"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -867,14 +867,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Datoteku nije moguće pročitati"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1472,37 +1472,37 @@ msgstr "u sekundi"
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1890,7 +1890,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1905,12 +1905,12 @@ msgstr ""
|
||||
"poruke o grešci koje dobijate. U većini slučajeve negde nedostaje navodnik "
|
||||
"ili tačka-zarez.<br />Ako dobijete praznu stranu, sve je u redu."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1918,26 +1918,26 @@ msgstr ""
|
||||
"<tt>$cfg['PmaAbsoluteUri']</tt> direktiva MORA biti podješena u "
|
||||
"konfiguracionoj datoteci!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Server"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
@ -2176,11 +2176,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Struktura i podatci"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3209,7 +3209,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4333,7 +4333,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4460,19 +4460,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Dozvoljava zaključavanje tabela tekućim procesima."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Napravi novu tabelu u bazi %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Napravi novu tabelu u bazi %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4481,6 +4481,14 @@ msgstr "Napravi novu tabelu u bazi %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Izvoz"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4605,9 +4613,11 @@ msgstr "\"bzip-ovano\""
|
||||
msgid "Format:"
|
||||
msgstr "Format"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Opcije transformacije"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4688,6 +4698,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5965,7 +5979,7 @@ msgstr "nema opisa"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7825,46 +7839,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Sub"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Samo struktura"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Samo struktura"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9700,6 +9715,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "Promjeni ime tabele u "
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Sub"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
136
po/ca.po
136
po/ca.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-11-29 10:20+0200\n"
|
||||
"Last-Translator: Xavier Navarro <xvnavarro@gmail.com>\n"
|
||||
"Language-Team: catalan <ca@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Cerca"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Cerca"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -841,14 +841,14 @@ msgstr ""
|
||||
"Probablement has triat d'enviar un arxiu massa gran. Consulta la %"
|
||||
"sdocumentació%s per trobar formes de modificar aquest límit."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "No es pot llegir l'arxiu"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1409,12 +1409,12 @@ msgstr "per segon"
|
||||
msgid "Font size"
|
||||
msgstr "Tamany de lletra"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"El tamany d'arxiu pujat supera la directiva upload_max_filesize de php.ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1422,27 +1422,27 @@ msgstr ""
|
||||
"El tamany d'arxiu pujat supera la directiva MAX_FILE_SIZE especificada al "
|
||||
"formulari HTML."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Només s'ha pujat parcialment l'arxiu."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "No es troba la carpeta temporal."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Error en gravar l'arxiu al disc."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Pujada de l'arxiu aturada per l'extensió."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Error desconegut al pujar l'arxiu."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1847,7 +1847,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1863,13 +1863,13 @@ msgstr ""
|
||||
"ocasions una coma o punt i coma falta en algun lloc.<br />Si rebs una pàgina "
|
||||
"en blanc, tot està bé."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "No es pot carregar la configuració per defecte des de: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1877,28 +1877,28 @@ msgstr ""
|
||||
"La directiva <tt>$cfg['PmaAbsoluteUri']</tt> HA d'estar a l'arxiu de "
|
||||
"configuració!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Index de servidor invàlid: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"Nom de host invàlid pel servidor %1$s. Si us plau, reviseu la configuració."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Servidor"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Mètode d'identificació incorrecte establert a la configuració:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Es necessari actualitzar a %s %s o posterior."
|
||||
@ -2138,11 +2138,11 @@ msgstr "dades"
|
||||
msgid "structure and data"
|
||||
msgstr "Estructura i dades"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr "Ràpid - Mostra només les opcions mínimes a configurar."
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr "Complet - Mostra totes les opcions a configurar"
|
||||
|
||||
@ -3228,7 +3228,7 @@ msgstr "Mostra la tría de servidors"
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Màxim nombre de taules mostrades a la llista"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4500,7 +4500,7 @@ msgstr "Control de contrasenya de phpMyAdmin buida al usar pmadb"
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "Adreça IP incorrecta: %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4632,19 +4632,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Permet bloquejar taules per l'actual fil d'execució."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Crear una taula nova a la base de dades %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Crear una taula nova a la base de dades %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4653,6 +4653,18 @@ msgstr "Crear una taula nova a la base de dades %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Tipus d' Exportació"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
#, fuzzy
|
||||
#| msgid "Quick - display only the minimal options to configure"
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr "Ràpid - Mostra només les opcions mínimes a configurar."
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Custom - display all possible options to configure"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Complet - Mostra totes les opcions a configurar"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4786,9 +4798,11 @@ msgstr "\"comprimit amb bzip\""
|
||||
msgid "Format:"
|
||||
msgstr "Format"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Opcions de Transformació"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4892,6 +4906,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Nombre de registres(consultes) a saltar des de l'inici"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6242,7 +6260,7 @@ msgstr "Sense Descripció"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Configració de l'esclau"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr "Canvia o reconfigura el servidor mestre"
|
||||
|
||||
@ -8180,29 +8198,35 @@ msgstr "Parada total"
|
||||
msgid "Reset slave"
|
||||
msgstr "Reinicia l'esclau"
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
#: server_replication.php:326
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Només fils SQL %s"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "Inicia"
|
||||
#: server_replication.php:328
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr "Només fils SQL %s"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "Para"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Només fils IO %s"
|
||||
|
||||
#: server_replication.php:330
|
||||
#: server_replication.php:333
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr "Només fils IO %s"
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr "Gestió d'errors:"
|
||||
|
||||
#: server_replication.php:332
|
||||
#: server_replication.php:340
|
||||
#, fuzzy
|
||||
#| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
@ -8210,19 +8234,19 @@ msgstr ""
|
||||
"Saltar error(s) podria donar lloc a falta de sincronització entre mestre i "
|
||||
"esclau!"
|
||||
|
||||
#: server_replication.php:334
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr "Salta l'error actual"
|
||||
|
||||
#: server_replication.php:335
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr "Salta el següent"
|
||||
|
||||
#: server_replication.php:338
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr "errors."
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -10324,6 +10348,12 @@ msgstr "Nom de VISTA"
|
||||
msgid "Rename view to"
|
||||
msgstr "Reanomena les taules a"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Inicia"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "Para"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Display databases in a tree"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
227
po/cs.po
227
po/cs.po
@ -6,8 +6,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"PO-Revision-Date: 2010-12-02 17:30+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-12-07 15:56+0100\n"
|
||||
"Last-Translator: Michal Čihař <michal@cihar.com>\n"
|
||||
"Language-Team: czech <cs@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -53,7 +53,7 @@ msgstr "Vyhledávání"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -70,7 +70,7 @@ msgstr "Vyhledávání"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -617,8 +617,8 @@ msgstr "Sledování není zapnuté."
|
||||
#: db_structure.php:372 libraries/display_tbl.lib.php:1940
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation%"
|
||||
"s."
|
||||
"This view has at least this number of rows. Please refer to %sdocumentation"
|
||||
"%s."
|
||||
msgstr ""
|
||||
"Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s."
|
||||
|
||||
@ -804,7 +804,7 @@ msgstr "Historie databáze"
|
||||
#: enum_editor.php:21 libraries/tbl_properties.inc.php:794
|
||||
#, php-format
|
||||
msgid "Values for the column \"%s\""
|
||||
msgstr "Hodnoty pro pole \"%s\""
|
||||
msgstr "Hodnoty pro pole „%s“"
|
||||
|
||||
#: enum_editor.php:22 libraries/tbl_properties.inc.php:795
|
||||
msgid "Enter each value in a separate field."
|
||||
@ -840,20 +840,20 @@ msgstr "Výpis byl uložen do souboru %s."
|
||||
#: import.php:58
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation"
|
||||
"%s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
"Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si "
|
||||
"prosím %sdokumentaci%s, jak toto omezení obejít."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Soubor nelze přečíst"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1112,7 +1112,7 @@ msgstr "Zvolte která pole zobrazit"
|
||||
|
||||
#: js/messages.php:98
|
||||
msgid "Add an option for column "
|
||||
msgstr "Přidat paramer pro sloupec"
|
||||
msgstr "Přidat paramer pro sloupec "
|
||||
|
||||
#: js/messages.php:101
|
||||
msgid "Generate password"
|
||||
@ -1381,12 +1381,12 @@ msgstr "Sekundy"
|
||||
msgid "Font size"
|
||||
msgstr "Velikost písma"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"Velikost nahraného souboru přesahuje nastavení upload_max_filesize v php.ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1394,27 +1394,27 @@ msgstr ""
|
||||
"Velikost nahraného souboru přesahuje hodnotu MAX_FILE_SIZE, která byla "
|
||||
"zadána v HTML formuláři."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Soubor byl nahrán jen částečně."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Chybějící adresář pro dočasné soubory."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Chyba při zapisování souboru na disk."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Nahrávání souboru zastaveno rozšířením."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Neznámá chyba při nahrávání souboru."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1598,8 +1598,8 @@ msgstr "Vítejte v %s"
|
||||
#: libraries/auth/config.auth.lib.php:106
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You probably did not create a configuration file. You might want to use the %"
|
||||
"1$ssetup script%2$s to create one."
|
||||
"You probably did not create a configuration file. You might want to use the "
|
||||
"%1$ssetup script%2$s to create one."
|
||||
msgstr ""
|
||||
"Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho "
|
||||
"vytvoření by se vám mohl hodit %1$snastavovací skript%2$s."
|
||||
@ -1806,7 +1806,7 @@ msgstr "Pro grafy je potřebné rozšíření GD."
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr "Enkodér pro JSON je potřeba pro tooltipy grafu."
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1822,12 +1822,12 @@ msgstr ""
|
||||
"(nejčastěji se jedná o chybějící středník).<br />Pokud získáte prázdnou "
|
||||
"stránku, všechno je v pořádku."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Nepodařilo se nahrát výchozí konfiguraci ze souboru: %1$s"
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1835,26 +1835,26 @@ msgstr ""
|
||||
"Parametr <tt>$cfg['PmaAbsoluteUri']</tt> MUSÍ být nastaven v konfiguračním "
|
||||
"souboru!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Chybný index serveru: „%s“"
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "Chybné jméno serveru pro server %1$s. Prosím zkontrolujte nastavení."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Server"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "V konfiguraci máte špatnou přihlašovací metodu:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Měli byste aktualizovat %s na verzi %s nebo vyšší."
|
||||
@ -2087,11 +2087,11 @@ msgstr "data"
|
||||
msgid "structure and data"
|
||||
msgstr "struktura a data"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr "Rychlý - zobrazí jen minimum možností nastavení"
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr "Vlastní - zobrazí všechna možná nastavení"
|
||||
|
||||
@ -2156,7 +2156,7 @@ msgstr "nedostupné"
|
||||
#: libraries/config/FormDisplay.class.php:732
|
||||
#, php-format
|
||||
msgid "\"%s\" requires %s extension"
|
||||
msgstr "\"%s\" vyžaduje rozšíření %s"
|
||||
msgstr "„%s“ vyžaduje rozšíření %s"
|
||||
|
||||
#: libraries/config/FormDisplay.class.php:746
|
||||
#, php-format
|
||||
@ -3103,10 +3103,8 @@ msgid "Display servers selection"
|
||||
msgstr "Zobrazit výběr serverů"
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgstr "Nejvyšší počet tabulek zobrazených v seznamu tabulek"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Minimální počet tabulek pro zobrazení filtru tabulek"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
msgid "String that separates databases into different tree levels"
|
||||
@ -4313,7 +4311,7 @@ msgstr "Prázdné heslo kontrolního uživatele phpMyAdmina při použití pmadb
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "Nesprávná IP adresa: %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr "Chybí rozšíření %s. Prosím zkontrolujte nastavení PHP."
|
||||
@ -4440,23 +4438,36 @@ msgstr ""
|
||||
"Nepodařilo se nahrát pluginy pro export, zkontrolujte prosím vaší instalaci!"
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
#| msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Exportuji databáze z aktuálního serveru"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, php-format
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgstr "Exportuji tabulky z databáze \"%s\""
|
||||
#| msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Exportuji tabulky z databáze „%s“"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, php-format
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgstr "Exportuji řádky z tabulky \"%s\""
|
||||
#| msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Exportuji řádky z tabulky „%s“"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
msgid "Export Method:"
|
||||
msgstr "Způsob exportu:"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
#| msgid "Quick - display only the minimal options to configure"
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr "Rychlý - zobrazí jen minimum nastavení"
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#| msgid "Custom - display all possible options to configure"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Vlastní - zobrazí všechna nastavení"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
msgid "Database(s):"
|
||||
msgstr "Databáze:"
|
||||
@ -4518,8 +4529,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
|
||||
"formatting strings. Additionally the following transformations will happen: %"
|
||||
"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
"formatting strings. Additionally the following transformations will happen: "
|
||||
"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
|
||||
msgstr ""
|
||||
"Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít "
|
||||
"libovolné řetězce pro formátování data a času. Dále budou provedena "
|
||||
@ -4547,23 +4558,24 @@ msgstr "Žádná"
|
||||
|
||||
#: libraries/display_export.lib.php:313
|
||||
msgid "zipped"
|
||||
msgstr "„zazipováno“"
|
||||
msgstr "zazipováno"
|
||||
|
||||
#: libraries/display_export.lib.php:315
|
||||
msgid "gzipped"
|
||||
msgstr "„zagzipováno“"
|
||||
msgstr "zagzipováno"
|
||||
|
||||
#: libraries/display_export.lib.php:317
|
||||
msgid "bzipped"
|
||||
msgstr "„zabzipováno“"
|
||||
msgstr "zabzipováno"
|
||||
|
||||
#: libraries/display_export.lib.php:331 libraries/display_import.lib.php:244
|
||||
#: libraries/export/codegen.php:37
|
||||
msgid "Format:"
|
||||
msgstr "Formát:"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
#: libraries/display_export.lib.php:336
|
||||
#| msgid "Format-Specific Options:"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Parametry pro výstupní formát:"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
@ -4599,12 +4611,12 @@ msgstr "Importuji na aktuální server"
|
||||
#: libraries/display_import.lib.php:131
|
||||
#, php-format
|
||||
msgid "Importing into the database \"%s\""
|
||||
msgstr "Importuji do databáze \"%s\""
|
||||
msgstr "Importuji do databáze „%s“"
|
||||
|
||||
#: libraries/display_import.lib.php:133
|
||||
#, php-format
|
||||
msgid "Importing into the table \"%s\""
|
||||
msgstr "Importuji do tabulky \"%s\""
|
||||
msgstr "Importuji do tabulky „%s“"
|
||||
|
||||
#: libraries/display_import.lib.php:139
|
||||
msgid "File to Import:"
|
||||
@ -4653,6 +4665,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Počet dotazů od začátku, které se mají přeskočit:"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr "Parametry pro výstupní formát:"
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5051,7 +5067,7 @@ msgid ""
|
||||
"A \":\" delimited list of metadata headers to be used to initialize the "
|
||||
"pbms_metadata_header table when a database is created."
|
||||
msgstr ""
|
||||
"Dvojtečkou (\":\") oddělený seznam hlaviček metadat, který bude použit pro "
|
||||
"Dvojtečkou („:“) oddělený seznam hlaviček metadat, který bude použit pro "
|
||||
"inicializaci tabulky pbms_metadata_header při vytváření databáze."
|
||||
|
||||
#: libraries/engines/pbxt.lib.php:22
|
||||
@ -5439,8 +5455,8 @@ msgid ""
|
||||
"Dump binary columns in hexadecimal notation <i>(for example, \"abc\" becomes "
|
||||
"0x616263)</i>"
|
||||
msgstr ""
|
||||
"Vypisovat binární pole šestnáctkově <i>(například, \"abc\" becomes 0x616263)"
|
||||
"</i>"
|
||||
"Vypisovat binární pole šestnáctkově <i>(například, „abc“ becomes 0x616263)</"
|
||||
"i>"
|
||||
|
||||
#: libraries/export/sql.php:171
|
||||
msgid ""
|
||||
@ -5533,11 +5549,11 @@ msgstr "Zobrazit obsah tabulky kliknutím na její jméno"
|
||||
#: libraries/import.lib.php:1143
|
||||
msgid ""
|
||||
"Change any of its settings by clicking the corresponding \"Options\" link"
|
||||
msgstr "Změnit jakákoliv její nastavení kliknutím na odkaz \"Nastavení\""
|
||||
msgstr "Změnit jakákoliv její nastavení kliknutím na odkaz „Nastavení“"
|
||||
|
||||
#: libraries/import.lib.php:1144
|
||||
msgid "Edit its structure by following the \"Structure\" link"
|
||||
msgstr "Upravit strukturu kliknutím na odkaz \"Struktura\""
|
||||
msgstr "Upravit strukturu kliknutím na odkaz „Struktura“"
|
||||
|
||||
#: libraries/import.lib.php:1147
|
||||
msgid "Go to database"
|
||||
@ -5576,7 +5592,7 @@ msgstr ""
|
||||
|
||||
#: libraries/import/csv.php:41
|
||||
msgid "Column names: "
|
||||
msgstr "Názvy polí:"
|
||||
msgstr "Názvy polí: "
|
||||
|
||||
#: libraries/import/csv.php:60 libraries/import/csv.php:72
|
||||
#: libraries/import/csv.php:76 libraries/import/csv.php:80
|
||||
@ -5967,7 +5983,7 @@ msgstr "žádný popisek"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Nastavení podřízeného"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr "Změnit nebo přenastavit nadřízený server"
|
||||
|
||||
@ -6094,7 +6110,7 @@ msgstr "Tato stránka neobsahuje žádné tabulky!"
|
||||
|
||||
#: libraries/schema/Export_Relation_Schema.class.php:207
|
||||
msgid "SCHEMA ERROR: "
|
||||
msgstr "Chyba při vytváření schéma:"
|
||||
msgstr "Chyba při vytváření schéma: "
|
||||
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:891
|
||||
#: libraries/schema/Pdf_Relation_Schema.class.php:1119
|
||||
@ -6438,8 +6454,8 @@ msgid ""
|
||||
"For a list of available transformation options and their MIME type "
|
||||
"transformations, click on %stransformation descriptions%s"
|
||||
msgstr ""
|
||||
"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %"
|
||||
"spopisy transformací%s"
|
||||
"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na "
|
||||
"%spopisy transformací%s"
|
||||
|
||||
#: libraries/tbl_properties.inc.php:143
|
||||
msgid "Transformation options"
|
||||
@ -6480,8 +6496,8 @@ msgid ""
|
||||
"No description is available for this transformation.<br />Please ask the "
|
||||
"author what %s does."
|
||||
msgstr ""
|
||||
"Pro tuto transformaci není dostupný žádný popis.<br />Zeptejte se autora co %"
|
||||
"s dělá."
|
||||
"Pro tuto transformaci není dostupný žádný popis.<br />Zeptejte se autora co "
|
||||
"%s dělá."
|
||||
|
||||
#: libraries/tbl_properties.inc.php:725 server_engines.php:56
|
||||
#: tbl_operations.php:352
|
||||
@ -6630,7 +6646,7 @@ msgstr ""
|
||||
"Zobrazí jen část textu. První parametr je posun od začátku (výchozí je 0) a "
|
||||
"druhý určuje délku textu, který se má zobrazit, pokud není uveden, bude "
|
||||
"zobrazen zbytek textu. Třetí parametr určuje, jaký text má být přidán za "
|
||||
"zkrácený text (výchozí je ...)."
|
||||
"zkrácený text (výchozí je „...“)."
|
||||
|
||||
#: libraries/user_preferences.inc.php:32
|
||||
msgid "Manage your settings"
|
||||
@ -6743,8 +6759,9 @@ msgid ""
|
||||
"running with this default, is open to intrusion, and you really should fix "
|
||||
"this security hole by setting a password for user 'root'."
|
||||
msgstr ""
|
||||
"Máte standardní nastavení hesla uživatele root v MySQL. Doporučujeme změnit "
|
||||
"toto nastavení a tím podstatně zvýšit zabezpečení vašeho serveru."
|
||||
"Máte standardní nastavení hesla uživatele root v MySQL. Doporučujeme "
|
||||
"nastavit heslo pro uživatele 'root' a tím podstatně zvýšit zabezpečení "
|
||||
"vašeho serveru."
|
||||
|
||||
#: main.php:256
|
||||
msgid ""
|
||||
@ -7087,8 +7104,8 @@ msgid ""
|
||||
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
|
||||
"script%s."
|
||||
msgstr ""
|
||||
"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %"
|
||||
"sNastavovacího skriptu%s."
|
||||
"Více věcí můžete nastavit úpravou config.inc.php, např. použitím "
|
||||
"%sNastavovacího skriptu%s."
|
||||
|
||||
#: prefs_manage.php:302
|
||||
msgid "Save to browser's storage"
|
||||
@ -7540,8 +7557,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé."
|
||||
msgid ""
|
||||
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
|
||||
"tables. The content of these tables may differ from the privileges the "
|
||||
"server uses, if they have been changed manually. In this case, you should %"
|
||||
"sreload the privileges%s before you continue."
|
||||
"server uses, if they have been changed manually. In this case, you should "
|
||||
"%sreload the privileges%s before you continue."
|
||||
msgstr ""
|
||||
"Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto "
|
||||
"tabulek se může lišit od oprávnění, která server právě používá, pokud byly "
|
||||
@ -7782,47 +7799,45 @@ msgstr "Kompletně zastavit"
|
||||
msgid "Reset slave"
|
||||
msgstr "Resetovat podřízený server"
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr "%s jen SQL vlákno"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "Spustit"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "Zastavit"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
msgstr "%s jen IO vlákno"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Spustit jen SQL vlákno"
|
||||
|
||||
#: server_replication.php:330
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr "Zastavit jen SQL vlákno"
|
||||
|
||||
#: server_replication.php:331
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Spustit jen IO vlákno"
|
||||
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr "Zastavit jen IO vlákno"
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr "Práce s chybami:"
|
||||
|
||||
#: server_replication.php:332
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
"Přeskakování chyb může vést k rozdílným datům na nadřízeném a podřízeném "
|
||||
"serveru."
|
||||
|
||||
#: server_replication.php:334
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr "Přeskočit současnou chybu"
|
||||
|
||||
#: server_replication.php:335
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr "Přeskočit dalších"
|
||||
|
||||
#: server_replication.php:338
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr "chyb."
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -8625,20 +8640,16 @@ msgid "Query type"
|
||||
msgstr "Typ dotazu"
|
||||
|
||||
#: server_status.php:709 server_status.php:710
|
||||
#, fuzzy
|
||||
#| msgid "Show query box"
|
||||
msgid "Show query chart"
|
||||
msgstr "Zobrazit pole pro dotaz"
|
||||
msgstr "Zobrazit graf dotazu"
|
||||
|
||||
#: server_status.php:714 server_status.php:715
|
||||
#, fuzzy
|
||||
#| msgid "Hide query box"
|
||||
msgid "Hide query chart"
|
||||
msgstr "Schovat pole pro dotaz"
|
||||
msgstr "Skrýt graf dotazu"
|
||||
|
||||
#: server_status.php:717
|
||||
msgid "Note: Generating the query chart can take a long time."
|
||||
msgstr ""
|
||||
msgstr "Poznámka: Generování dotazu může trvat dlouho."
|
||||
|
||||
#: server_status.php:855
|
||||
msgid "Replication status"
|
||||
@ -9022,7 +9033,7 @@ msgid ""
|
||||
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
|
||||
"cookie validity%s must be set to a value less or equal to it."
|
||||
msgstr ""
|
||||
"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie"
|
||||
"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie"
|
||||
"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
|
||||
"hodnotu než je tato."
|
||||
|
||||
@ -9034,8 +9045,8 @@ msgid ""
|
||||
"protection may not be reliable if your IP belongs to an ISP where thousands "
|
||||
"of users, including you, are connected to."
|
||||
msgstr ""
|
||||
"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %"
|
||||
"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
|
||||
"Pokud to považujete za nutné, použijte další možnosti zabezpečení - "
|
||||
"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
|
||||
"založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa "
|
||||
"dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli."
|
||||
|
||||
@ -9784,6 +9795,12 @@ msgstr "Jméno pohledu"
|
||||
msgid "Rename view to"
|
||||
msgstr "Přejmenovat pohled na"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Spustit"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "Zastavit"
|
||||
|
||||
#~ msgid "Display table filter"
|
||||
#~ msgstr "Zobrazit rychlé vyhledávání tabulek"
|
||||
|
||||
|
||||
142
po/cy.po
142
po/cy.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-06-07 20:23+0200\n"
|
||||
"Last-Translator: <ardavies@tiscali.co.uk>\n"
|
||||
"Language-Team: Welsh <cy@li.org>\n"
|
||||
@ -53,7 +53,7 @@ msgstr "Chwilio"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -70,7 +70,7 @@ msgstr "Chwilio"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -859,14 +859,14 @@ msgstr ""
|
||||
"Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth"
|
||||
"%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Nid oedd modd darllen y ffeil hon."
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1431,37 +1431,37 @@ msgstr "Eiliad"
|
||||
msgid "Font size"
|
||||
msgstr "Maint ffont"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Ffolder dros dro ar goll."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Methu ag ysgrifennu i'r ddisg."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Cafodd y lanlwythiad ei atal gan estyniad."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Gwall anhysbys wrth lanlwytho ffeil."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1859,7 +1859,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1869,38 +1869,38 @@ msgid ""
|
||||
"is fine."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Indecs gweinydd annilys: %s"
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"Enw gwesteiwr annilys ar gyfer gweinydd %1$s. Adolygwch eich ffurfwedd."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Gweinydd"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Dylech uwchraddio i %s %s neu'n well."
|
||||
@ -2140,11 +2140,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Strwythur a data"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3162,7 +3162,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4286,7 +4286,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4409,19 +4409,21 @@ msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Cannot log in to the MySQL server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Methu â mewngofnodi i'r gweinydd MySQL"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Creu tabl mewn cronfa ddata %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Creu tabl mewn cronfa ddata %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4430,6 +4432,14 @@ msgstr "Creu tabl mewn cronfa ddata %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Math allbwn"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4556,8 +4566,8 @@ msgstr "\"bzip-iwyd\""
|
||||
msgid "Format:"
|
||||
msgstr "Fformat"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
#: libraries/display_export.lib.php:336
|
||||
msgid "Format-specific options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
@ -4647,6 +4657,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Nifer yr ymholiadau i'w neidio o'r dechrau"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5910,7 +5924,7 @@ msgstr ""
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7630,45 +7644,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Strwythur yn unig"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Strwythur yn unig"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
|
||||
142
po/da.po
142
po/da.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-07-21 14:55+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: danish <da@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Søg"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Søg"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -865,14 +865,14 @@ msgstr ""
|
||||
"sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
|
||||
"begrænsning."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Filen kunne ikke læses"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1491,11 +1491,11 @@ msgstr "pr. sekund"
|
||||
msgid "Font size"
|
||||
msgstr "Skriftstørrelse"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1503,27 +1503,27 @@ msgstr ""
|
||||
"Den uploadede fil overstiger MAX_FILE_SIZE direktivet som angivet i HTML-"
|
||||
"formularen."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Den uploadede fil blev kun delvist uploaded."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Mangler en midlertidig mappe."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Kunne ikke skrive fil til disk."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Filupload stoppet af udvidelse."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Ukendt fejl i filupload."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1921,7 +1921,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1936,13 +1936,13 @@ msgstr ""
|
||||
"fejlmeddelelse(r) du får. I de fleste tilfælde mangler der et anførselstegn "
|
||||
"eller et semikolon et sted.<br />Hvis du får en blank side, er alt i orden."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Kunne ikke indlæse standardkonfiguration fra: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1950,28 +1950,28 @@ msgstr ""
|
||||
"<tt>$cfg['PmaAbsoluteUri']</tt> direktivet SKAL være sat i din "
|
||||
"konfigurationsfil!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Ugyldigt server indeks: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"Ugyldigt hostnavn for server %1$s. Gennemgå venligst din konfiguration."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Server"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Ugyldig autorisationsmetode sat i konfiguration:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Du burde opdatere til %s %s eller senere."
|
||||
@ -2209,11 +2209,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Struktur og data"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3236,7 +3236,7 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Antallet af tabeller der er åbne."
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4357,7 +4357,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4487,19 +4487,19 @@ msgstr "Kunne ikke indlæse eksportplugins, check venligst din installation!"
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Tillader låsning af tabeller for nuværende tråd."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Opret ny tabel i database %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Opret ny tabel i database %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4508,6 +4508,14 @@ msgstr "Opret ny tabel i database %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Eksporttype"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4639,9 +4647,11 @@ msgstr "\"bzipped\""
|
||||
msgid "Format:"
|
||||
msgstr "Format"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Transformationsindstillinger"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4738,6 +4748,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Antal poster (queries) der skal springes over fra start"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6031,7 +6045,7 @@ msgstr "ingen beskrivelse"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7935,45 +7949,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Kun strukturen"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Kun strukturen"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
|
||||
134
po/de.po
134
po/de.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-09-16 12:10+0200\n"
|
||||
"Last-Translator: <sven-cihar.com@incase.de>\n"
|
||||
"Language-Team: german <de@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Suche"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Suche"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -848,14 +848,14 @@ msgstr ""
|
||||
"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %"
|
||||
"sDokumentation%s zur Lösung diese Problems."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Die Datei konnte nicht gelesen werden"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1423,13 +1423,13 @@ msgstr "Sekunde"
|
||||
msgid "Font size"
|
||||
msgstr "Schriftgröße"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"Die hochgeladene Datei ist größer als der in der php.ini in "
|
||||
"upload_max_filesize angegebene Wert."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1437,27 +1437,27 @@ msgstr ""
|
||||
"Die hochgeladene Datei ist größer als der in MAX_FILE_SIZE des HTML "
|
||||
"Formulars angegebene Wert."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Die Datei wurde teilweise übertragen."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Kein gültiges Temporäres Verzeichnis für hochgeladene Dateien."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Datei konnte gespeichert werden."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Dateihochladen durch eine Erweiterung gestoppt."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Unbekannter Fehler beim Dateihochladen."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1862,7 +1862,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1878,12 +1878,12 @@ msgstr ""
|
||||
"Meistens fehlt bloß irgendwo ein Anführungszeichen oder Semikolon.<br />Wenn "
|
||||
"Sie eine leere Seite erhalten, ist Ihre Konfigurationsdatei in Ordnung."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Fehler beim Laden der Standard-Konfiguration von: %1$s"
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1891,28 +1891,28 @@ msgstr ""
|
||||
"Das <tt>$cfg['PmaAbsoluteUri']</tt>-Verzeichnis MUSS in Ihrer "
|
||||
"Konfigurationsdatei angegeben werden!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Ungültige Server-Nummer: %s"
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"Ungültiger Host-Name für Server %1$s. Bitte überprüfen Sie Ihre "
|
||||
"Konfiguration."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Server"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Ungültige Authentifikationsmethode:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Sie sollten auf %s %s oder neuer umsteigen."
|
||||
@ -2152,11 +2152,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Struktur und Daten"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3249,7 +3249,7 @@ msgstr "Server-Auswahl anzeigen"
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Maximale Anzahl der in einer Tabellenliste angezeigten Tabellen"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4520,7 +4520,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "Ungültige IP-Adresse: %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4653,19 +4653,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Erlaubt die Sperrung bestimmter Tabellen."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Neue Tabelle in Datenbank %s erstellen"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Neue Tabelle in Datenbank %s erstellen"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4674,6 +4674,16 @@ msgstr "Neue Tabelle in Datenbank %s erstellen"
|
||||
msgid "Export Method:"
|
||||
msgstr "Exporttyp"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Customize default export options"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Standard-Exporteinstellungen anpassen"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4807,9 +4817,11 @@ msgstr "BZip-komprimiert"
|
||||
msgid "Format:"
|
||||
msgstr "Format"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Umwandlungsoptionen"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4913,6 +4925,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Anzahl der am Anfang zu überspringenden Einträge (Abfragen)"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6260,7 +6276,7 @@ msgstr "keine Beschreibung"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Slave-Konfiguration"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr "Master-Server wechseln oder neu konfigurieren"
|
||||
|
||||
@ -8234,47 +8250,53 @@ msgstr "Alles stoppen"
|
||||
msgid "Reset slave"
|
||||
msgstr "Slave zurücksetzen"
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
#: server_replication.php:326
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Nur SQL Thread %s"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "Start"
|
||||
#: server_replication.php:328
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr "Nur SQL Thread %s"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "Stop"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Nur IO Thread %s"
|
||||
|
||||
#: server_replication.php:330
|
||||
#: server_replication.php:333
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr "Nur IO Thread %s"
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr "Fehlerbehandlung:"
|
||||
|
||||
#: server_replication.php:332
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
"Überspringen von Fehlern kann zu Synchronisationsverlust zwischen Master und "
|
||||
"Slave führen!"
|
||||
|
||||
#: server_replication.php:334
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr "Überspringe aktuellen Fehler"
|
||||
|
||||
#: server_replication.php:335
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr "Überspringe nächsten"
|
||||
|
||||
#: server_replication.php:338
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr "Fehler."
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -10363,6 +10385,12 @@ msgstr "VIEW Name"
|
||||
msgid "Rename view to"
|
||||
msgstr "View umbenennen in"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Start"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "Stop"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Display databases in a tree"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
146
po/el.po
146
po/el.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-12-04 17:14+0200\n"
|
||||
"Last-Translator: Panagiotis Papazoglou <papaz_p@yahoo.com>\n"
|
||||
"Language-Team: greek <el@li.org>\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: el\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -50,7 +50,7 @@ msgstr "Αναζήτηση"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Αναζήτηση"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -547,7 +547,6 @@ msgstr "Διαγραφή"
|
||||
|
||||
#: db_search.php:260
|
||||
#, php-format
|
||||
#| msgid "Delete tracking data for this table"
|
||||
msgid "Delete the matches for the %s table?"
|
||||
msgstr "Διαγραφή ταιριασμάτων για τον πίνακα %s;"
|
||||
|
||||
@ -843,14 +842,14 @@ msgstr ""
|
||||
"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %"
|
||||
"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Δεν ήταν δυνατή η ανάγνωση του αρχείου"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1382,13 +1381,13 @@ msgstr "Δευτερόλεπτο"
|
||||
msgid "Font size"
|
||||
msgstr "Μέγεθος γραμματοσειράς"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"Το προς αποστολή αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php."
|
||||
"ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1396,27 +1395,27 @@ msgstr ""
|
||||
"Το προς αποστολή αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE όπως ορίστηκε "
|
||||
"στη φόρμα HTML."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Το απεσταλμένο αρχείο εστάλει μόνο μερικώς."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Χάθηκε ένας προσωρινός φάκελος."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Αποτυχία εγγραφής του αρχείου στο δίσκο."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Η αποστολή του αρχείου σταμάτησε λόγω επέκτασης."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Άγνωστο σφάλμα στην αποστολή αρχείου."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1811,7 +1810,7 @@ msgstr "Απαιτείται η επέκταση GD για τα διαγράμμ
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr "Ο κωδικοποιητής JSON απαιτείται για τις επεξηγήσεις των διαγραμμάτων."
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1827,12 +1826,12 @@ msgstr ""
|
||||
"php. Στις περισσότερες περιπτώσεις κάπου λείπουν εισαγωγικά (\") ή "
|
||||
"ερωτηματικά (;).<br />Εάν η php επιστρέψει μια λευκή σελίδα, όλα είναι σωστά."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Αδύνατη η φόρτωση της προεπιλεγμένης ρύθμισης από: «%1$s»"
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1840,28 +1839,28 @@ msgstr ""
|
||||
"Η εντολή <tt>$cfg['PmaAbsoluteUri']</tt> ΠΡΕΠΕΙ να οριστεί στο αρχείο "
|
||||
"ρυθμίσεων!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Μη έγκυρο ευρετήριο διακομιστή: %s"
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"Μη έγκυρο όνομα διακομιστή για τον διακομιστή %1$s. Ξαναδείτε τις ρυθμίσεις "
|
||||
"σας."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Διακομιστής"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Ορίστηκε εσφαλμένη μέθοδος πιστοποίησης στη ρύθμιση:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Πρέπει να αναβαθμίσετε σε %s %s ή νεότερη."
|
||||
@ -2095,11 +2094,11 @@ msgstr "δεδομένα"
|
||||
msgid "structure and data"
|
||||
msgstr "δομή και δεδομένα"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr "Γρήγορο - προβολή μονό των ελάχιστων επιλογών για ρύθμιση"
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr "Προσαρμογή - προβολή όλων των πιθανών επιλογών για ρύθμιση"
|
||||
|
||||
@ -3123,7 +3122,7 @@ msgstr "Προβολή επιλογής διακομιστών"
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Μέγιστος αριθμός πινάκες που θα προβάλονται σε λίστα πινάκων"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4370,7 +4369,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "Εσφαλμένη διεύθυνση IP: %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr "Η επέκταση %s λείπει. Δείτε τις ρυθμίσεις της PHP."
|
||||
@ -4495,23 +4494,39 @@ msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr "Αδύνατη η φόρτωση προσθέτων εξαγωγής. Ελέξτε την εγκατάστασή σας!"
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
#, fuzzy
|
||||
#| msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Εξαγωγή βάσεων δεδομένων στον τρέχοντα διακομιστή"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, php-format
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Εξαγωγή πινάκων στη βάση δεδομένων «%s»"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, php-format
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Εξαγωγή εγγραφών στον πίνακα «%s»"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
msgid "Export Method:"
|
||||
msgstr "Μέθοδος εξαγωγής"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
#, fuzzy
|
||||
#| msgid "Quick - display only the minimal options to configure"
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr "Γρήγορο - προβολή μονό των ελάχιστων επιλογών για ρύθμιση"
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Custom - display all possible options to configure"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Προσαρμογή - προβολή όλων των πιθανών επιλογών για ρύθμιση"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
msgid "Database(s):"
|
||||
msgstr "Βάση(εις) Δεδομένων"
|
||||
@ -4617,8 +4632,10 @@ msgstr "συμπίεση «bzip»"
|
||||
msgid "Format:"
|
||||
msgstr "Μορφοποίηση"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Format-Specific Options:"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Επιλογές Ορισμένης Μορφής:"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
@ -4711,6 +4728,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Αριθμός εγγραφών που θα παραβλεφθούν από την αρχή"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr "Επιλογές Ορισμένης Μορφής:"
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6047,7 +6068,7 @@ msgstr "χωρίς περιγραφή"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Ρύθμιση δευτερεύοντος"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr "Αλλαγή ή επαναρύθμιση του πρωτεύοντος διακομιστή"
|
||||
|
||||
@ -6949,7 +6970,6 @@ msgid "Filter"
|
||||
msgstr "Φίλτρο"
|
||||
|
||||
#: navigation.php:292
|
||||
#| msgid "Alter table order by"
|
||||
msgid "filter tables by name"
|
||||
msgstr "φιλτράρισμα πινάκων κατά όνομα"
|
||||
|
||||
@ -7904,47 +7924,53 @@ msgstr "Πλήρες σταμάτημα"
|
||||
msgid "Reset slave"
|
||||
msgstr "Επαναφορά δευτερεύοντος"
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
#: server_replication.php:326
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Διεργασία SQL %s μόνο"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "Εκκίνηση"
|
||||
#: server_replication.php:328
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr "Διεργασία SQL %s μόνο"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "Σταμάτημα"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Διεργασία IO %s μόνο"
|
||||
|
||||
#: server_replication.php:330
|
||||
#: server_replication.php:333
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr "Διεργασία IO %s μόνο"
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr "Διαχείριση σφάλματος:"
|
||||
|
||||
#: server_replication.php:332
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
"Η παράβλεψη σφαλμάτων μπορεί να οδηγήσει στο μη συγχρονισμό πρωτεύοντος και "
|
||||
"δευτερεύοντος!"
|
||||
|
||||
#: server_replication.php:334
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr "Παράβλεψη τρέχοντος σφάλματος"
|
||||
|
||||
#: server_replication.php:335
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr "Παράβλεψη επόμενου"
|
||||
|
||||
#: server_replication.php:338
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr "σφάλματα."
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9986,6 +10012,12 @@ msgstr "ΠΡΟΒΟΛΗ ονόματος"
|
||||
msgid "Rename view to"
|
||||
msgstr "Μετονομασία πίνακα σε"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Εκκίνηση"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "Σταμάτημα"
|
||||
|
||||
#~ msgid "Display table filter"
|
||||
#~ msgstr "Προβολή φίλτρου πίνακα"
|
||||
|
||||
|
||||
159
po/en_GB.po
159
po/en_GB.po
@ -3,8 +3,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"PO-Revision-Date: 2010-12-03 19:38+0200\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-12-08 12:48+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: english-gb <en_GB@li.org>\n"
|
||||
"Language: en_GB\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Search"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Search"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -547,7 +547,6 @@ msgstr "Delete"
|
||||
|
||||
#: db_search.php:260
|
||||
#, php-format
|
||||
#| msgid "Delete tracking data for this table"
|
||||
msgid "Delete the matches for the %s table?"
|
||||
msgstr "Delete the matches for the %s table?"
|
||||
|
||||
@ -841,14 +840,14 @@ msgstr ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "File could not be read"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1374,12 +1373,12 @@ msgstr "Second"
|
||||
msgid "Font size"
|
||||
msgstr "Font size"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1387,27 +1386,27 @@ msgstr ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "The uploaded file was only partially uploaded."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Missing a temporary folder."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Failed to write file to disk."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "File upload stopped by extension."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Unknown error in file upload."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1796,7 +1795,7 @@ msgstr "GD extension is needed for charts."
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr "JSON encoder is needed for chart tooltips."
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1812,12 +1811,12 @@ msgstr ""
|
||||
"semicolon is missing somewhere.<br />If you receive a blank page, everything "
|
||||
"is fine."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Could not load default configuration from: %1$s"
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1825,26 +1824,26 @@ msgstr ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Invalid server index: %s"
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "Invalid hostname for server %1$s. Please review your configuration."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Server"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Invalid authentication method set in configuration:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "You should upgrade to %s %s or later."
|
||||
@ -2077,11 +2076,11 @@ msgstr "data"
|
||||
msgid "structure and data"
|
||||
msgstr "structure and data"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr "Quick - display only the minimal options to configure"
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr "Custom - display all possible options to configure"
|
||||
|
||||
@ -3092,10 +3091,9 @@ msgid "Display servers selection"
|
||||
msgstr "Display servers selection"
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgstr "Maximum number of tables displayed in table list"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Minimum number of tables to display the table filter box"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
msgid "String that separates databases into different tree levels"
|
||||
@ -4302,7 +4300,7 @@ msgstr "Empty phpMyAdmin control user password while using pmadb"
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "Incorrect IP address: %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr "The %s extension is missing. Please check your PHP configuration."
|
||||
@ -4427,23 +4425,36 @@ msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr "Could not load export plug-ins, please check your installation!"
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
msgstr "Exporting databases in the current server"
|
||||
#| msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Exporting databases from the current server"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, php-format
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgstr "Exporting tables in the database \"%s\""
|
||||
#| msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Exporting tables from \"%s\" database"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, php-format
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgstr "Exporting rows in the table \"%s\""
|
||||
#| msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Exporting rows from \"%s\" table"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
msgid "Export Method:"
|
||||
msgstr "Export Method:"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
#| msgid "Quick - display only the minimal options to configure"
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr "Quick - display only the minimal options"
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#| msgid "Custom - display all possible options to configure"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Custom - display all possible options"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
msgid "Database(s):"
|
||||
msgstr "Database(s):"
|
||||
@ -4548,9 +4559,10 @@ msgstr "bzipped"
|
||||
msgid "Format:"
|
||||
msgstr "Format:"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr "Format-Specific Options:"
|
||||
#: libraries/display_export.lib.php:336
|
||||
#| msgid "Format-Specific Options:"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Format-specific options:"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4638,6 +4650,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Number of rows to skip, starting from the first row:"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr "Format-Specific Options:"
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5955,7 +5971,7 @@ msgstr "no description"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Slave configuration"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr "Change or reconfigure master server"
|
||||
|
||||
@ -6845,7 +6861,6 @@ msgid "Filter"
|
||||
msgstr "Filter"
|
||||
|
||||
#: navigation.php:292
|
||||
#| msgid "table name"
|
||||
msgid "filter tables by name"
|
||||
msgstr "filter tables by name"
|
||||
|
||||
@ -7776,45 +7791,47 @@ msgstr "Full stop"
|
||||
msgid "Reset slave"
|
||||
msgstr "Reset slave"
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr "SQL Thread %s only"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "Start"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "Stop"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
msgstr "IO Thread %s only"
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Start SQL Thread only"
|
||||
|
||||
#: server_replication.php:330
|
||||
#: server_replication.php:328
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr "Stop SQL Thread only"
|
||||
|
||||
#: server_replication.php:331
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Start IO Thread only"
|
||||
|
||||
#: server_replication.php:333
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr "Stop IO Thread only"
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr "Error management:"
|
||||
|
||||
#: server_replication.php:332
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr "Skipping errors might lead into unsynchronised master and slave!"
|
||||
|
||||
#: server_replication.php:334
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr "Skip current error"
|
||||
|
||||
#: server_replication.php:335
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr "Skip next"
|
||||
|
||||
#: server_replication.php:338
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr "errors."
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -8627,20 +8644,18 @@ msgid "Query type"
|
||||
msgstr "Query type"
|
||||
|
||||
#: server_status.php:709 server_status.php:710
|
||||
#, fuzzy
|
||||
#| msgid "Show query box"
|
||||
msgid "Show query chart"
|
||||
msgstr "Show query box"
|
||||
msgstr "Show query chart"
|
||||
|
||||
#: server_status.php:714 server_status.php:715
|
||||
#, fuzzy
|
||||
#| msgid "Hide query box"
|
||||
msgid "Hide query chart"
|
||||
msgstr "Hide query box"
|
||||
msgstr "Hide query chart"
|
||||
|
||||
#: server_status.php:717
|
||||
msgid "Note: Generating the query chart can take a long time."
|
||||
msgstr ""
|
||||
msgstr "Note: Generating the query chart can take a long time."
|
||||
|
||||
#: server_status.php:855
|
||||
msgid "Replication status"
|
||||
@ -9780,6 +9795,12 @@ msgstr "VIEW name"
|
||||
msgid "Rename view to"
|
||||
msgstr "Rename view to"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Start"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "Stop"
|
||||
|
||||
#~ msgid "Display table filter"
|
||||
#~ msgstr "Display table filter"
|
||||
|
||||
|
||||
151
po/es.po
151
po/es.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-11-29 02:31+0200\n"
|
||||
"Last-Translator: <javipas@gmail.com>\n"
|
||||
"Language-Team: spanish <es@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Buscar"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Buscar"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -854,14 +854,14 @@ msgstr ""
|
||||
"Usted probablemente intentó cargar un archivo demasiado grande. Por favor, "
|
||||
"refiérase a %sdocumentation%s para hallar modos de superar esta limitante."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "No fue posible leer el archivo"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1393,13 +1393,13 @@ msgstr "Segundo"
|
||||
msgid "Font size"
|
||||
msgstr "Tamaño de fuente"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"El archivo que intentó subir excede la directiva upload_max_filesize en php."
|
||||
"ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1407,27 +1407,27 @@ msgstr ""
|
||||
"El archivo que intentó subir excede la directiva MAX_FILE_SIZE especificada "
|
||||
"en el formulario HTML."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "El archivo que intentó subir no alcanzó el 100%."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Falta una carpeta temporal."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "No fue posible grabar el archivo a disco."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "La subida del archivo fue detenida por su extensión."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Error desconocido al subir el archivo."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1828,7 +1828,7 @@ msgstr "Se necesita la extensión GD para las gráficas."
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr "Se necesita el encoder JSON para los globos de ayuda en las gráficas."
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1844,12 +1844,12 @@ msgstr ""
|
||||
"error que reciba. En muchas ocasiones falta una coma o punto y coma en algún "
|
||||
"sitio.<br />Si recibe una página en blanco, todo está correcto."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "No se pudo cargar la configuración predeterminada desde: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1857,28 +1857,28 @@ msgstr ""
|
||||
"El contenido de <tt>$cfg['PmaAbsoluteUri']</tt> ¡DEBE constar en config.inc."
|
||||
"php!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "No es válido el índice del servidor: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"El nombre del host no es válido para el servidor %1$s. Por favor, revise su "
|
||||
"configuración."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Servidor"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Método de autenticación no válido diefinido en la configuración:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Usted debería actualizar su %s a la versión %s o más reciente."
|
||||
@ -2113,11 +2113,11 @@ msgstr "datos"
|
||||
msgid "structure and data"
|
||||
msgstr "estructura y datos"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr "Rápido - mostrar solo el mínimo de opciones de configuración"
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr "Personalizado - mostrar todas las opciones de configuración posibles"
|
||||
|
||||
@ -3192,7 +3192,7 @@ msgstr "Mostrar la selección de servidores"
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Número máximo de tablas mostradas en una lista de tablas"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4419,7 +4419,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "La dirección IP es incorrecta: %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4553,19 +4553,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Permite poner candados a las tablas para el proceso actual."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Crear nueva tabla en la base de datos %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Crear nueva tabla en la base de datos %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4574,6 +4574,18 @@ msgstr "Crear nueva tabla en la base de datos %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Tipo de exportación"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
#, fuzzy
|
||||
#| msgid "Quick - display only the minimal options to configure"
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr "Rápido - mostrar solo el mínimo de opciones de configuración"
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Custom - display all possible options to configure"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Personalizado - mostrar todas las opciones de configuración posibles"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4706,9 +4718,11 @@ msgstr "\"Comprimido con bzip\""
|
||||
msgid "Format:"
|
||||
msgstr "Formato"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Opciones de transformación"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4806,6 +4820,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Número de registros (consultas) a saltarse desde el inicio"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6158,7 +6176,7 @@ msgstr "Sin descripción"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Configuración del servidor"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -8113,46 +8131,47 @@ msgstr "Texto completo"
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Inicio"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Únicamente la estructura "
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Únicamente la estructura "
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -10245,6 +10264,10 @@ msgstr "(VIEW) VER nombre"
|
||||
msgid "Rename view to"
|
||||
msgstr "Cambiar el nombre de la vista a "
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Inicio"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Display databases in a tree"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
148
po/et.po
148
po/et.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: estonian <et@li.org>\n"
|
||||
@ -49,7 +49,7 @@ msgstr "Otsi"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -66,7 +66,7 @@ msgstr "Otsi"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -868,14 +868,14 @@ msgstr ""
|
||||
"Te kindlasti proovisite laadida liiga suurt faili. Palun uuri "
|
||||
"dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Faili ei suudetud lugeda"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1489,37 +1489,37 @@ msgstr "sekundis"
|
||||
msgid "Font size"
|
||||
msgstr "Fondi suurus"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
@ -1914,7 +1914,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1930,13 +1930,13 @@ msgstr ""
|
||||
"kuskilt puudu ülakoma või semikoolon.<br />Kui Teile kuvatakse tühi leht on "
|
||||
"kõik korras."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Pole võimalik laadida vaikimisi seadete faili: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1944,27 +1944,27 @@ msgstr ""
|
||||
"<tt>$cfg['PmaAbsoluteUri']</tt> konstant peab teie konfiguratsioonifailis "
|
||||
"määratud olema!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Vigane serveri indeks: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "Vigane hostname serverile %1$s. Palun kontrolli seadeid."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Server"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Vigane autoriseerimise meetod konfiguratsioonifailis:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Te peaksite uuendama %s -i versioonini %s või uuemaks."
|
||||
@ -2205,11 +2205,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Struktuur ja andmed"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3257,7 +3257,7 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Mitu tabelit on hetkel avatud."
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4394,7 +4394,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4524,19 +4524,19 @@ msgstr "Viga eksportimis moodulite laadimisel, palun kontrolli seadeid!"
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Lubab lukustada tabeleid aktiivse päringu tarbeks."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Loo uus tabel andmebaasi %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Loo uus tabel andmebaasi %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4545,6 +4545,15 @@ msgstr "Loo uus tabel andmebaasi %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Ekspordi tüüp"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Andmebaasi eksportimise seaded"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4676,9 +4685,11 @@ msgstr "\"bzipitud\""
|
||||
msgid "Format:"
|
||||
msgstr "Formaat"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Transformeerimise seaded"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4772,6 +4783,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Käske (päringuid) mida algusest vahele jätta"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6074,7 +6089,7 @@ msgstr "pole kirjeldust"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7977,46 +7992,47 @@ msgstr "Täistekst"
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Lau"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Ainult struktuur"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Ainult struktuur"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9964,6 +9980,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "Nimeta tabel ümber"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Lau"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
147
po/eu.po
147
po/eu.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-07-21 14:53+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: basque <eu@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Bilatu"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Bilatu"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -868,14 +868,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Ezinezkoa fitxategia irakurtzea"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1476,37 +1476,37 @@ msgstr "segunduko"
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1893,7 +1893,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1910,12 +1910,12 @@ msgstr ""
|
||||
"nonbait ez egoteak sortzen du arazoa.<br />Orria txuriz jasoz gero, dena "
|
||||
"ondo legoke."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1923,26 +1923,26 @@ msgstr ""
|
||||
"<tt>$cfg['PmaAbsoluteUri']</tt> direktibak zure konfigurazio fitxategian "
|
||||
"zehaztuta behar du egon!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Zerbitzaria"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "%s %s bertsiora edo handiago batera eguneratu beharko zenuke."
|
||||
@ -2179,11 +2179,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Egitura eta datuak"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3214,7 +3214,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4338,7 +4338,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4465,19 +4465,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Momentuko harian taulak blokeatzea baimentzen du."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Taula berri bat sortu %s datu-basean"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Taula berri bat sortu %s datu-basean"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4486,6 +4486,14 @@ msgstr "Taula berri bat sortu %s datu-basean"
|
||||
msgid "Export Method:"
|
||||
msgstr "Esportazio mota"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4610,9 +4618,11 @@ msgstr "\"Bzip-ez trinkotua\""
|
||||
msgid "Format:"
|
||||
msgstr "Formatoa"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Eraldaketen hobespenak"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4693,6 +4703,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5972,7 +5986,7 @@ msgstr "Deskribapenik ez"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7855,46 +7869,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Lar"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Egitura soilik"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Egitura soilik"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9732,6 +9747,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "Taula berrizendatu izen honetara: "
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Lar"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
147
po/fa.po
147
po/fa.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
|
||||
"Last-Translator: <ahmad_usa2007@yahoo.com>\n"
|
||||
"Language-Team: persian <fa@li.org>\n"
|
||||
@ -47,7 +47,7 @@ msgstr "جستجو"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -64,7 +64,7 @@ msgstr "جستجو"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -858,14 +858,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1454,37 +1454,37 @@ msgstr " ثانیه"
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1868,7 +1868,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1884,37 +1884,37 @@ msgstr ""
|
||||
"(\" ; \") در جايي وجود ندارد.<br />اگر يك صفحه خالي دريافت كرديد ، همه چيز "
|
||||
"درست است."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "سرور"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
@ -2154,11 +2154,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "ساختار و دادهها"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3176,7 +3176,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4289,7 +4289,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4415,19 +4415,21 @@ msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "ساخت جدول جديد در پايگاه داده %s"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "ساخت جدول جديد در پايگاه داده %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "ساخت جدول جديد در پايگاه داده %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4436,6 +4438,14 @@ msgstr "ساخت جدول جديد در پايگاه داده %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "صدور"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4557,8 +4567,8 @@ msgstr "\"bzipped\""
|
||||
msgid "Format:"
|
||||
msgstr "قالب"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
#: libraries/display_export.lib.php:336
|
||||
msgid "Format-specific options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
@ -4636,6 +4646,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5900,7 +5914,7 @@ msgstr "no Description"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7665,46 +7679,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "شنبه"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "فقط ساختار"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "فقط ساختار"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9527,6 +9542,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "بازناميدن جدول به"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "شنبه"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
136
po/fi.po
136
po/fi.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-11-26 21:29+0200\n"
|
||||
"Last-Translator: <asdfsdf@asdfasdfasdf.com>\n"
|
||||
"Language-Team: finnish <fi@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Etsi"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Etsi"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -842,14 +842,14 @@ msgstr ""
|
||||
"Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso "
|
||||
"tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Tiedostoa ei voi lukea"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1377,13 +1377,13 @@ msgstr "Sekunti"
|
||||
msgid "Font size"
|
||||
msgstr "Fonttikoko"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"Lähetyn tidoston koko ylittää php.ini-tiedoston upload_max_filesize-"
|
||||
"asetuksen arvon."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1391,27 +1391,27 @@ msgstr ""
|
||||
"Lähetetyn tiedoston koko ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-"
|
||||
"asetuksen arvon."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Tiedosto lähetettiin vain osittain."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Tilapäiskansio puuttuu."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Tiedoston kirjoitus levylle epäonnistui."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Laajennus keskeytti tiedoston lähetyksen."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Tuntematon virhe tiedostoa lähetettäessä."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1802,7 +1802,7 @@ msgstr "Kaavioiden käyttöön tarvitaan GD-laajennus."
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr "Kaavioiden työkaluvihjeitä varten tarvitaan JSON-koodain."
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1817,37 +1817,37 @@ msgstr ""
|
||||
"Todennäköisimmin joltain riviltä puuttuu lainausmerkki tai puolipiste.<br /"
|
||||
">Jos linkistä avautuva sivu on tyhjä, asetustiedostossa ei ollut virhettä."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Oletusasetuksia ei voitu ladata kohteesta: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr "<tt>$cfg['PmaAbsoluteUri']</tt> täytyy määritellä asetustiedostossa!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Virheellinen palvelimen indeksi: %s"
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "Palvelimella %1$s virheellinen nimi. Tarkista asetukset."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Palvelin"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Asetuksissa on virheellinen todennustapa:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Sinun tulisi päivittää versioon %s %s tai sitä uudempaan."
|
||||
@ -2080,11 +2080,11 @@ msgstr "tiedot"
|
||||
msgid "structure and data"
|
||||
msgstr "rakenne ja tiedot"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr "Nopea asetusten määritys - näytä asetuksia mahdollisimman vähän"
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr "Mukautettu - näytä kaikki mahdolliset asetukset"
|
||||
|
||||
@ -3166,7 +3166,7 @@ msgstr "Näytä palvelinten valinta"
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Taululuettelossa näkyvien taulujen enimmäismäärä"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4431,7 +4431,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "Virheellinen IP-osoite: %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4563,19 +4563,19 @@ msgstr "Vientiin tarvittavia lisäosia ei voitu ladata; tarkista asetukset!"
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Sallii taulujen lukitsemisen nykyiselle säikeelle."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Luo uusi taulu tietokantaan %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Luo uusi taulu tietokantaan %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4584,6 +4584,18 @@ msgstr "Luo uusi taulu tietokantaan %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Vientityyppi"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
#, fuzzy
|
||||
#| msgid "Quick - display only the minimal options to configure"
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr "Nopea asetusten määritys - näytä asetuksia mahdollisimman vähän"
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Custom - display all possible options to configure"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Mukautettu - näytä kaikki mahdolliset asetukset"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4717,9 +4729,11 @@ msgstr "\"bzip-pakkaus\""
|
||||
msgid "Format:"
|
||||
msgstr "Muoto"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Muunnosvaihtoehdot"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4823,6 +4837,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Alusta ohitettavien tietueiden (kyselyjen) määrä"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6164,7 +6182,7 @@ msgstr "ei kuvausta"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Alipalvelimen asetusten määrittely"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr "Vaihda isäntäpalvelin tai muuta sen asetuksia"
|
||||
|
||||
@ -8119,29 +8137,35 @@ msgstr "Kokonäkymän loppu"
|
||||
msgid "Reset slave"
|
||||
msgstr "Nollaa alipalvelin"
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
#: server_replication.php:326
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "SQL-säie %s vain"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "Käynnistä"
|
||||
#: server_replication.php:328
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr "SQL-säie %s vain"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "Lopeta"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "IO-säie %s vain"
|
||||
|
||||
#: server_replication.php:330
|
||||
#: server_replication.php:333
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr "IO-säie %s vain"
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr "Virheiden hallinta:"
|
||||
|
||||
#: server_replication.php:332
|
||||
#: server_replication.php:340
|
||||
#, fuzzy
|
||||
#| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
@ -8149,19 +8173,19 @@ msgstr ""
|
||||
"Isäntä- ja alipalvelin saattavat jäädä yhtenäistämättömiksi, mikäli virheet "
|
||||
"ohitetaan!"
|
||||
|
||||
#: server_replication.php:334
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr "Ohita nykyinen virhe"
|
||||
|
||||
#: server_replication.php:335
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr "Ohita seuraava"
|
||||
|
||||
#: server_replication.php:338
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr "virhettä."
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -10257,6 +10281,12 @@ msgstr "VIEW-arvon nimi"
|
||||
msgid "Rename view to"
|
||||
msgstr "Nimeä taulu uudelleen"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Käynnistä"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "Lopeta"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Display databases in a tree"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
153
po/fr.po
153
po/fr.po
@ -3,8 +3,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"PO-Revision-Date: 2010-12-03 19:36+0200\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-12-08 12:45+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: french <fr@li.org>\n"
|
||||
"Language: fr\n"
|
||||
@ -51,7 +51,7 @@ msgstr "Rechercher"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -68,7 +68,7 @@ msgstr "Rechercher"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -548,7 +548,6 @@ msgstr "Effacer"
|
||||
|
||||
#: db_search.php:260
|
||||
#, php-format
|
||||
#| msgid "Delete tracking data for this table"
|
||||
msgid "Delete the matches for the %s table?"
|
||||
msgstr "Supprimer de la table %s les occurences?"
|
||||
|
||||
@ -846,14 +845,14 @@ msgstr ""
|
||||
"Veuillez vous référer à la %sdocumentation%s pour des façons de contourner "
|
||||
"cette limite."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Le fichier n'a pu être lu"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1387,13 +1386,13 @@ msgstr "Seconde"
|
||||
msgid "Font size"
|
||||
msgstr "Taille du texte"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"La taille du fichier téléchargé dépasse la limite permise par la directive "
|
||||
"upload_max_filesize de php.ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1401,27 +1400,27 @@ msgstr ""
|
||||
"La taille du fichier téléchargé dépasse la limite permise par la directive "
|
||||
"MAX_FILE_SIZE présente dans le formulaire HTML."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Le fichier n'a été que partiellement téléchargé."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Répertoire temporaire manquant."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Erreur lors de l'écriture du fichier sur disque."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Téléchargement arrêté par l'extension."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Erreur inconnue durant le téléchargement."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1814,7 +1813,7 @@ msgstr "L'extension GD est requise pour les graphiques."
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr "L'encodeur JSON est requis pour afficher les conseils de graphique."
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1830,13 +1829,13 @@ msgstr ""
|
||||
"virgule sont manquants.<br />Si vous recevez une page blanche, aucune erreur "
|
||||
"n'a été détectée."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Chargement de la configuration par défaut impossible depuis %1$s"
|
||||
|
||||
# OK
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1844,29 +1843,29 @@ msgstr ""
|
||||
"Le paramètre <tt>$cfg['PmaAbsoluteUri']</tt> DOIT être renseigné dans votre "
|
||||
"fichier de configuration !"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Indice de serveur invalide: %s"
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"Nom d'hôte (hostname) invalide pour le serveur %1$s. Veuillez vérifier votre "
|
||||
"configuration."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Serveur"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
"Le fichier de configuration contient un type d'authentification invalide :"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Vous devriez utiliser %s en version %s ou plus récente."
|
||||
@ -2100,11 +2099,11 @@ msgstr "données"
|
||||
msgid "structure and data"
|
||||
msgstr "structure et données"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr "Rapide - n'afficher qu'un minimum d'options à configurer"
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr "Personnalisée - afficher toutes les options possibles"
|
||||
|
||||
@ -3124,10 +3123,9 @@ msgid "Display servers selection"
|
||||
msgstr "Affiche la liste des serveurs"
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgstr "Nombre maximum de tables affichées dans la liste des tables"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Nombre minimum de tables pour afficher la boîte de filtre de table"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
msgid "String that separates databases into different tree levels"
|
||||
@ -4352,7 +4350,7 @@ msgstr "Le controlpass est vide"
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "Adresse IP incorrecte : %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr "Il manque l'extension %s. Veuillez vérifier votre configuration PHP."
|
||||
@ -4480,23 +4478,36 @@ msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr "Erreur lors du chargement des modules d'exportation !"
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
msgstr "Exportation des bases de données du serveur actuel"
|
||||
#| msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Exportation des bases de données depuis le serveur courant"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, php-format
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgstr "Exportation des tables dans la base de données «%s»"
|
||||
#| msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Exportation des tables depuis la base de données «%s»"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, php-format
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
#| msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Exportation des lignes de la table «%s»"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
msgid "Export Method:"
|
||||
msgstr "Méthode d'exportation:"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
#| msgid "Quick - display only the minimal options to configure"
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr "Rapide - n'afficher qu'un minimum d'options"
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#| msgid "Custom - display all possible options to configure"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Personnalisée - afficher toutes les options possibles"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
msgid "Database(s):"
|
||||
msgstr "Base(s) de données"
|
||||
@ -4602,8 +4613,9 @@ msgstr " «bzippé »"
|
||||
msgid "Format:"
|
||||
msgstr "Format:"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
#: libraries/display_export.lib.php:336
|
||||
#| msgid "Format-Specific Options:"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Options spécifiques au format:"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
@ -4693,6 +4705,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Nombre de lignes à ignorer à partir de la première ligne:"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr "Options spécifiques au format:"
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6030,7 +6046,7 @@ msgstr "pas de description"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Configuration de l'esclave"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr "Changer ou reconfigurer le serveur maître"
|
||||
|
||||
@ -6929,7 +6945,6 @@ msgid "Filter"
|
||||
msgstr "Filtre"
|
||||
|
||||
#: navigation.php:292
|
||||
#| msgid "Alter table order by"
|
||||
msgid "filter tables by name"
|
||||
msgstr "filtrer par nom de table"
|
||||
|
||||
@ -7887,47 +7902,45 @@ msgstr "Arrêter complètement"
|
||||
msgid "Reset slave"
|
||||
msgstr "Réinitialiser l'esclave"
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr "%s seulement le fil d'exécution SQL"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "Démarrer"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "Arrêter"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
msgstr "%s seulement le fil d'exécution des entrées-sorties"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Démarrer seulement le fil d'exécution SQL"
|
||||
|
||||
#: server_replication.php:330
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr "Arrêter seulement le fil d'exécution SQL"
|
||||
|
||||
#: server_replication.php:331
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Démarrer seulement le fil d'exécution des entrées-sorties"
|
||||
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr "Arrêter seulement le fil d'exécution des entrées-sorties"
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr "Gestion des erreurs : "
|
||||
|
||||
#: server_replication.php:332
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
"Ignorer les erreurs peut mener à une désynchronisation entre les serveurs "
|
||||
"maître et esclave !"
|
||||
|
||||
#: server_replication.php:334
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr "Ignorer l'erreur courante"
|
||||
|
||||
#: server_replication.php:335
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr "Ignorer les prochaines"
|
||||
|
||||
#: server_replication.php:338
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr "erreurs."
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -8761,20 +8774,18 @@ msgid "Query type"
|
||||
msgstr "Type de requête"
|
||||
|
||||
#: server_status.php:709 server_status.php:710
|
||||
#, fuzzy
|
||||
#| msgid "Show query box"
|
||||
msgid "Show query chart"
|
||||
msgstr "Montrer zone SQL"
|
||||
msgstr "Afficher le graphique des requêtes"
|
||||
|
||||
#: server_status.php:714 server_status.php:715
|
||||
#, fuzzy
|
||||
#| msgid "Hide query box"
|
||||
msgid "Hide query chart"
|
||||
msgstr "Cacher zone SQL"
|
||||
msgstr "Cacher le graphique des requêtes"
|
||||
|
||||
#: server_status.php:717
|
||||
msgid "Note: Generating the query chart can take a long time."
|
||||
msgstr ""
|
||||
"Remarque : la génération du graphique des requêtes peut prendre un certain "
|
||||
"temps."
|
||||
|
||||
#: server_status.php:855
|
||||
msgid "Replication status"
|
||||
@ -9926,6 +9937,12 @@ msgstr "Nom de la vue"
|
||||
msgid "Rename view to"
|
||||
msgstr "Changer le nom de la vue pour"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Démarrer"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "Arrêter"
|
||||
|
||||
#~ msgid "Display table filter"
|
||||
#~ msgstr "Montrer le filtre de table"
|
||||
|
||||
|
||||
134
po/gl.po
134
po/gl.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-07-21 14:50+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: galician <gl@li.org>\n"
|
||||
@ -51,7 +51,7 @@ msgstr "Procurar"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -68,7 +68,7 @@ msgstr "Procurar"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -867,14 +867,14 @@ msgstr ""
|
||||
"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %"
|
||||
"sdocumentación%s para averiguar como evitar este límite."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Non se puido ler o ficheiro"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1497,13 +1497,13 @@ msgstr "por segundo"
|
||||
msgid "Font size"
|
||||
msgstr "Tamaño da letra"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"O tamaño do ficheiro enviado excede a directiva upload_max_filesize de php."
|
||||
"ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1511,27 +1511,27 @@ msgstr ""
|
||||
"O tamaño do ficheiro excede a directiva MAX_FILE_SIZE que se especificou no "
|
||||
"formulario HTML."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "O ficheiro enviado só se recibiu parcialmente."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Falta un directorio temporal."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Non se puido escribir no disco."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Detívose o envío do ficheiro por causa do engadido."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Erro descoñecido ao enviar o ficheiro."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1938,7 +1938,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1954,13 +1954,13 @@ msgstr ""
|
||||
"casos simplemente faltan unha aspa ou un ponto e vírcula <br/>Se recibe unha "
|
||||
"páxina en branco é que todo está ben."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Non se puido cargar a configuración desde: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1968,28 +1968,28 @@ msgstr ""
|
||||
"A directiva <tt>$cfg['PmaAbsoluteUri']</tt> DEBE estar asignada no seu "
|
||||
"ficheiro de configuración."
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "O índice do servidor non é válido: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"O nome de servidor non é válido para o servidor %1$s. Revise a configuración."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Servidor"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Na configuración indicouse un método de autenticación que non válido::"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Debería actualizar a %s %s ou posterior."
|
||||
@ -2231,11 +2231,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Estrutura e datos"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3332,7 +3332,7 @@ msgstr "Mostrar a selección de servidores"
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Número máximo de táboas que se mostran na listaxe de táboas"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4619,7 +4619,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "O enderezo IP é incorrecto: %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4751,19 +4751,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Permite bloquear táboas do fío en uso"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Crear unha táboa nova na base de datos %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Crear unha táboa nova na base de datos %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4772,6 +4772,16 @@ msgstr "Crear unha táboa nova na base de datos %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Tipo de exportación"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Customize default export options"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Personalizar as opcións de exportación por omisión"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4905,9 +4915,11 @@ msgstr "comprimido no formato \"bzip\""
|
||||
msgid "Format:"
|
||||
msgstr "Formato"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Opcións de transformación"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -5011,6 +5023,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Número de rexistros (procuras) que se ignoran desde o comezo"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6357,7 +6373,7 @@ msgstr "sen descrición"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Configuración do escravo"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr "Mudar ou reconfigurar o servidor principal"
|
||||
|
||||
@ -8314,29 +8330,35 @@ msgstr "Detención completa"
|
||||
msgid "Reset slave"
|
||||
msgstr "Reiniciar o escravo"
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
#: server_replication.php:326
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Fío SQL %s só"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "Inicio"
|
||||
#: server_replication.php:328
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr "Fío SQL %s só"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "Detención"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Fío de E/S %s só"
|
||||
|
||||
#: server_replication.php:330
|
||||
#: server_replication.php:333
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr "Fío de E/S %s só"
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr "Xestión de erros:"
|
||||
|
||||
#: server_replication.php:332
|
||||
#: server_replication.php:340
|
||||
#, fuzzy
|
||||
#| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
@ -8344,19 +8366,19 @@ msgstr ""
|
||||
"Omitir o(s) erro(s) podería conducir a que o principal e o escravo non "
|
||||
"estean sincronizados."
|
||||
|
||||
#: server_replication.php:334
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr "Omitir este erro"
|
||||
|
||||
#: server_replication.php:335
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr "Omitir os seguintes"
|
||||
|
||||
#: server_replication.php:338
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr "erros."
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -10459,6 +10481,12 @@ msgstr "Nome da VISTA"
|
||||
msgid "Rename view to"
|
||||
msgstr "Mudar o nome da táboa para"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Inicio"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "Detención"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Display databases in a tree"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
150
po/he.po
150
po/he.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: hebrew <he@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "חיפוש"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -63,7 +63,7 @@ msgstr "חיפוש"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -857,14 +857,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "נכשל בקריאת הקובץ"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1464,37 +1464,37 @@ msgstr "לשנייה"
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
@ -1885,7 +1885,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1899,37 +1899,37 @@ msgstr ""
|
||||
"ישירות בעזרת הקישור מתחת להודעה זו וקרא את הודעת PHP שהינך מקבל. ברוב המילים "
|
||||
"גרש או נקודה-פסיק חסרים במקום כלשהו.<br /> אם הינך מקבל דף ריק, הכל בסדר."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "שרת"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "אתה צריך לשדרג אל %s %s לפחות."
|
||||
@ -2170,11 +2170,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "מבנה ומידע"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3205,7 +3205,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4331,7 +4331,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4458,19 +4458,21 @@ msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Cannot log in to the MySQL server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "נכשל בכניסה לשרת MySQL"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "יצירת טבלה חדשה על מאגר נתונים %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "יצירת טבלה חדשה על מאגר נתונים %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4479,6 +4481,14 @@ msgstr "יצירת טבלה חדשה על מאגר נתונים %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "סוג ייצוא"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4603,9 +4613,10 @@ msgstr "\"bzipped\""
|
||||
msgid "Format:"
|
||||
msgstr "תבנית"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
msgid "Format-specific options:"
|
||||
msgstr "לתבנית זאת אין אפשרויות"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4686,6 +4697,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5964,7 +5979,7 @@ msgstr "ללא תיאור"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7754,46 +7769,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "שבת"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "מבנה בלבד"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "מבנה בלבד"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9629,6 +9645,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "שינוי שם טבלה אל"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "שבת"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
146
po/hi.po
146
po/hi.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-05-21 05:48+0200\n"
|
||||
"Last-Translator: <u4663530@anu.edu.au>\n"
|
||||
"Language-Team: hindi <hi@li.org>\n"
|
||||
@ -49,7 +49,7 @@ msgstr "खोजें"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -66,7 +66,7 @@ msgstr "खोजें"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -862,14 +862,14 @@ msgstr ""
|
||||
"आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s "
|
||||
"दोकुमेंताशन%s पढ़ें."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "फाइल पढ़ी नहीं जा सकती. "
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1424,37 +1424,37 @@ msgstr "सेकंड"
|
||||
msgid "Font size"
|
||||
msgstr "फ़ॉन्ट का आकार"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr "अपलोड की गई फ़ाइल php.ini में upload_max_filesize निर्देश से अधिक है."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr "अपलोड की गई फ़ाइल, HTML के रूप में निर्दिष्ट MAX_FILE_SIZE की सीमा से अधिक है."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "अपलोड की गई फ़ाइल केवल आंशिक रूप से अपलोड की गयी है."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "एक अस्थायी फ़ोल्डर गुम है."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "डिस्क में फ़ाइल लिखने में असफल"
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "फ़ाइल एक्सटेंशन द्वारा अपलोड रोका गया है."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1844,7 +1844,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1854,37 +1854,37 @@ msgid ""
|
||||
"is fine."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
@ -2119,11 +2119,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "संरचना और डाटा"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3132,7 +3132,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4249,7 +4249,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4375,17 +4375,19 @@ msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Cannot log in to the MySQL server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "MySQL सर्वर में प्रवेश नहीं कर सकते"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr " डाटाबेस मे नया टेबल बनाओ"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr " डाटाबेस मे नया टेबल बनाओ"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4394,6 +4396,14 @@ msgstr " डाटाबेस मे नया टेबल बनाओ"
|
||||
msgid "Export Method:"
|
||||
msgstr "निर्यात"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4503,9 +4513,11 @@ msgstr ""
|
||||
msgid "Format:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Column-specific privileges"
|
||||
msgid "Format-specific options:"
|
||||
msgstr " केवल कोलम के प्रिविलेज"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4593,6 +4605,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5844,7 +5860,7 @@ msgstr ""
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7586,45 +7602,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "केवल संरचना"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "केवल संरचना"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
|
||||
148
po/hr.po
148
po/hr.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: croatian <hr@li.org>\n"
|
||||
@ -51,7 +51,7 @@ msgstr "Traži"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -68,7 +68,7 @@ msgstr "Traži"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -873,14 +873,14 @@ msgstr ""
|
||||
"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %"
|
||||
"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Datoteku nije moguće pročitati"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1499,13 +1499,13 @@ msgstr "po sekundi"
|
||||
msgid "Font size"
|
||||
msgstr "Veličina fonta"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"Učitana datoteka nadmašuje uputu upload_max_filesize (najveća veličina "
|
||||
"datoteke) u datoteci php.ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1513,27 +1513,27 @@ msgstr ""
|
||||
"Učitana datoteka nadmašuje uputu MAX_FILE_SIZE (najveća veličina datoteke), "
|
||||
"određenu u HTML obliku."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Učitana datoteka bila je djelomično učitana."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Nedostaje mapa privremene pohrane."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Zapisivanje datoteke na disk nije uspjelo."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Učitavanje datoteke prekinuto je uslijed ekstenzije."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Nepoznata pogreška tijekom učitavanja datoteke."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1928,7 +1928,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1944,13 +1944,13 @@ msgstr ""
|
||||
"većini slučajeva na nekom mjestu nedostaje znak navodnika ili točke-zareza."
|
||||
"<br />Ako se prikaže prazna stranica, sve je u redu."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1958,29 +1958,29 @@ msgstr ""
|
||||
"Direktiva <tt>$cfg['PmaAbsoluteUri']</tt> MORA BITI postavljena u vašoj "
|
||||
"konfiguracijskoj datoteci!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Neispravan indeks poslužitelja: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"Neispravan naziv za poslužitelj %1$s. Molimo, pregledajte svoju "
|
||||
"konfiguraciju."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Poslužitelj"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Neispravan komplet načina provjere vjerodostojnosti u konfiguraciji:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Trebali biste nadograditi na %s %s ili kasniju."
|
||||
@ -2221,11 +2221,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Strukturu i podatke"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3271,7 +3271,7 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Broj otvorenih tablica."
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4410,7 +4410,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4542,19 +4542,19 @@ msgstr "Nije moguće učitati dodatke za izvoz. Provjerite svoju instalaciju!"
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Dopušta zaključavanje tablica u trenutnoj grani."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Izradi novu tablicu u bazi podataka %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Izradi novu tablicu u bazi podataka %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4563,6 +4563,15 @@ msgstr "Izradi novu tablicu u bazi podataka %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Vrsta izvoza"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Opcije izvoza baze podataka"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4694,9 +4703,11 @@ msgstr "\"bzipano\""
|
||||
msgid "Format:"
|
||||
msgstr "Oblikovanje"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Opcije preoblikovanja"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4792,6 +4803,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Broj zapisa (upita) koje je potrebno preskočiti od početka"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6127,7 +6142,7 @@ msgstr "bez opisa"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -8044,46 +8059,47 @@ msgstr "Puni tekst"
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Sub"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Samo strukturu"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Samo strukturu"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -10055,6 +10071,10 @@ msgstr "Naziv prikaza"
|
||||
msgid "Rename view to"
|
||||
msgstr "Preimenuj tablicu u"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Sub"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
149
po/hu.po
149
po/hu.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-09-14 20:45+0200\n"
|
||||
"Last-Translator: KAMI <kami911@gmail.com>\n"
|
||||
"Language-Team: hungarian <hu@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Keresés"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Keresés"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -872,14 +872,14 @@ msgstr ""
|
||||
"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a %"
|
||||
"sdokumentációban%s a korlátozás feloldásának."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Nem lehetett beolvasni a fájlt"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1502,13 +1502,13 @@ msgstr "másodpercenként"
|
||||
msgid "Font size"
|
||||
msgstr "Betűméret"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"A feltöltött fájl mérete túllépi a php.ini fájlban megadott "
|
||||
"upload_max_filesize utasítást."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1516,27 +1516,27 @@ msgstr ""
|
||||
"A feltöltött fájl mérete túllépi a HTML űrlapban megadott MAX_FILE_SIZE "
|
||||
"utasítást."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "A feltöltött fájl csak részben került feltöltésre."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Hiányzik egy ideiglenes mappa."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Nem sikerült lemezre írni a fájlt."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "A fájlfeltöltés kiterjesztés alapján leállt."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Ismeretlen hiba a fájlfeltöltésben."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1936,7 +1936,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1952,14 +1952,14 @@ msgstr ""
|
||||
"vagy pontosvessző hiányzik valahol.<br />Ha üres oldalt kap, akkor minden "
|
||||
"rendben."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
"Nem lehetett betölteni az alapértelmezett konfigurációt innen: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1967,27 +1967,27 @@ msgstr ""
|
||||
"A <tt>$cfg['PmaAbsoluteUri']</tt> utasítás értékét a konfigurációs fájlban "
|
||||
"KELL megadni!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Érvénytelen szerverindex: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "A(z) %1$s szerver hosztneve érvénytelen. Ellenőrizze a beállításokat."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Szerver"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Érvénytelen hitelesítési mód került beállításra a konfigurációban:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Frissítenie kell %s %s vagy újabb verzióra."
|
||||
@ -2229,11 +2229,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Szerkezet és adatok"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3321,7 +3321,7 @@ msgstr "A választható szerverek megjelenítése"
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "A táblalistában megjelenítendő táblák száma"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4606,7 +4606,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "A következő IP-cím hibás: %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4741,19 +4741,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "A jelenlegi szálon engedélyezi a táblák blokkolását."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Új tábla létrehozása a(z) %s adatbázisban"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Új tábla létrehozása a(z) %s adatbázisban"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4762,6 +4762,16 @@ msgstr "Új tábla létrehozása a(z) %s adatbázisban"
|
||||
msgid "Export Method:"
|
||||
msgstr "Exportálás típusa"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Customize default export options"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Az exportálás alapértelmezett beállításainak testreszabása"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4893,9 +4903,11 @@ msgstr "\"bzip tömörítés\""
|
||||
msgid "Format:"
|
||||
msgstr "Formátum"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Átalakítás beállításai"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4992,6 +5004,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Az elejétől kihagyandó rekordok (lekérdezések) száma"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6332,7 +6348,7 @@ msgstr "nincs leírás"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Szerverbeállítások"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -8297,46 +8313,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Indítás"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Csak a szerkezet"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Csak a szerkezet"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -10423,6 +10440,10 @@ msgstr "NÉZET neve"
|
||||
msgid "Rename view to"
|
||||
msgstr "Nézet átnevezése"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Indítás"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Display databases in a tree"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
147
po/id.po
147
po/id.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-09-16 05:35+0200\n"
|
||||
"Last-Translator: Azhari Harahap <azhari.harahap@yahoo.com>\n"
|
||||
"Language-Team: indonesian <id@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Cari"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Cari"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -854,14 +854,14 @@ msgstr ""
|
||||
"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat %"
|
||||
"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Gagal membaca File"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1472,39 +1472,39 @@ msgstr "per detik"
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"File yang di upload melewati ketentuan upload_max_filesize dalam php.ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
"File yang di upload melewati MAX_FILE_SIZE yang ditentukan dalam form HTML."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "File yang di upload hanya ter-upload sebagian."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Folder sementara tidak ditemukan."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Gagal menulis file ke disk"
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Upload file dihentikan oleh ekstensi."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Kesalahan yang tidak diketahui dalam upload file."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
@ -1894,7 +1894,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1910,39 +1910,39 @@ msgstr ""
|
||||
"ketinggalan.<br />Jika muncul sebuah halaman kosong, artinya tidak ada "
|
||||
"masalah."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Tidak dapat memuat konfigurasi default dari: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr ""
|
||||
"Directif <tt>$cfg['PmaAbsoluteUri']</tt> WAJIB diset dalam file konfigurasi!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Server"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Disarankan untuk meng-update ke %s versi %s atau lebih baru."
|
||||
@ -2182,11 +2182,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Struktur dan data"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3221,7 +3221,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4351,7 +4351,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4483,19 +4483,19 @@ msgstr "Tidak dapat memuat plugin export, silahkan periksa instalasi Anda!"
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Mengizinkan untuk mengunci tabel dalam Thread yang lagi berjalan."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Ciptakan tabel baru pada database %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Ciptakan tabel baru pada database %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4504,6 +4504,14 @@ msgstr "Ciptakan tabel baru pada database %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Jenis Ekspor"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4630,9 +4638,11 @@ msgstr "\"Dikompress dengan BZip\""
|
||||
msgid "Format:"
|
||||
msgstr "Format"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Pilihan transformasi"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4713,6 +4723,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6021,7 +6035,7 @@ msgstr "tanpa keterangan"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7924,46 +7938,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Sabtu"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Struktur saja"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Struktur saja"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9810,6 +9825,10 @@ msgstr "Nama VIEW"
|
||||
msgid "Rename view to"
|
||||
msgstr "Ubah nama tabel menjadi "
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Sabtu"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
157
po/it.po
157
po/it.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-09-24 10:00+0200\n"
|
||||
"Last-Translator: Giovanni Uccio <giovanni.uccio@gmail.com>\n"
|
||||
"Language-Team: italian <it@li.org>\n"
|
||||
@ -51,7 +51,7 @@ msgstr "Cerca"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -68,7 +68,7 @@ msgstr "Cerca"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -848,14 +848,14 @@ msgstr ""
|
||||
"Fai riferimento alla documentazione %sdocumentation%s Per i modi di aggirare "
|
||||
"questo limite."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Il file non può essere letto"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1404,38 +1404,38 @@ msgstr "Secondo"
|
||||
msgid "Font size"
|
||||
msgstr "Dimensione font"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr "Il file caricato eccede il parametro upload_max_filesize in php.ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
"Il file caricato eccede il parametro MAX_FILE_SIZE specificato nel form HTML."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Il file è stato solo parzialmente caricato."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Non trovo la cartella temporanea."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Non riesco a scrivere il file su disco."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Caricamento del file interrotto per estensione errata."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Errore sconosciuto nel caricamento del file."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1831,7 +1831,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1847,12 +1847,12 @@ msgstr ""
|
||||
"maggior parte dei casi ci sono un apostrofo o una virgoletta mancanti.<br /"
|
||||
">Se ricevete una pagina bianca, allora è tutto a posto."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Non posso caricare la configurazione predefinita da: %1$s"
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1860,27 +1860,27 @@ msgstr ""
|
||||
"La direttiva <tt>$cfg['PmaAbsoluteUri']</tt> DEVE essere impostata nel file "
|
||||
"di configurazione!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Indice server non valido: %s"
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"Nome host per il server %1$s non valido. Controlla la tua configurazione."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Server"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Metodo di autenticazione settato nella configurazione non valido:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Si dovrebbe aggiornare %s alla versione %s o successiva."
|
||||
@ -2116,11 +2116,11 @@ msgstr "dati"
|
||||
msgid "structure and data"
|
||||
msgstr "Struttura e dati"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr "Rapido - mostra solo le opzioni minime di configurazione"
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr "Personalizzato - mostra tutte le possibili opzioni di configurazione"
|
||||
|
||||
@ -3184,7 +3184,7 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Il numero di tabelle che sono aperte."
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4340,7 +4340,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr "L'estensione %s è mancante. Controlla la tua configurazione di PHP."
|
||||
@ -4467,23 +4467,37 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Sto esportando i database dal server corrente"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, php-format
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Sto esportando le tabelle nel database \"%s\""
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, php-format
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Sto esportando le colonne nella tabella \"%s\""
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
msgid "Export Method:"
|
||||
msgstr "Metodo di esportazione:"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
#, fuzzy
|
||||
#| msgid "Quick - display only the minimal options to configure"
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr "Rapido - mostra solo le opzioni minime di configurazione"
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Custom - display all possible options to configure"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Personalizzato - mostra tutte le possibili opzioni di configurazione"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
msgid "Database(s):"
|
||||
msgstr "Database"
|
||||
@ -4609,9 +4623,11 @@ msgstr "\"compresso con bzip\""
|
||||
msgid "Format:"
|
||||
msgstr "Formato"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Opzioni di Transformation"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4715,6 +4731,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Numero di record (query) da saltare a partire dall'inizio"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6068,7 +6088,7 @@ msgstr "nessuna Description"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Configurazione del server"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -8010,46 +8030,47 @@ msgstr "Pieno spegnimento"
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Avvio"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Solo struttura"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Solo struttura"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -10033,6 +10054,10 @@ msgstr "Nome VISTA"
|
||||
msgid "Rename view to"
|
||||
msgstr "Rinomina la tabella in"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Avvio"
|
||||
|
||||
#~ msgid "Display table filter"
|
||||
#~ msgstr "Visualizza filtri colonne"
|
||||
|
||||
|
||||
147
po/ja.po
147
po/ja.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-03-12 11:22+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: japanese <jp@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "検索"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "検索"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -861,14 +861,14 @@ msgstr ""
|
||||
"アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ"
|
||||
"メント%s をご覧ください"
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "ファイルを読み込めませんでした"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1484,13 +1484,13 @@ msgstr "/秒"
|
||||
msgid "Font size"
|
||||
msgstr "フォントサイズ"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"アップロードしたファイルは php.ini に指定されている upload_max_filesize ディ"
|
||||
"レクティブの値を超えています。"
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1498,27 +1498,27 @@ msgstr ""
|
||||
"アップロードしたファイルは HTML フォームに指定されている MAX_FILE_SIZE ディレ"
|
||||
"クティブの値を超えています。"
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "アップロードしたファイルは一部分しかアップロードできませんでした。"
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "一時フォルダが見つかりません。"
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "ファイルをディスクに書き込めません。"
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "拡張のせいでファイルのアップロードが中断されました。"
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "ファイルのアップロード中に予期しないエラーが発生しました。"
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1914,7 +1914,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1928,13 +1928,13 @@ msgstr ""
|
||||
"で PHP のエラーメッセージを確認してください。たいていの場合はどこかに引用符や"
|
||||
"セミコロンの抜けがあります。<br />空白のページが表示されれば問題なしです"
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "デフォルトの設定を読み込めませんでした: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1942,27 +1942,27 @@ msgstr ""
|
||||
"<tt>$cfg['PmaAbsoluteUri']</tt> はかならず設定ファイルで設定する必要がありま"
|
||||
"す!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "サーバのインデックスが不正です: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "サーバ %1$s のホスト名が不正です。設定を確認してください"
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "サーバ"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "設定ファイルに無効な認証方法が指定されています:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "%s を %s 以降にアップグレードしてください"
|
||||
@ -2200,11 +2200,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "構造とデータ"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3233,7 +3233,7 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "開いているテーブルの数"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4361,7 +4361,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4493,19 +4493,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "現在のスレッドのテーブルロックを許可する"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "データベース %s に新しいテーブルを作成する"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "データベース %s に新しいテーブルを作成する"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4514,6 +4514,14 @@ msgstr "データベース %s に新しいテーブルを作成する"
|
||||
msgid "Export Method:"
|
||||
msgstr "エクスポート形式"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4645,9 +4653,11 @@ msgstr "\"bzip 形式\""
|
||||
msgid "Format:"
|
||||
msgstr "フォーマット"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "変換オプション"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4745,6 +4755,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "先頭から数えたスキップするレコード(クエリ)の数"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6078,7 +6092,7 @@ msgstr "説明がありません"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7968,46 +7982,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "土"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "構造のみ"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "構造のみ"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9935,6 +9950,10 @@ msgstr "VIEW の名前"
|
||||
msgid "Rename view to"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "土"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
149
po/ka.po
149
po/ka.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: georgian <ka@li.org>\n"
|
||||
@ -49,7 +49,7 @@ msgstr "ძებნა"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -66,7 +66,7 @@ msgstr "ძებნა"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -871,14 +871,14 @@ msgstr ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "ფაილის წაკითხვა ვერ მოხერხდა"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1497,12 +1497,12 @@ msgstr "წამში"
|
||||
msgid "Font size"
|
||||
msgstr "შრიფტის ზომა"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1510,27 +1510,27 @@ msgstr ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "The uploaded file was only partially uploaded."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Missing a temporary folder."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Failed to write file to disk."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "File upload stopped by extension."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Unknown error in file upload."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1931,7 +1931,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1947,13 +1947,13 @@ msgstr ""
|
||||
"semicolon is missing somewhere.<br />If you receive a blank page, everything "
|
||||
"is fine."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Could not load default configuration from: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1961,27 +1961,27 @@ msgstr ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Invalid server index: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "Invalid hostname for server %1$s. Please review your configuration."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "სერვერი"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Invalid authentication method set in configuration:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "You should upgrade to %s %s or later."
|
||||
@ -2223,11 +2223,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "სტრუქტურა და მონაცემები"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3309,7 +3309,7 @@ msgstr "Display servers selection"
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Maximum number of tables displayed in table list"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4564,7 +4564,7 @@ msgstr "Empty phpMyAdmin control user password while using pmadb"
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "IP მისამართი არასწორია: %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4695,19 +4695,19 @@ msgstr "Could not load export plugins, please check your installation!"
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Allows locking tables for the current thread."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Create new table on database %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Create new table on database %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4716,6 +4716,16 @@ msgstr "Create new table on database %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Export type"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Customize default export options"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Customize default export options"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4847,9 +4857,11 @@ msgstr "\"bzip-ით დაარქივებული\""
|
||||
msgid "Format:"
|
||||
msgstr "ფორმატი"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "გარდაქმნის პარამეტრები"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4945,6 +4957,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Number of records (queries) to skip from start"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6282,7 +6298,7 @@ msgstr "no description"
|
||||
msgid "Slave configuration"
|
||||
msgstr "სერვერის კონფიგურაცია"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -8224,46 +8240,47 @@ msgstr "Fulltext"
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Startup"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "მხოლოდ სტრუქტურა"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "მხოლოდ სტრუქტურა"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -10325,6 +10342,10 @@ msgstr "VIEW name"
|
||||
msgid "Rename view to"
|
||||
msgstr "Rename table to"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Startup"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Display databases in a tree"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
147
po/ko.po
147
po/ko.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-06-16 18:18+0200\n"
|
||||
"Last-Translator: <cihar@nvyu.net>\n"
|
||||
"Language-Team: korean <ko@li.org>\n"
|
||||
@ -49,7 +49,7 @@ msgstr "검색"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -66,7 +66,7 @@ msgstr "검색"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -851,14 +851,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "파일을 읽을 수 없습니다"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1415,39 +1415,39 @@ msgstr "초"
|
||||
msgid "Font size"
|
||||
msgstr "글꼴 크기"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"php.ini 파일에 지정된 upload_max_filesize 값보다 더 큰 파일이 업로드되었습니"
|
||||
"다."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr "HTML 폼에 지정된 MAX_FILE_SIZE 값보다 더 큰 파일이 업로드되었습니다."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "임시 폴더가 없습니다."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "디스크 쓰기에 실패했습니다."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1834,7 +1834,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1849,37 +1849,37 @@ msgstr ""
|
||||
"미콜론(;)이 빠져있는 경우가 종종 있습니다.<br />만약 아무것도 보이지 않으면, "
|
||||
"정상적인 것입니다."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr "환경설정 파일에서 <tt>$cfg['PmaAbsoluteUri']</tt> 주소를 기입하십시오!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "서버"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
@ -2116,11 +2116,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "구조와 데이터 모두"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3144,7 +3144,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4278,7 +4278,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4404,19 +4404,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "데이터베이스 %s에 새로운 테이블을 만듭니다."
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "데이터베이스 %s에 새로운 테이블을 만듭니다."
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4425,6 +4425,14 @@ msgstr "데이터베이스 %s에 새로운 테이블을 만듭니다."
|
||||
msgid "Export Method:"
|
||||
msgstr "내보내기"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4549,9 +4557,11 @@ msgstr "\"bz 압축\""
|
||||
msgid "Format:"
|
||||
msgstr "Format"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Column-specific privileges"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "열(칼럼)에 관한 권한"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4632,6 +4642,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5894,7 +5908,7 @@ msgstr "설명이 없습니다"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7670,46 +7684,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "토"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "구조만"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "구조만"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9545,6 +9560,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "테이블 이름 바꾸기"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "토"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
142
po/lt.po
142
po/lt.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-11-27 22:17+0200\n"
|
||||
"Last-Translator: Rytis SlatkeviÄius <rytis.s@gmail.com>\n"
|
||||
"Language-Team: lithuanian <lt@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Paieška"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Paieška"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -844,14 +844,14 @@ msgstr ""
|
||||
"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti %"
|
||||
"sdokumentaciją%s būdams kaip apeiti šį apribojimą."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Negalima perskaityti failo"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1379,11 +1379,11 @@ msgstr "Sekundės"
|
||||
msgid "Font size"
|
||||
msgstr "Šrifto dydis"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr "Įkeltas failas viršija upload_max_filesize nurodymą faile php.ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1391,27 +1391,27 @@ msgstr ""
|
||||
"Įkeltas failas viršija MAX_FILE_SIZE nurodymą kuris buvo nustatytas HTML "
|
||||
"formoje."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Įkeliamas failas buvo tik dalinai įkeltas."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Trūksta laikino katalogo."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Nepavyko įrašyti failo į diską."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Failo įkėlimas sustabdytas dėl failo plėtinio."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Nežinoma klaida failų įkėlime."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1804,7 +1804,7 @@ msgstr "GD plėtinys reikalingas diagramoms braižyti."
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr "JSON koduoklis reikalingas diagramos paaiškinimams."
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1820,38 +1820,38 @@ msgstr ""
|
||||
"kabliataškio.<br />Jeigu išvedamas tuščias naršyklės langas - viskas "
|
||||
"tvarkoje."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Nepavyko užkrauti numatytų nustatymų failo iš: %1$s"
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr ""
|
||||
"BŪTINA nustatymų faile įrašyti <tt>$cfg['PmaAbsoluteUri']</tt> reikšmę!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Blogas serverio indeksas: %s"
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "Blogas serverio %1$s hostname. Prašome peržiūrėti nustatymus."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Serveris"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Blogai nustatytas identifikavimo metodas nustatymuose:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Rekomenduojame atnaujint %s iki %s ar vėlesnės versijos."
|
||||
@ -2084,11 +2084,11 @@ msgstr "duomenys"
|
||||
msgid "structure and data"
|
||||
msgstr "struktūra ir duomenys"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr "Greitas - rodomi tik minimalūs nustatymai"
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr "Individualizuotas - rodyti visus nustatymus"
|
||||
|
||||
@ -3099,7 +3099,7 @@ msgstr "Rodyti serverių pasirinkimą"
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Maksimalus skaičius lentelių rodomų lentelių sąraše"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4240,7 +4240,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "Neteisingas IP adresas: %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr "%s plėtinys nerastas. Prašome patikrinti PHP nustatymus."
|
||||
@ -4365,23 +4365,39 @@ msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr "Nepavyko įkelti eksportuojamų plėtinių, prašome patikrinti įdiegtį!"
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
#, fuzzy
|
||||
#| msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Eksportuojamos duomenų bazės šiame serveryje"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, php-format
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Eksportuojamos lentelės duomenų bazėje „%s“"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, php-format
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Eksportuojamos eilutės lentelėje „%s“"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
msgid "Export Method:"
|
||||
msgstr "Eksporto tipas:"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
#, fuzzy
|
||||
#| msgid "Quick - display only the minimal options to configure"
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr "Greitas - rodomi tik minimalūs nustatymai"
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Custom - display all possible options to configure"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Individualizuotas - rodyti visus nustatymus"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
msgid "Database(s):"
|
||||
msgstr "Duomenų bazė(s)"
|
||||
@ -4486,8 +4502,10 @@ msgstr "bzip"
|
||||
msgid "Format:"
|
||||
msgstr "Formatas:"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Format-Specific Options:"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Formato specifiniai nustatymai:"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
@ -4575,6 +4593,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Praleidžiamų įrašų (eilučių) skaičius, pradedant nuo įrašo:"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr "Formato specifiniai nustatymai:"
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5854,7 +5876,7 @@ msgstr "Aprašymo nėra"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Pavaldžiojo (Slave) serverio konfigūracija"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr "Pakeisti arba perkonfigūruoti pagrindinį (master) serverį"
|
||||
|
||||
@ -7727,47 +7749,53 @@ msgstr "Pilnas išjungimas"
|
||||
msgid "Reset slave"
|
||||
msgstr "Paleisti iš naujo pavaldųjį serverį (reset slave)"
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
#: server_replication.php:326
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Tik SQL gija %s"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "Paleisti"
|
||||
#: server_replication.php:328
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr "Tik SQL gija %s"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "Sustabdyti"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Tik IO %s gija"
|
||||
|
||||
#: server_replication.php:330
|
||||
#: server_replication.php:333
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr "Tik IO %s gija"
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr "Klaidų valdymas:"
|
||||
|
||||
#: server_replication.php:332
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
"Klaidų praleidinėjimas gali nuvesti iki nesusinchronizavimo tarp pagrindinio "
|
||||
"ir jam pavaldžių serverių!"
|
||||
|
||||
#: server_replication.php:334
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr "Praleisti šią klaidą"
|
||||
|
||||
#: server_replication.php:335
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr "Praleisti sekančius"
|
||||
|
||||
#: server_replication.php:338
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr "klaidos."
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9687,6 +9715,12 @@ msgstr "VIEW pavadinimas"
|
||||
msgid "Rename view to"
|
||||
msgstr "Pervadinti lentelę į"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Paleisti"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "Sustabdyti"
|
||||
|
||||
#~ msgid "Display table filter"
|
||||
#~ msgstr "Rodyti lentelių filtrą"
|
||||
|
||||
|
||||
147
po/lv.po
147
po/lv.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: latvian <lv@li.org>\n"
|
||||
@ -49,7 +49,7 @@ msgstr "Meklēt"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -66,7 +66,7 @@ msgstr "Meklēt"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -864,14 +864,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Nevar nolasīt failu"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1473,37 +1473,37 @@ msgstr "sekundē"
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
@ -1896,7 +1896,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1911,12 +1911,12 @@ msgstr ""
|
||||
"par kļūdām. Vairākumā gadījumu kaut kur pietrukst pēdiņa vai semikols.<br /"
|
||||
">Ja redzat tukšu lapu, viss ir kārtībā."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1924,26 +1924,26 @@ msgstr ""
|
||||
"<tt>$cfg['PmaAbsoluteUri']</tt> direktīvai ir JĀBŪT nodefinētai Jūsu "
|
||||
"konfigurācijas failā!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Serveris"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Jums ir jāuzliek %s %s vai jaunāks."
|
||||
@ -2182,11 +2182,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Struktūra un dati"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3214,7 +3214,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4339,7 +4339,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4468,19 +4468,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Ļauj bloķēt tabulas tekošajai darbībai."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Izveidot jaunu tabulu datubāzē %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Izveidot jaunu tabulu datubāzē %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4489,6 +4489,14 @@ msgstr "Izveidot jaunu tabulu datubāzē %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Eksporta veids"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4613,9 +4621,11 @@ msgstr "Arhivēts ar bzip"
|
||||
msgid "Format:"
|
||||
msgstr "Formats"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Transformācijas opcijas"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4696,6 +4706,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5980,7 +5994,7 @@ msgstr "Bez apraksta"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7855,46 +7869,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "S"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Tikai struktūra"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Tikai struktūra"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9742,6 +9757,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "Pārsaukt tabulu uz"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "S"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
147
po/mk.po
147
po/mk.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: macedonian_cyrillic <mk@li.org>\n"
|
||||
@ -49,7 +49,7 @@ msgstr "Пребарување"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -66,7 +66,7 @@ msgstr "Пребарување"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -864,14 +864,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Податотеката не е можно да се прочита"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1471,37 +1471,37 @@ msgstr "во секунда"
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
@ -1897,7 +1897,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1913,12 +1913,12 @@ msgstr ""
|
||||
"ги добивате. Во поголемиот број на случаи, најчесто недостасува наводник или "
|
||||
"точка запирка.<br />Ако добиете празна страница, се е во ред."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1926,26 +1926,26 @@ msgstr ""
|
||||
"<tt>$cfg['PmaAbsoluteUri']</tt> директивата МОРА да биде подесена во "
|
||||
"конфигурациската податотека!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Сервер"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
@ -2187,11 +2187,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Структура и податоци"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3224,7 +3224,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4353,7 +4353,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4484,19 +4484,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Дозволува заклучување на табели на тековните процеси."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Креирај нова табела во базата на податоци %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Креирај нова табела во базата на податоци %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4505,6 +4505,14 @@ msgstr "Креирај нова табела во базата на подато
|
||||
msgid "Export Method:"
|
||||
msgstr "Тип на извоз"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4629,9 +4637,11 @@ msgstr "\"bzip\""
|
||||
msgid "Format:"
|
||||
msgstr "Формат"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Опции на трансформацијата"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4712,6 +4722,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6018,7 +6032,7 @@ msgstr "нема опис"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7919,46 +7933,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Саб"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Само структура"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Само структура"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9807,6 +9822,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "Промени го името на табелата во "
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Саб"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
142
po/mn.po
142
po/mn.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: mongolian <mn@li.org>\n"
|
||||
@ -48,7 +48,7 @@ msgstr "Хайх"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -65,7 +65,7 @@ msgstr "Хайх"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -857,14 +857,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Файл уншигдахгүй байна"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1471,37 +1471,37 @@ msgstr "секундэд"
|
||||
msgid "Font size"
|
||||
msgstr "Үсгийн хэмжээ"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1894,7 +1894,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1909,40 +1909,40 @@ msgstr ""
|
||||
"нь ихэвчлэн цэгтэй таслалын (;) алдаа байдаг. Хэрэв хоосон хуудас ирвэл – "
|
||||
"энэ нь зүгээр байна"
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr ""
|
||||
"<tt>$cfg['PmaAbsoluteUri']</tt> -ыг тохиргооны файлд тохируулах хэрэгтэй!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Сервэрийн буруу индекс нь: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "%1$s сервэрийн хост буруу. Өөрийн тохиргоогоо нягтална уу."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Сервэр"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Тохиргоонд сонгогдсон буруу зөвшөөрлийн арга:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Та хувилбар %s -г %s -ээр сайжруулах хэрэгтэй эсвэл дараа."
|
||||
@ -2180,11 +2180,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Бүтэц ба өгөгдөл"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3205,7 +3205,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4326,7 +4326,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4455,19 +4455,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "%s ӨС-д шинэ хүснэгт үүсгэх"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "%s ӨС-д шинэ хүснэгт үүсгэх"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4476,6 +4476,14 @@ msgstr "%s ӨС-д шинэ хүснэгт үүсгэх"
|
||||
msgid "Export Method:"
|
||||
msgstr "Гаргах төрөл"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4607,9 +4615,11 @@ msgstr "bzip-ээр шахагдсан"
|
||||
msgid "Format:"
|
||||
msgstr "Тогтнол"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Өөрчлөлийн сонголтууд"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4702,6 +4712,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5997,7 +6011,7 @@ msgstr "тайлбаргүй"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7858,45 +7872,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Зөвхөн бүтэц"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Зөвхөн бүтэц"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
|
||||
147
po/ms.po
147
po/ms.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: malay <ms@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "Cari"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -63,7 +63,7 @@ msgstr "Cari"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -863,14 +863,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1464,37 +1464,37 @@ msgstr "Rekod"
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1878,7 +1878,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1893,38 +1893,38 @@ msgstr ""
|
||||
"php yang diterima. Dalam kebanyakan kes quote atau semicolon tertinggal.<br /"
|
||||
">Jika kamu terima laman kosong, semuanya berjalan lancar."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr ""
|
||||
"<tt>$cfg[PmaAbsoluteUri]</tt> MESTI disetkan di dalam fail konfigurasi."
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Pelayan"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
@ -2163,11 +2163,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Struktur dan data"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3186,7 +3186,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4303,7 +4303,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4428,19 +4428,21 @@ msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Cannot log in to the MySQL server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Tidak boleh log-masuk ke server MySQL"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Cipta jadual baru pada pangkalan data %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Cipta jadual baru pada pangkalan data %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4449,6 +4451,14 @@ msgstr "Cipta jadual baru pada pangkalan data %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Eksport"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4572,8 +4582,8 @@ msgstr "bzipped"
|
||||
msgid "Format:"
|
||||
msgstr "Format"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
#: libraries/display_export.lib.php:336
|
||||
msgid "Format-specific options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
@ -4655,6 +4665,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5922,7 +5936,7 @@ msgstr "tiada keterangan"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7714,46 +7728,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Sab"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Struktur sahaja"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Struktur sahaja"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9585,6 +9600,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "Tukarnama jadual ke"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Sab"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
134
po/nb.po
134
po/nb.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-11-26 12:58+0200\n"
|
||||
"Last-Translator: <sven.erik.andersen@gmail.com>\n"
|
||||
"Language-Team: norwegian <no@li.org>\n"
|
||||
@ -49,7 +49,7 @@ msgstr "Søk"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -66,7 +66,7 @@ msgstr "Søk"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -838,14 +838,14 @@ msgstr ""
|
||||
"Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen"
|
||||
"%s for måter å omgå denne begrensningen."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Fila kunne ikke leses"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1374,13 +1374,13 @@ msgstr "Sekund"
|
||||
msgid "Font size"
|
||||
msgstr "Fontstørrelse"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"Opplastingsfila er større enn upload_max_filesize direktivet definert i php."
|
||||
"ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1388,27 +1388,27 @@ msgstr ""
|
||||
"Opplastingsfila er større enn MAX_FILE_SIZE direktivet som ble spesifisert i "
|
||||
"HTML-skjemaet."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Opplastingsfila ble bare delvis opplastet."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Mangler en midlertidig mappe."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Klarte ikke å skrive fila til harddisken."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Filopplasting stoppet av utvidelse."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Ukjent feil oppstod under filopplastingen."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1796,7 +1796,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1811,12 +1811,12 @@ msgstr ""
|
||||
"som du vil få. I de fleste tilfeller så mangler det et anførselstegn eller "
|
||||
"et semikolon et sted.<br />Hvis du får en blank side så er alt ok."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Kunne ikke laste standard konfigurasjonsfil fra: %1$s"
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1824,26 +1824,26 @@ msgstr ""
|
||||
"<tt>$cfg['PmaAbsoluteUri']</tt> variabelen MÅ være innstilt i din "
|
||||
"konfigurasjonsfil!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Ugyldig tjenerindeks: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "Ugyldig tjenernavn for tjener %1$s. Kontroller din konfigurasjon."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Tjener"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Ugyldig autentiseringsmetode satt opp i konfigureringen:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Du burde oppgradere til %s %s eller nyere."
|
||||
@ -2077,11 +2077,11 @@ msgstr "data"
|
||||
msgid "structure and data"
|
||||
msgstr "struktur og data"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3146,7 +3146,7 @@ msgstr "Vis tjenerutvalg"
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Maks antall tabeller vist i tabellista"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4376,7 +4376,7 @@ msgstr "Blankt phpMyAdmin kontrollbrukerpassord for bruk av pmadb"
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "Ugyldig IP addresse: %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr "%s tillegget mangler. Kontroller din PHP konfigurasjon."
|
||||
@ -4502,19 +4502,19 @@ msgstr "Kunne ikke laste eksporttillegg, kontroller din innstallasjon!"
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Tillater låsing av tabeller for den kjørende tråden."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Opprett ny tabell i database %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Opprett ny tabell i database %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4523,6 +4523,16 @@ msgstr "Opprett ny tabell i database %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Eksporttype"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Customize default export options"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Endre standard eksportinnstillinger"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4656,9 +4666,11 @@ msgstr "Komprimert (bz2)"
|
||||
msgid "Format:"
|
||||
msgstr "Format"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Transformasjonsvalg"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4761,6 +4773,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Antall poster(spørringer) å hoppe over fra start"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6097,7 +6113,7 @@ msgstr "ingen beskrivelse"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Slavekonfigurasjon"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr "Endre eller rekonfigurer mastertjener"
|
||||
|
||||
@ -7976,45 +7992,51 @@ msgstr "Full stopp"
|
||||
msgid "Reset slave"
|
||||
msgstr "Resett slave"
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
#: server_replication.php:326
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Kun SQL tråd %s"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "Start"
|
||||
#: server_replication.php:328
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr "Kun SQL tråd %s"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "Stopp"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Kun IO tråd %s"
|
||||
|
||||
#: server_replication.php:330
|
||||
#: server_replication.php:333
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr "Kun IO tråd %s"
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr "Feilbehandling:"
|
||||
|
||||
#: server_replication.php:332
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr "Å hoppe over feil kan føre til usynkroniserte master og slave!"
|
||||
|
||||
#: server_replication.php:334
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr "Hopp over nåværende feil"
|
||||
|
||||
#: server_replication.php:335
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr "Hopp over neste"
|
||||
|
||||
#: server_replication.php:338
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr "feil."
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -10069,6 +10091,12 @@ msgstr "VIEW navn"
|
||||
msgid "Rename view to"
|
||||
msgstr "Endre tabellens navn"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Start"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "Stopp"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Display databases in a tree"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\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"
|
||||
@ -50,7 +50,7 @@ msgstr ""
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr ""
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -833,14 +833,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, possible-php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1357,37 +1357,37 @@ msgstr ""
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1764,7 +1764,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1774,37 +1774,37 @@ msgid ""
|
||||
"is fine."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, possible-php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, possible-php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, possible-php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, possible-php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
@ -2037,11 +2037,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3006,7 +3006,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4099,7 +4099,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, possible-php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4222,23 +4222,31 @@ msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, possible-php-format
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, possible-php-format
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
msgid "Export Method:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
msgid "Database(s):"
|
||||
msgstr ""
|
||||
@ -4340,8 +4348,8 @@ msgstr ""
|
||||
msgid "Format:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
#: libraries/display_export.lib.php:336
|
||||
msgid "Format-specific options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
@ -4419,6 +4427,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5640,7 +5652,7 @@ msgstr ""
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7315,45 +7327,43 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, possible-php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, possible-php-format
|
||||
msgid "IO Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
#: server_replication.php:331
|
||||
msgid "Start IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, possible-php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
|
||||
134
po/pl.po
134
po/pl.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-09-27 23:53+0200\n"
|
||||
"Last-Translator: Jarosław Głowacki <glowacki@europa.pl>\n"
|
||||
"Language-Team: polish <pl@li.org>\n"
|
||||
@ -51,7 +51,7 @@ msgstr "Szukaj"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -68,7 +68,7 @@ msgstr "Szukaj"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -863,14 +863,14 @@ msgstr ""
|
||||
"Prawdopodobnie próbowano wrzucić duży plik. Aby poznać sposoby obejścia tego "
|
||||
"limitu, proszę zapoznać się z %sdokumenacją%s."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Nie można odczytać pliku"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1492,13 +1492,13 @@ msgstr "na sekundę"
|
||||
msgid "Font size"
|
||||
msgstr "Rozmiar pisma"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"Rozmiar wrzucanego pliku jest większy niż wartość dyrektywy "
|
||||
"upload_max_filesize w php.ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1506,27 +1506,27 @@ msgstr ""
|
||||
"Rozmiar wrzucanego pliku jest więcszy niż wartość dyrektywy MAX_FILE_SIZE "
|
||||
"określonej w formularzu HTML."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Plik został przesłany jedynie częściowo."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Nie znaleziono katalogu tymczasowego."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Nie udało się zapisać pliku na dysk."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Przesłanie pliku zostało zatrzymane przez rozszerzenie."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Nieznany błąd przesyłania pliku."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1928,7 +1928,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1944,13 +1944,13 @@ msgstr ""
|
||||
"przypadków brakuje gdzieś cudzysłowu lub średnika.<br />Jeżeli otrzymasz "
|
||||
"pustą stronę, wszystko jest w porządku."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Nie udało się załadować domyślnej konfiguracji z pliku: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1958,28 +1958,28 @@ msgstr ""
|
||||
"Dyrektywa <tt>$cfg['PmaAbsoluteUri']</tt> musi być ustawiona w pliku "
|
||||
"konfiguracyjnym!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Niewłaściwy numer serwera: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"Niewłaściwa nazwa hosta serwera %1$s. Proszę przyjrzeć się konfiguracji."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Serwer"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "W konfiguracji ustawiono błędną metodę uwierzytelniania:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Zaleca się aktualizację do %s w wersji %s lub nowszej."
|
||||
@ -2221,11 +2221,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Struktura i dane"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3280,7 +3280,7 @@ msgstr "Wyświetlaj wybór serwerów"
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Maksymalna liczba tabel pokazywanych na liście tabel"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4516,7 +4516,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "Nieprawidłowy adres IP: %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4650,19 +4650,19 @@ msgstr "Nie udało się załadować modułów eksportu, proszę sprawdzić insta
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Pozwól blokować tabele dla aktualnego wątku."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Utwórz nową tabelę w bazie danych %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Utwórz nową tabelę w bazie danych %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4671,6 +4671,16 @@ msgstr "Utwórz nową tabelę w bazie danych %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Rodzaj eksportu"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Customize default export options"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Dostosuj domyślne opcje eksportu"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4802,9 +4812,11 @@ msgstr "\".bz2\""
|
||||
msgid "Format:"
|
||||
msgstr "Format"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Opcje transformacji"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4906,6 +4918,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Liczba rekordów (zapytań), które należy z początku pominąć"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6242,7 +6258,7 @@ msgstr "brak opisu"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Konfiguracja serwera podrzędnego"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr "Zmień lub skonfiguruj ponownie serwer główny"
|
||||
|
||||
@ -8191,45 +8207,51 @@ msgstr "Całkowity stop"
|
||||
msgid "Reset slave"
|
||||
msgstr "Zrestartuj serwer podrzędny"
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
#: server_replication.php:326
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Tylko wątek SQL %s"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "Start"
|
||||
#: server_replication.php:328
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr "Tylko wątek SQL %s"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "Stop"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Tylko wątek IO %s"
|
||||
|
||||
#: server_replication.php:330
|
||||
#: server_replication.php:333
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr "Tylko wątek IO %s"
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr "Błąd zarządzania:"
|
||||
|
||||
#: server_replication.php:332
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr "Pomiń bieżący błąd"
|
||||
|
||||
#: server_replication.php:335
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr "Pomiń następny"
|
||||
|
||||
#: server_replication.php:338
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr "błędy."
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -10303,6 +10325,12 @@ msgstr "Nazwa widoku"
|
||||
msgid "Rename view to"
|
||||
msgstr "Zmień nazwę tabeli na"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Start"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "Stop"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
152
po/pt.po
152
po/pt.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-07-22 02:23+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: portuguese <pt@li.org>\n"
|
||||
@ -47,7 +47,7 @@ msgstr "Pesquisar"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -64,7 +64,7 @@ msgstr "Pesquisar"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -869,14 +869,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Não foi possível ler o ficheiro"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1477,37 +1477,37 @@ msgstr "por segundo"
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1894,7 +1894,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1910,12 +1910,12 @@ msgstr ""
|
||||
"maior parte dos casos, trata-se de uma falta de aspas ou de um ponto e "
|
||||
"vírgula algures.<br />Se receber uma página em branco, está tudo correcto."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1923,26 +1923,26 @@ msgstr ""
|
||||
"A directiva <tt>$cfg['PmaAbsoluteUri']</tt> TEM que ser definida no ficheiro "
|
||||
"de configuração!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Servidor"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "deve actualizar para %s %s ou mais recente."
|
||||
@ -2181,11 +2181,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Estrutura e dados"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3221,7 +3221,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4348,7 +4348,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4474,19 +4474,21 @@ msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Cannot log in to the MySQL server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Não é possível fazer login no servidor MySQL"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Criar nova tabela na base de dados %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Criar nova tabela na base de dados %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4495,6 +4497,15 @@ msgstr "Criar nova tabela na base de dados %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Tipo de Exportação"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Opções de exportação da Base de Dados"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4619,9 +4630,11 @@ msgstr "\"Compressão bzip\""
|
||||
msgid "Format:"
|
||||
msgstr "Formato"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Opções de tranformação"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4702,6 +4715,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5983,7 +6000,7 @@ msgstr "sem Descrição"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7804,46 +7821,47 @@ msgstr "Texto Completo"
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Sab"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Somente estrutura"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Somente estrutura"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9686,6 +9704,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "Renomeia a tabela para "
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Sab"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
148
po/pt_BR.po
148
po/pt_BR.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-10-21 05:02+0200\n"
|
||||
"Last-Translator: <fabiobucior@gmail.com>\n"
|
||||
"Language-Team: brazilian_portuguese <pt_BR@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Procurar"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Procurar"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -860,14 +860,14 @@ msgstr ""
|
||||
"Você provavelmente tentou carregar um arquivo muito grande. Veja referências "
|
||||
"na %sdocumentation%s para burlar esses limites."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "O arquivo não pode ser lido"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1470,13 +1470,13 @@ msgstr "por segundo"
|
||||
msgid "Font size"
|
||||
msgstr "Tamanho da fonte"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"O arquivo carregado excede o tamanho definido na diretriz "
|
||||
"upload_max_filesize no php.ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1484,27 +1484,27 @@ msgstr ""
|
||||
"O arquivo carregado excede o tamanho definido na diretriz MAX_FILE_SIZE do "
|
||||
"formulário HTM."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Carregamento do arquivo foi apenas parcial."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Pasta temporária não encontrada."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Falhou ao salvar arquivo no disco."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Carregamento do arquivo parado pela extenção."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Erro desconhecido no carregamento do arquivo."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1902,7 +1902,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1918,40 +1918,40 @@ msgstr ""
|
||||
"dos casos, trata-se de uma falta de aspas ou de um ponto e vírgula errado."
|
||||
"<br />Se receber uma página em branco, está tudo certo."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Não foi possível carregar configuração padrão de: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr "A variável <tt>$cfg['PmaAbsoluteUri']</tt> deve ser setada"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Índice de servidor inválido: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"Nome de serivdor inválido para o servidor %1$s. Verifique suas configurações."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Servidor"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Método de autenticação inválido informado nas configurações:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Você deveria atualizar para %s %s ou posterior."
|
||||
@ -2191,11 +2191,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Estrutura e dados"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3242,7 +3242,7 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "O número de tabelas que estão abertas."
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4387,7 +4387,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4518,19 +4518,19 @@ msgstr "Não pode carregar exportação dos plugins, verifique sua instalação!
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Permitir bloquear tabelas para a processo atual."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Criar nova tabela no Banco de Dados %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Criar nova tabela no Banco de Dados %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4539,6 +4539,15 @@ msgstr "Criar nova tabela no Banco de Dados %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Tipo de exportação"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Opções de exportação do Banco de Dados"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4670,9 +4679,11 @@ msgstr "\"compactado com bzip\""
|
||||
msgid "Format:"
|
||||
msgstr "Formato"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Opções de transformação"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4768,6 +4779,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Número de registros (consultas) ignoradas no início"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6073,7 +6088,7 @@ msgstr "sem Descrição"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7986,46 +8001,47 @@ msgstr "Texto completo"
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Sab"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Somente estrutura"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Somente estrutura"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9995,6 +10011,10 @@ msgstr "Nome da VISÃO"
|
||||
msgid "Rename view to"
|
||||
msgstr "Renomear a tabela para "
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Sab"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
148
po/ro.po
148
po/ro.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-07-22 02:28+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: romanian <ro@li.org>\n"
|
||||
@ -51,7 +51,7 @@ msgstr "Caută"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -68,7 +68,7 @@ msgstr "Caută"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -875,14 +875,14 @@ msgstr ""
|
||||
"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la %"
|
||||
"sdocumentație%s pentru căi de ocolire a acestei limite."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Fișierul nu poate fi citit"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1501,11 +1501,11 @@ msgstr "pe secundă"
|
||||
msgid "Font size"
|
||||
msgstr "Dimensiune font"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr "Fișierul încărcat depășește condiția upload_max_filesize din php.ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1513,27 +1513,27 @@ msgstr ""
|
||||
"Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în "
|
||||
"formularul HTML."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Fișierul a fost încărcat numai parțial."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Lipsește un dosar temporar."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Eșec la scrierea fișierului pe disc."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Încărcarea fișierului a fost împiedicată de extensie."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Eroare necunoscută la încărcarea fișierului."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1935,7 +1935,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1951,13 +1951,13 @@ msgstr ""
|
||||
"lipsesc apostroful sau ghilimele.<br />Daca primesti o pagina goala, totul "
|
||||
"pare sa fie bine."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”"
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1965,29 +1965,29 @@ msgstr ""
|
||||
"Directiva <tt>$cfg['PmaAbsoluteUri']</tt> TREBUIE să fie stabilită în "
|
||||
"fișierul de configurare!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Index de server nevalid: „%s”"
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"Gazdă nevalidă pentru serverul %1$s. Vă rugăm să revizuiți configurația "
|
||||
"dumneavoastră."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Server"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Metodă de autentificare nevalidă stabilită în configurație:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Ar trebui sa reactualizati serverul %s %s la o versiune mai noua."
|
||||
@ -2228,11 +2228,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Structura și date"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3279,7 +3279,7 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Numărul de tabele ce sînt deschise."
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4422,7 +4422,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4553,19 +4553,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Permite blocarea tabelelor din firul curent de execuție."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Creează tabel nou în baza de date %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Creează tabel nou în baza de date %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4574,6 +4574,15 @@ msgstr "Creează tabel nou în baza de date %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Modul de export"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Opțiuni de exportare a bazei de date"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4705,9 +4714,11 @@ msgstr "cu „bzip2”"
|
||||
msgid "Format:"
|
||||
msgstr "Format"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Opțiuni de transformare"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4802,6 +4813,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Number of records(queries) to skip from start"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6136,7 +6151,7 @@ msgstr "Nu există descriere"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -8062,46 +8077,47 @@ msgstr "Tot textul"
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Dum"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Numai structura"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Numai structura"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -10062,6 +10078,10 @@ msgstr "Denumire VIZIUNE"
|
||||
msgid "Rename view to"
|
||||
msgstr "Redenumire tabel la"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Dum"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
134
po/ru.po
134
po/ru.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-07-22 02:27+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: russian <ru@li.org>\n"
|
||||
@ -51,7 +51,7 @@ msgstr "Поиск"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -68,7 +68,7 @@ msgstr "Поиск"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -871,14 +871,14 @@ msgstr ""
|
||||
"Вероятно, размер загружаемого файла слишком велик. Способы обхода данного "
|
||||
"ограничения описаны в %sдокументации%s."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Ошибка при чтении файла"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1505,13 +1505,13 @@ msgstr "в секунду"
|
||||
msgid "Font size"
|
||||
msgstr "Размер шрифта"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"Размер загружаемого файла превышает значение директивы upload_max_filesize "
|
||||
"установленное в конфигурационном файле PHP (php.ini)."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1519,27 +1519,27 @@ msgstr ""
|
||||
"Размер загружаемого файла превышает значение директивы MAX_FILE_SIZE, "
|
||||
"определенной в HTML форме."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Загруженный файл был загружен только частично."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Не найден каталог для хранения временных файлов."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Ошибка при попытке записи файла на диск."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Загрузка файла остановлена из-за расширения."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "При время загрузке файла произошла неизвестная ошибка."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1939,7 +1939,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1955,13 +1955,13 @@ msgstr ""
|
||||
"синтаксическая ошибка, например, где-то пропущена кавычка или точка с "
|
||||
"запятой.<br />Если отобразится пустая страница - все в порядке."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Невозможно загрузить изначальную конфигурацию из: "%1$s""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1969,30 +1969,30 @@ msgstr ""
|
||||
"Директива <tt>$cfg['PmaAbsoluteUri']</tt> ДОЛЖНА быть установлена в "
|
||||
"конфигурационном файле!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Неправильный номер сервера: "%s""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"Для сервера %1$s указано неверное имя хоста. Исправьте настройки заданные в "
|
||||
"конфигурационном файле phpMyAdmin."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Сервер"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
"В конфигурационном файле phpMyAdmin установлен неверный метод аутентификации:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Необходимо обновить %s до версии %s или выше."
|
||||
@ -2233,11 +2233,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Структура и данные"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3331,7 +3331,7 @@ msgstr "Отображать выбор сервера"
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Максимальное количество таблиц отображаемых в списке"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4618,7 +4618,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "Некорректно введен IP адрес: %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4752,19 +4752,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Разрешает блокировку таблиц для текущего потока"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Создать новую таблицу в базе данных %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Создать новую таблицу в базе данных %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4773,6 +4773,16 @@ msgstr "Создать новую таблицу в базе данных %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Тип экспорта"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Customize default export options"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Настройте параметры экспорта используемые по умолчанию"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4906,9 +4916,11 @@ msgstr "bzip"
|
||||
msgid "Format:"
|
||||
msgstr "Формат"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Параметры преобразований"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -5009,6 +5021,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Количество запросов пропускаемых от начала импорта"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6354,7 +6370,7 @@ msgstr "нет описания"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Настройка подчиненного сервера"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr "Изменить, или перенастроить головной сервер"
|
||||
|
||||
@ -8322,29 +8338,35 @@ msgstr "Полная остановка"
|
||||
msgid "Reset slave"
|
||||
msgstr "Сбросить подчиненный сервер"
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
#: server_replication.php:326
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "SQL только поток %s"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "Старт"
|
||||
#: server_replication.php:328
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr "SQL только поток %s"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "Стоп"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "IO только поток %s"
|
||||
|
||||
#: server_replication.php:330
|
||||
#: server_replication.php:333
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr "IO только поток %s"
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr "Управление ошибками:"
|
||||
|
||||
#: server_replication.php:332
|
||||
#: server_replication.php:340
|
||||
#, fuzzy
|
||||
#| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
@ -8352,19 +8374,19 @@ msgstr ""
|
||||
"Игнорирование ошибок может привести к рассинхронизации головного и "
|
||||
"подчинённого сервера!"
|
||||
|
||||
#: server_replication.php:334
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr "Игнорировать текущую ошибку"
|
||||
|
||||
#: server_replication.php:335
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr "Пропустить следующую"
|
||||
|
||||
#: server_replication.php:338
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr "ошибки."
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -10480,6 +10502,12 @@ msgstr "VIEW название"
|
||||
msgid "Rename view to"
|
||||
msgstr "Переименовать таблицу в"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Старт"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "Стоп"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Display databases in a tree"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
148
po/si.po
148
po/si.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-07-22 02:26+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: sinhala <si@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "සෙවීම"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "සෙවීම"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -868,14 +868,14 @@ msgstr ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "ගොනුව කියවිය නොහැක"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1487,37 +1487,37 @@ msgstr "තප්පරයකට"
|
||||
msgid "Font size"
|
||||
msgstr "ෆොන්ට් එකෙහි ප්රමාණය"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
@ -1913,7 +1913,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1929,13 +1929,13 @@ msgstr ""
|
||||
"semicolon is missing somewhere.<br />If you receive a blank page, everything "
|
||||
"is fine."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Could not load default configuration from: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1943,27 +1943,27 @@ msgstr ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Invalid server index: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "Invalid hostname for server %1$s. Please review your configuration."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "සර්වරය"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Invalid authentication method set in configuration:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "You should upgrade to %s %s or later."
|
||||
@ -2202,11 +2202,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "සැකිල්ල සහ දත්ත"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3252,7 +3252,7 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "The number of tables that are open."
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4387,7 +4387,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4517,19 +4517,19 @@ msgstr "Could not load export plugins, please check your installation!"
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Allows locking tables for the current thread."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "%s දත්තගබඩාවේ නව වගුවක් සාදන්න"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "%s දත්තගබඩාවේ නව වගුවක් සාදන්න"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4538,6 +4538,15 @@ msgstr "%s දත්තගබඩාවේ නව වගුවක් සාදන
|
||||
msgid "Export Method:"
|
||||
msgstr "අපනයන වර්ගය"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "දත්තගබඩා අපනයන විකල්ප"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4669,9 +4678,11 @@ msgstr "\"bzipp ගතකරන ලදි\""
|
||||
msgid "Format:"
|
||||
msgstr "ආකෘතිය"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Transformation options"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4766,6 +4777,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Number of records(queries) to skip from start"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6068,7 +6083,7 @@ msgstr "no description"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7955,46 +7970,47 @@ msgstr "සම්පූර්ණ පාඨය"
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "සෙනසුරාදා"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Structure only"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Structure only"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9947,6 +9963,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "වගුව බවට නම වෙනස් කරන්න"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "සෙනසුරාදා"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
148
po/sk.po
148
po/sk.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-07-22 02:26+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: slovak <sk@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Hľadať"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Hľadať"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -871,14 +871,14 @@ msgstr ""
|
||||
"Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si "
|
||||
"prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Súbor sa nedá prečítať"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1497,37 +1497,37 @@ msgstr "za sekundu"
|
||||
msgid "Font size"
|
||||
msgstr "Veľkosť písma"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1925,7 +1925,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1941,13 +1941,13 @@ msgstr ""
|
||||
"chýbajúcu úvodzovku alebo bodkočiarku.<br />Ak dostanete iba prázdnu "
|
||||
"stránku, všetko je v poriadku."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Nepodarilo sa načítať prednastavenú konfiguráciu zo súboru: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1955,27 +1955,27 @@ msgstr ""
|
||||
"Direktíva <tt>$cfg['PmaAbsoluteUri']</tt> v konfiguračnom súbore MUSÍ byť "
|
||||
"nastavená!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Chybný index serveru: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "Chybný názov hostu pre server %1$s. Prosím, skontrolujte konfiguráciu."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Server"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "V konfigurácii je nastavená nesprávna autentifikačná metóda:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Mali by ste aktualizovať %s na verziu %s alebo vyššiu."
|
||||
@ -2215,11 +2215,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Štruktúru a dáta"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3261,7 +3261,7 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Počet práve otvorených tabuliek."
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4400,7 +4400,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4530,19 +4530,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Povolí zmaknutie tabuliek pre aktuálne vlákno."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Vytvoriť novú tabuľku v databáze %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Vytvoriť novú tabuľku v databáze %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4551,6 +4551,14 @@ msgstr "Vytvoriť novú tabuľku v databáze %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Typ vytvorených dopytov"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4684,9 +4692,11 @@ msgstr "\"bzipped\""
|
||||
msgid "Format:"
|
||||
msgstr "Formát"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Parametre transformácie"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4787,6 +4797,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Počet záznamov (príkazov), ktoré sa majú zo začiatku preskočiť"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6085,7 +6099,7 @@ msgstr "bez Popisu"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Slave replikácia"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7979,45 +7993,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "Štart"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "Stop"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Iba štruktúru"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Iba štruktúru"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9992,6 +10008,12 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "Premenovať tabuľku na"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Štart"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "Stop"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
142
po/sl.po
142
po/sl.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-11-30 17:31+0200\n"
|
||||
"Last-Translator: Domen <dbc334@gmail.com>\n"
|
||||
"Language-Team: slovenian <sl@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Iskanje"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Iskanje"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -846,14 +846,14 @@ msgstr ""
|
||||
"Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si "
|
||||
"%sdokumentacijo%s za načine, kako obiti to omejitev."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Ne morem prebrati datoteke"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1383,11 +1383,11 @@ msgstr "Sekunda"
|
||||
msgid "Font size"
|
||||
msgstr "Velikost pisave"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr "Naložena datotek presega napotek upload_max_filesize v php.ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1395,27 +1395,27 @@ msgstr ""
|
||||
"Naložena datotek presega napotek MAX_FILE_SIZE, ki je bil določen v obrazcu "
|
||||
"HTML."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Naložena datoteka je bila naložena samo delno."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Manjka začasna mapa."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Pisanje datoteke na disk je spodletelo."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Nalaganje datoteke je ustavila razširitev."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Neznana napaka pri nalaganju datoteke."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1809,7 +1809,7 @@ msgstr "Za grafikone je potrebna razširitev GD."
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr "Za zaslonske namige grafikonov je potreben kodirnik JSON."
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1825,12 +1825,12 @@ msgstr ""
|
||||
"večini primerov gre za manjkajoči narekovaj ali podpičje.<br />Če dobite "
|
||||
"prazno stran, je vse v redu."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Ne morem naložiti privzete konfiguracije iz: %1$s"
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1838,28 +1838,28 @@ msgstr ""
|
||||
"Ukaz <tt>$cfg['PmaAbsoluteUri']</tt> MORA biti določen v konfiguracijski "
|
||||
"datoteki!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Neveljaven indeks strežnika: %s"
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"Neveljavno ime gostitelja za strežnik %1$s. Prosim, preglejte svojo "
|
||||
"konfiguracijo."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Strežnik"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Neveljaven način overitve določen v konfiguracijski datoteki:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "%s bi morali nadgraditi na različico %s ali novejšo."
|
||||
@ -2092,11 +2092,11 @@ msgstr "podatki"
|
||||
msgid "structure and data"
|
||||
msgstr "struktura in podatki"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr "Hitro - prikaži kar najmanj možnosti za konfiguriranje"
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr "Po meri - prikaži vse mogoče možnosti za konfiguriranje"
|
||||
|
||||
@ -3113,7 +3113,7 @@ msgstr "Prikaži izbiro strežnikov"
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Največje število tabel prikazanih na seznamu tabel"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4326,7 +4326,7 @@ msgstr "Počisti geslo krmilnega uporabnika phpMyAdmin med uporabo pmadb"
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "Napačen IP-naslov: %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr "Razširitev %s manjka. Prosimo, preverite vašo konfiguracijo PHP."
|
||||
@ -4454,23 +4454,39 @@ msgstr ""
|
||||
"Ne morem naložiti vtičnikov za izvoz, prosimo, preverite vašo namestitev!"
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
#, fuzzy
|
||||
#| msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Izvažanje zbirk podatkov na trenutnem strežniku"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, php-format
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Izvažanje tabel v zbirki podatkov \"%s\""
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, php-format
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Izvažanje vrstic v tabeli \"%s\""
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
msgid "Export Method:"
|
||||
msgstr "Način izvoza:"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
#, fuzzy
|
||||
#| msgid "Quick - display only the minimal options to configure"
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr "Hitro - prikaži kar najmanj možnosti za konfiguriranje"
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Custom - display all possible options to configure"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Po meri - prikaži vse mogoče možnosti za konfiguriranje"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
msgid "Database(s):"
|
||||
msgstr "Zbirke podatkov:"
|
||||
@ -4576,8 +4592,10 @@ msgstr "bzipano"
|
||||
msgid "Format:"
|
||||
msgstr "Oblika:"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Format-Specific Options:"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Možnosti odvisne od oblike:"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
@ -4667,6 +4685,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Število vrstic, ki jih naj preskočim od prve vrstice:"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr "Možnosti odvisne od oblike:"
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5992,7 +6014,7 @@ msgstr "brez opisa"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Konfiguracija podrejencev"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr "Spremeni ali ponovno konfiguriraj glavni strežnik"
|
||||
|
||||
@ -7824,47 +7846,53 @@ msgstr "Polni konec"
|
||||
msgid "Reset slave"
|
||||
msgstr "Ponovno zaženi podrejenca"
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
#: server_replication.php:326
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Nit SQL samo %s"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "Začetek"
|
||||
#: server_replication.php:328
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr "Nit SQL samo %s"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "Ustavi"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Nit IO samo %s"
|
||||
|
||||
#: server_replication.php:330
|
||||
#: server_replication.php:333
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr "Nit IO samo %s"
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr "Upravljanje napak:"
|
||||
|
||||
#: server_replication.php:332
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
"Preskakovanje napak lahko vodi v nesinhroniziran glavni strežnik in "
|
||||
"podrejenec!"
|
||||
|
||||
#: server_replication.php:334
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr "Preskoči trenutno napako"
|
||||
|
||||
#: server_replication.php:335
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr "Preskoči naslednjo"
|
||||
|
||||
#: server_replication.php:338
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr "napak."
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9843,6 +9871,12 @@ msgstr "Ime VIEW"
|
||||
msgid "Rename view to"
|
||||
msgstr "Preimenuj pogled v"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Začetek"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "Ustavi"
|
||||
|
||||
#~ msgid "Display table filter"
|
||||
#~ msgstr "Prikaži filter tabel"
|
||||
|
||||
|
||||
147
po/sq.po
147
po/sq.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-07-21 14:51+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: albanian <sq@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Kërko"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Kërko"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -866,14 +866,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "File nuk mund të lexohet"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1475,37 +1475,37 @@ msgstr "në sekondë"
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1897,7 +1897,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1913,12 +1913,12 @@ msgstr ""
|
||||
"rasteve mund t'ju mungojë një apostrofë apo një presje.<br />Nëse faqja që "
|
||||
"do t'ju hapet është bosh (e bardhë), atëhere gjithçka është në rregull."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1926,26 +1926,26 @@ msgstr ""
|
||||
"Direktiva <tt>$cfg['PmaAbsoluteUri']</tt> DUHET të përcaktohet tek file i "
|
||||
"konfigurimit!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Serveri"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Duhet të instaloni %s %s ose superior."
|
||||
@ -2182,11 +2182,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Struktura dhe të dhënat"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3214,7 +3214,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4339,7 +4339,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4466,19 +4466,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Lejon bllokimin e tabelave për thread e momentit."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Krijo një tabelë të re tek databaza %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Krijo një tabelë të re tek databaza %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4487,6 +4487,14 @@ msgstr "Krijo një tabelë të re tek databaza %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Lloji i Eksportit"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4611,9 +4619,11 @@ msgstr "\"kompresuar me bzip2\""
|
||||
msgid "Format:"
|
||||
msgstr "Formati"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Opcione të transformimeve"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4694,6 +4704,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5975,7 +5989,7 @@ msgstr "asnjë përshkrim"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7861,46 +7875,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Sht"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Vetëm struktura"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Vetëm struktura"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9739,6 +9754,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "Riemërto tabelën në"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Sht"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
148
po/sr.po
148
po/sr.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
|
||||
"Last-Translator: Michal <michal@cihar.com>\n"
|
||||
"Language-Team: serbian_cyrillic <sr@li.org>\n"
|
||||
@ -51,7 +51,7 @@ msgstr "Претраживање"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -68,7 +68,7 @@ msgstr "Претраживање"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -875,14 +875,14 @@ msgstr ""
|
||||
"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %"
|
||||
"sдокументацију%s за начине превазилажења овог ограничења."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Датотеку није могуће прочитати"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1496,13 +1496,13 @@ msgstr "у секунди"
|
||||
msgid "Font size"
|
||||
msgstr "Величина фонта"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"Послата датотека превазилази вредност директиве upload_max_filesize у php."
|
||||
"ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1510,27 +1510,27 @@ msgstr ""
|
||||
"Послата датотека превазилази вредност директиве MAX_FILE_SIZE која је "
|
||||
"наведена у HTML форми."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Послата датотека је само делимично примљена."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Недостаје привремени директоријум."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Неуспело уписивање датотеке на диск."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Пријем датотеке заустављен због екстензије."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Непозната грешка при слању датотеке."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1924,7 +1924,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1940,13 +1940,13 @@ msgstr ""
|
||||
"недостаје наводник или тачка-зарез.<br />Ако добијете празну страну, све је "
|
||||
"у реду."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1954,27 +1954,27 @@ msgstr ""
|
||||
"<tt>$cfg['PmaAbsoluteUri']</tt> директива МОРА бити подешена у "
|
||||
"конфигурационој датотеци!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Неисправан индекс сервера: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "Неисправан назив сервера %1$s. Молимо проверите своју конфигурацију."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Сервер"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Неисправан метод аутентикације је задат у конфигурацији:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Требало би да унапредите ваш %s сервер на верзију %s или новију."
|
||||
@ -2213,11 +2213,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Структура и подаци"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3265,7 +3265,7 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Број отворених табела."
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4402,7 +4402,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4535,19 +4535,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Дозвољава закључавање табела текућим процесима."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Направи нову табелу у бази %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Направи нову табелу у бази %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4556,6 +4556,15 @@ msgstr "Направи нову табелу у бази %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Тип извоза"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Опције за извоз базе"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4687,9 +4696,11 @@ msgstr "\"бзип-овано\""
|
||||
msgid "Format:"
|
||||
msgstr "Формат"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Опције трансформације"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4785,6 +4796,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Број записа (упита) које треба прескочити:"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6088,7 +6103,7 @@ msgstr "нема описа"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7989,46 +8004,47 @@ msgstr "Текст кључ"
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Суб"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Само структура"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Само структура"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9982,6 +9998,10 @@ msgstr "назив за VIEW"
|
||||
msgid "Rename view to"
|
||||
msgstr "Промени име табеле у "
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Суб"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
148
po/sr@latin.po
148
po/sr@latin.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-12-02 14:49+0200\n"
|
||||
"Last-Translator: Sasa Kostic <sasha.kostic@gmail.com>\n"
|
||||
"Language-Team: serbian_latin <sr@latin@li.org>\n"
|
||||
@ -51,7 +51,7 @@ msgstr "Pretraživanje"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -68,7 +68,7 @@ msgstr "Pretraživanje"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -865,14 +865,14 @@ msgstr ""
|
||||
"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %"
|
||||
"sdokumentaciju%s za načine prevazilaženja ovog ograničenja."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Datoteku nije moguće pročitati"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1486,13 +1486,13 @@ msgstr "u sekundi"
|
||||
msgid "Font size"
|
||||
msgstr "Veličina fonta"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"Poslata datoteka prevazilazi vrednost direktive upload_max_filesize u php."
|
||||
"ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1500,27 +1500,27 @@ msgstr ""
|
||||
"Poslata datoteka prevazilazi vrednost direktive MAX_FILE_SIZE koja je "
|
||||
"navedena u HTML formi."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Poslata datoteka je samo delimično primljena."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Nedostaje privremeni direktorijum."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Neuspelo upisivanje datoteke na disk."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Prijem datoteke zaustavljen zbog ekstenzije."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Nepoznata greška pri slanju datoteke."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1914,7 +1914,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1930,13 +1930,13 @@ msgstr ""
|
||||
"nedostaje navodnik ili tačka-zarez.<br />Ako dobijete praznu stranu, sve je "
|
||||
"u redu."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1944,27 +1944,27 @@ msgstr ""
|
||||
"<tt>$cfg['PmaAbsoluteUri']</tt> direktiva MORA biti podešena u "
|
||||
"konfiguracionoj datoteci!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Neispravan indeks servera: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "Neispravan naziv servera %1$s. Molimo proverite svoju konfiguraciju."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Server"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Neispravan metod autentikacije je zadat u konfiguraciji:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Trebalo bi da unapredite vaš %s server na verziju %s ili noviju."
|
||||
@ -2203,11 +2203,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Struktura i podaci"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3253,7 +3253,7 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Broj otvorenih tabela."
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4390,7 +4390,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4523,19 +4523,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Dozvoljava zaključavanje tabela tekućim procesima."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Napravi novu tabelu u bazi %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Napravi novu tabelu u bazi %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4544,6 +4544,15 @@ msgstr "Napravi novu tabelu u bazi %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Tip izvoza"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Opcije za izvoz baze"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4675,9 +4684,11 @@ msgstr "\"bzip-ovano\""
|
||||
msgid "Format:"
|
||||
msgstr "Format"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Opcije transformacije"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4773,6 +4784,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Broj zapisa (upita) koje treba preskočiti:"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6072,7 +6087,7 @@ msgstr "nema opisa"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7975,46 +7990,47 @@ msgstr "Tekst ključ"
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Sub"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Samo struktura"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Samo struktura"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9971,6 +9987,10 @@ msgstr "naziv za VIEW"
|
||||
msgid "Rename view to"
|
||||
msgstr "Promeni ime tabele u "
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Sub"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
149
po/sv.po
149
po/sv.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-07-21 14:48+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: swedish <sv@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Sök"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Sök"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -871,14 +871,14 @@ msgstr ""
|
||||
"Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s "
|
||||
"för metoder att gå runt denna begränsning."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Filen kunde inte läsas"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1498,12 +1498,12 @@ msgstr "per sekund"
|
||||
msgid "Font size"
|
||||
msgstr "Teckenstorlek"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"Den uppladdade filen överskrider direktivet upload_max_filesize i php.ini."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1511,27 +1511,27 @@ msgstr ""
|
||||
"Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som specificerades "
|
||||
"i HTML-formuläret."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Den uppladdade filen var endast delvis uppladdad."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Saknar en temporär katalog."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Misslyckades att skriva fil till disk."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Filuppladdning stoppades av tillägg."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Okänt fel i filuppladdning."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1933,7 +1933,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1948,13 +1948,13 @@ msgstr ""
|
||||
"som du erhåller. I de flesta fall saknas ett citationstecken eller ett "
|
||||
"semikolon någonstans.<br />Om du erhåller en tom sida är allt bra."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Kunde inte ladda standardkonfiguration från: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1962,27 +1962,27 @@ msgstr ""
|
||||
"Variabeln <tt>$cfg['PmaAbsoluteUri']</tt> MÅSTE anges i din "
|
||||
"konfigurationsfil!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Ogiltigt serverindex: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "Ogiltigt värdnamn för server %1$s. Var god granska din konfiguration."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Server"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Ogiltig metod för autentisering angiven i konfiguration:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "Du bör uppgradera till %s %s eller senare."
|
||||
@ -2225,11 +2225,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Struktur och data"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3313,7 +3313,7 @@ msgstr "Visa serverval"
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Maximalt antal tabeller som visas i tabellista"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4573,7 +4573,7 @@ msgstr "Tomt lösenord för phpMyAdmin kontrollanvändare vid användning av pma
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "Felaktig IP-adress: %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4702,19 +4702,19 @@ msgstr "Kunde inte ladda export-tillägg. Kontrollera din installation."
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Tillåter låsning av tabeller för gällande tråd."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Skapa ny tabell i databas %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Skapa ny tabell i databas %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4723,6 +4723,16 @@ msgstr "Skapa ny tabell i databas %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Export-typ"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Customize default export options"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Anpassa standardalternativ för export"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4854,9 +4864,11 @@ msgstr "\"bzippad\""
|
||||
msgid "Format:"
|
||||
msgstr "Format"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Omvandlingsparametrar"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4958,6 +4970,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Antal poster (frågor) att hoppa över från början"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6293,7 +6309,7 @@ msgstr "Ingen beskrivning"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Serverkonfiguration"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -8236,46 +8252,47 @@ msgstr "Heltext"
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Start"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Enbart struktur"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Enbart struktur"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -10352,6 +10369,10 @@ msgstr "Namn på vy"
|
||||
msgid "Rename view to"
|
||||
msgstr "Döp om tabellen till"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Start"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Display databases in a tree"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
128
po/ta.po
128
po/ta.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
|
||||
"Last-Translator: Sutharshan <sutharshan02@gmail.com>\n"
|
||||
"Language-Team: Tamil <ta@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr ""
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr ""
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -837,14 +837,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1407,37 +1407,37 @@ msgstr ""
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1819,7 +1819,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1829,37 +1829,37 @@ msgid ""
|
||||
"is fine."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
@ -2092,11 +2092,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3071,7 +3071,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4166,7 +4166,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4289,23 +4289,31 @@ msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, php-format
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, php-format
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
msgid "Export Method:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
msgid "Database(s):"
|
||||
msgstr ""
|
||||
@ -4407,8 +4415,8 @@ msgstr ""
|
||||
msgid "Format:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
#: libraries/display_export.lib.php:336
|
||||
msgid "Format-specific options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
@ -4486,6 +4494,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5713,7 +5725,7 @@ msgstr ""
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7395,45 +7407,43 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
#: server_replication.php:331
|
||||
msgid "Start IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
|
||||
138
po/te.po
138
po/te.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-11-29 17:44+0200\n"
|
||||
"Last-Translator: <veeven@gmail.com>\n"
|
||||
"Language-Team: Telugu <te@li.org>\n"
|
||||
@ -51,7 +51,7 @@ msgstr "శోధించు"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -68,7 +68,7 @@ msgstr "శోధించు"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -852,14 +852,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr ""
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1427,37 +1427,37 @@ msgstr "క్షణం"
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1843,7 +1843,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1853,37 +1853,37 @@ msgid ""
|
||||
"is fine."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
@ -2118,11 +2118,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3100,7 +3100,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4204,7 +4204,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4328,23 +4328,31 @@ msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, php-format
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, php-format
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
msgid "Export Method:"
|
||||
msgstr "ఎగుమతి పద్ధతి:"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
# మొదటి అనువాదము
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
@ -4449,8 +4457,8 @@ msgstr ""
|
||||
msgid "Format:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
#: libraries/display_export.lib.php:336
|
||||
msgid "Format-specific options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
@ -4528,6 +4536,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5779,7 +5791,7 @@ msgstr "వివరణ లేదు"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7505,47 +7517,43 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
# మొదటి అనువాదము
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "మొదలుపెట్టు"
|
||||
|
||||
# మొదటి అనువాదము
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "ఆపుము"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
#: server_replication.php:331
|
||||
msgid "Start IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9352,6 +9360,14 @@ msgstr "నామధేయమును చూపుము"
|
||||
msgid "Rename view to"
|
||||
msgstr ""
|
||||
|
||||
# మొదటి అనువాదము
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "మొదలుపెట్టు"
|
||||
|
||||
# మొదటి అనువాదము
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "ఆపుము"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Table comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
147
po/th.po
147
po/th.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: thai <th@li.org>\n"
|
||||
@ -46,7 +46,7 @@ msgstr "ค้นหา"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -63,7 +63,7 @@ msgstr "ค้นหา"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -861,14 +861,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "อ่านไฟล์ไม่ได้"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1468,37 +1468,37 @@ msgstr "ต่อวินาที"
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1883,7 +1883,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1898,37 +1898,37 @@ msgstr ""
|
||||
"อะไรหรือไม่ ลองตรวจสอบดูเครื่องหมาย quote หรือ semicolon ว่าใส่ครบหรือเปล่า<br /"
|
||||
">ถ้าคุณเห็นหน้าว่างๆ แสดงว่าทุกอย่างเป็นปกติดี"
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr "<b>ต้อง</b>กำหนดค่า <tt>$cfg['PmaAbsoluteUri']</tt> ในไฟล์คอนฟิกูเรชั่นเสียก่อน"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "เซิร์ฟเวอร์"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
@ -2167,11 +2167,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "ทั้งโครงสร้างและข้อมูล"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3200,7 +3200,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4326,7 +4326,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4453,19 +4453,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "สร้างตารางในฐานข้อมูลนี้ %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "สร้างตารางในฐานข้อมูลนี้ %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4474,6 +4474,14 @@ msgstr "สร้างตารางในฐานข้อมูลนี้
|
||||
msgid "Export Method:"
|
||||
msgstr "ส่งออก"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4597,9 +4605,11 @@ msgstr "\"bzipped\""
|
||||
msgid "Format:"
|
||||
msgstr "รูปแบบ"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "ตัวเลือกการแปลง"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4680,6 +4690,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5957,7 +5971,7 @@ msgstr "ไม่มีรายละเอียด"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7754,46 +7768,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "ส."
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "เฉพาะโครงสร้าง"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "เฉพาะโครงสร้าง"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9626,6 +9641,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "เปลี่ยนชื่อตารางเป็น"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "ส."
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
142
po/tr.po
142
po/tr.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-12-01 19:12+0200\n"
|
||||
"Last-Translator: Burak Yavuz <hitowerdigit@hotmail.com>\n"
|
||||
"Language-Team: turkish <tr@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Ara"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Ara"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -837,14 +837,14 @@ msgstr ""
|
||||
"Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu "
|
||||
"bulmak için %sbelgeden%s yararlanın."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Dosya okunamadı"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1374,12 +1374,12 @@ msgstr "Saniye"
|
||||
msgid "Font size"
|
||||
msgstr "Yazı Tipi boyutu"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"Gönderilen dosya, php.ini içindeki upload_max_filesize yönergesini aşıyor."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1387,27 +1387,27 @@ msgstr ""
|
||||
"Gönderilen dosya, HTML formu içinde belirlenmiş MAX_FILE_SIZE yönergesini "
|
||||
"aşıyor."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Gönderilen dosya sadece kısmen gönderildi."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Eksik geçici klasör."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Dosyayı diske yazma başarısız."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Dosya gönderme uzantısından dolayı durduruldu."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Dosya göndermede bilinmeyen hata oldu."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1795,7 +1795,7 @@ msgstr "Çizelgeler için GD uzantısı gerekli."
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr "Çizelge araç ipuçları için JSON kodlayıcısı gerekli."
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1811,12 +1811,12 @@ msgstr ""
|
||||
"bir yerde tırnak veya noktalı virgül eksiktir.<br />Eğer boş bir sayfa "
|
||||
"karşınıza çıkıyorsa, her şey yolunda demektir."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Varsayılan yapılandırma bundan yüklenemedi: %1$s"
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1824,28 +1824,28 @@ msgstr ""
|
||||
"<tt>$cfg['PmaAbsoluteUri']</tt> talimatı yapılandırma dosyanız içinde "
|
||||
"AYARLANMAK zorundadır!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Geçersiz sunucu indeksi: %s"
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
"%1$s sunucusu için geçersiz anamakine. Lütfen yapılandırmanızı gözden "
|
||||
"geçirin."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Sunucu"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "Yapılandırma içinde geçersiz kimlik denetimi yöntemi ayarı:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "%s %s veya sonrasına yükseltmelisiniz."
|
||||
@ -2078,11 +2078,11 @@ msgstr "veri"
|
||||
msgid "structure and data"
|
||||
msgstr "yapı ve veri"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr "Hızlı - yapılandırmak için sadece en az seçenekleri göster"
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr "Özel - yapılandırmak için tüm olası seçenekleri göster"
|
||||
|
||||
@ -3099,7 +3099,7 @@ msgstr "Sunucu seçimlerini görüntüle"
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Tablo listesinde görüntülenecek olan en fazla tablo sayısıdır"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4330,7 +4330,7 @@ msgstr "pmadb kullanan boş phpMyAdmin denetim kullanıcısı parolası"
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "Yanlış IP adresi: %s"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr "%s uzantısı eksik. Lütfen PHP yapılandırmanızı kontrol edin."
|
||||
@ -4458,23 +4458,39 @@ msgstr ""
|
||||
"Dışa aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!"
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
#, fuzzy
|
||||
#| msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Veritabanları şu anki sunucu içinde dışa aktarılıyor"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, php-format
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "\"%s\" veritabanında tablolar dışa aktarılıyor"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, php-format
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "\"%s\" tablosunda satırlar dışa aktarılıyor"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
msgid "Export Method:"
|
||||
msgstr "Dışa Aktarma Yöntemi:"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
#, fuzzy
|
||||
#| msgid "Quick - display only the minimal options to configure"
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr "Hızlı - yapılandırmak için sadece en az seçenekleri göster"
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Custom - display all possible options to configure"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Özel - yapılandırmak için tüm olası seçenekleri göster"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
msgid "Database(s):"
|
||||
msgstr "Veritabanı(ları):"
|
||||
@ -4580,8 +4596,10 @@ msgstr "bzip olarak"
|
||||
msgid "Format:"
|
||||
msgstr "Biçim:"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Format-Specific Options:"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Biçim-Belirli Seçenekler:"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
@ -4671,6 +4689,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "İlk satırdan başlayarak atlanacak satır sayısı:"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr "Biçim-Belirli Seçenekler:"
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5998,7 +6020,7 @@ msgstr "Açıklama yok"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Slave yapılandırması"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr "Master sunucuyu değiştir veya yeniden yapılandır"
|
||||
|
||||
@ -7830,45 +7852,51 @@ msgstr "Tam durdur"
|
||||
msgid "Reset slave"
|
||||
msgstr "Slave'i sıfırla"
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
#: server_replication.php:326
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Sadece SQL İşlemi %s"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "Başlat"
|
||||
#: server_replication.php:328
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr "Sadece SQL İşlemi %s"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "Durdur"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Sadece G/Ç İşlemi %s"
|
||||
|
||||
#: server_replication.php:330
|
||||
#: server_replication.php:333
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr "Sadece G/Ç İşlemi %s"
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr "Hata yönetimi:"
|
||||
|
||||
#: server_replication.php:332
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr "Hataları atlamak master ve slave'i eşitlenmemeye sürükleyebilir!"
|
||||
|
||||
#: server_replication.php:334
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr "Şu anki hatayı atla"
|
||||
|
||||
#: server_replication.php:335
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr "İleri atla"
|
||||
|
||||
#: server_replication.php:338
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr "hata."
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9853,6 +9881,12 @@ msgstr "GÖRÜNÜM adı"
|
||||
msgid "Rename view to"
|
||||
msgstr "Görünümü yeniden şuna adlandır"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Başlat"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "Durdur"
|
||||
|
||||
#~ msgid "Display table filter"
|
||||
#~ msgstr "Tablo süzgeci göster"
|
||||
|
||||
|
||||
148
po/tt.po
148
po/tt.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-07-22 02:25+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: tatarish <tt@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Ezläw"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Ezläw"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -865,14 +865,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Birem uqıp bulmadı"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1474,37 +1474,37 @@ msgstr "sekund sayın"
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
@ -1896,7 +1896,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1912,13 +1912,13 @@ msgstr ""
|
||||
"semicolon is missing somewhere.<br />If you receive a blank page, everything "
|
||||
"is fine."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1926,27 +1926,27 @@ msgstr ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız"
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Server"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "You should upgrade to %s %s or later."
|
||||
@ -2185,11 +2185,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Tözeleşen dä, eçtälegen dä"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3231,7 +3231,7 @@ msgstr ""
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "The number of tables that are open."
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Açıq toruçı tüşämä sanı."
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4366,7 +4366,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4497,19 +4497,19 @@ msgstr "Totaşmalar yökläp bulmadı, quyılışın tikşerep alası!"
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Allows locking tables for the current thread."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "%s biremlegendä yaña tüşämä yaratu"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "%s biremlegendä yaña tüşämä yaratu"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4518,6 +4518,15 @@ msgstr "%s biremlegendä yaña tüşämä yaratu"
|
||||
msgid "Export Method:"
|
||||
msgstr "Çığaru ısulı"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Biremlek saqlaw köyläneşe"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4642,9 +4651,11 @@ msgstr "\"bziple\""
|
||||
msgid "Format:"
|
||||
msgstr "Tözeleş"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Transformation options"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4730,6 +4741,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Baştan ütep kitäse yazma sanı"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6029,7 +6044,7 @@ msgstr "Açıqlamasız"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7907,46 +7922,47 @@ msgstr "Tulımäten"
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Şmb"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Tözeleşen genä"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Tözeleşen genä"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9803,6 +9819,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "Tüşämä adın üzgärtü"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Şmb"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
142
po/ug.po
142
po/ug.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-08-26 11:59+0200\n"
|
||||
"Last-Translator: <gheni@yahoo.cn>\n"
|
||||
"Language-Team: Uyghur <ug@li.org>\n"
|
||||
@ -52,7 +52,7 @@ msgstr "ئىزدەش"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -69,7 +69,7 @@ msgstr "ئىزدەش"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -843,14 +843,14 @@ msgstr ""
|
||||
"سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش "
|
||||
"چارىسىنى كۆرۈڭ."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "ھۆججەتنى ئوقۇيالمىدى"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1401,39 +1401,39 @@ msgstr "سېكنۇت"
|
||||
msgid "Font size"
|
||||
msgstr "خەتنىڭ چوڭ-كىچىكلىكى"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"سىز يۈكلىگەن ھۆججەت php.ini نىڭ ئىچىدىكى upload_max_filesize چەكلىمىسىدىن "
|
||||
"ئېشىپ كەتتى."
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr "سز يۈكلىگەن ھۆججەت HTML نىڭ MAX_FILE_SIZE چېكىدىن ئېشىپ كەتتى."
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "سىز يۈكلىگەن ھۆججەتنىڭ پەقەت بىر قىسىمىلا يۈكلەندى."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "ۋاقىتلىق ھۆججەت ساقلاش مۇندەرىجىسى تىپىلمىدى."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈلدى."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "كېڭەيتىلمە ئىسمى بۇنداق ھۆججەتلەرنى يوللاشقا بولمايدۇ."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1817,7 +1817,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1832,37 +1832,37 @@ msgstr ""
|
||||
"چىكىتلىك بەش لەردىن خاتالىق كۆرۈلىدۇ.<br /> ئەگەر سىز بىر ئاق بەت كۆرسىڭىز "
|
||||
"مەسىلە يوقلىقىنى بىلدۈرىدۇ."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى."
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr " <tt>$cfg['PmaAbsoluteUri']</tt> نى تەڭشەڭ !تەڭشەك ھۆججىتى ئىچىدىكى"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s"
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىتىنى تەشۈرۈڭ."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "مۇلازىمىتېر"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "تەڭشەك ھۆجىتى ئىچىدىكى دەلىللەش ئۇسۇلى ئۈنۈمسىز:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "%s %s ياكى ئۇنىڭدىنمۇ يۇقىرى نەشىرگە كۆتۈتىڭ."
|
||||
@ -2098,11 +2098,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "تۈزۈلىشى ۋە ئۇچۇر"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3094,7 +3094,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4203,7 +4203,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr "%s كېڭەيتىلمە كەمكەن، PHP تەڭشەك ھۆججىتىنى تەكشۈرۈپ چىقىڭ."
|
||||
@ -4328,19 +4328,21 @@ msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "Cannot log in to the MySQL server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "MySQL مۇلازىمىتېرىغا ئۇلىنالمىدى."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "ساندان %s غا جەدىۋەل قۇرۇش"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "ساندان %s غا جەدىۋەل قۇرۇش"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4349,6 +4351,14 @@ msgstr "ساندان %s غا جەدىۋەل قۇرۇش"
|
||||
msgid "Export Method:"
|
||||
msgstr "چىقىرىش"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4473,8 +4483,8 @@ msgstr "bzip پىرىسلاش"
|
||||
msgid "Format:"
|
||||
msgstr "فورماتلاش"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
#: libraries/display_export.lib.php:336
|
||||
msgid "Format-specific options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
@ -4562,6 +4572,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5817,7 +5831,7 @@ msgstr ""
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7539,45 +7553,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "تۈزىلىشىنىلا"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "تۈزىلىشىنىلا"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
|
||||
142
po/uk.po
142
po/uk.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-07-27 23:41+0200\n"
|
||||
"Last-Translator: Olexiy Zagorskyi <zalex_ua@i.ua>\n"
|
||||
"Language-Team: ukrainian <uk@li.org>\n"
|
||||
@ -51,7 +51,7 @@ msgstr "Шукати"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -68,7 +68,7 @@ msgstr "Шукати"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -849,14 +849,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr ""
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Неможливо прочитати файл"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1459,37 +1459,37 @@ msgstr "за секунду"
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1876,7 +1876,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1893,12 +1893,12 @@ msgstr ""
|
||||
"просто бракує лапок чи двокрапки. <br />Якщо Ви отримаєте порожню сторінку, "
|
||||
"- значить все в порядку."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1906,26 +1906,26 @@ msgstr ""
|
||||
"Змінна <tt>$cfg['PmaAbsoluteUri']</tt> ПОВИННА бути встановлена у Вашому "
|
||||
"конфіґураційному файлі!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Сервер"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
@ -2161,11 +2161,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Структуру і дані"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3181,7 +3181,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4294,7 +4294,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4421,19 +4421,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Дозволити блокування таблиць для біжучих потоків."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "Створити нову таблицю в БД %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "Створити нову таблицю в БД %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4442,6 +4442,14 @@ msgstr "Створити нову таблицю в БД %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "Експорт"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4566,9 +4574,11 @@ msgstr "запакувати в \"bzip\""
|
||||
msgid "Format:"
|
||||
msgstr "Формат"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Опції перетворення"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
msgid "Encoding Conversion:"
|
||||
@ -4651,6 +4661,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5917,7 +5931,7 @@ msgstr "без опису"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7756,45 +7770,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Лише структуру"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Лише структуру"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
|
||||
142
po/ur.po
142
po/ur.po
@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-05-14 12:35+0200\n"
|
||||
"Last-Translator: <monymirza@gmail.com>\n"
|
||||
"Language-Team: Urdu <ur@li.org>\n"
|
||||
@ -53,7 +53,7 @@ msgstr "تلاش"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -70,7 +70,7 @@ msgstr "تلاش"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -866,14 +866,14 @@ msgstr ""
|
||||
"You probably tried to upload too large file. Please refer to %sdocumentation%"
|
||||
"s for ways to workaround this limit."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "فائل پڑھی نہیں جا سکتی"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1415,37 +1415,37 @@ msgstr ""
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1824,7 +1824,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1834,37 +1834,37 @@ msgid ""
|
||||
"is fine."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr ""
|
||||
@ -2099,11 +2099,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "سٹرکچر اور ڈیٹا"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3088,7 +3088,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4187,7 +4187,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4310,19 +4310,21 @@ msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
msgstr ""
|
||||
#, fuzzy
|
||||
#| msgid "No tables found in database."
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "ڈیٹا بیس میں کوئی ٹیبل نہیں مِلا"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "No tables found in database."
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "ڈیٹا بیس میں کوئی ٹیبل نہیں مِلا"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "No tables found in database."
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "ڈیٹا بیس میں کوئی ٹیبل نہیں مِلا"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4331,6 +4333,14 @@ msgstr "ڈیٹا بیس میں کوئی ٹیبل نہیں مِلا"
|
||||
msgid "Export Method:"
|
||||
msgstr "برآمد"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Database"
|
||||
@ -4436,8 +4446,8 @@ msgstr ""
|
||||
msgid "Format:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
#: libraries/display_export.lib.php:336
|
||||
msgid "Format-specific options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
@ -4517,6 +4527,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5750,7 +5764,7 @@ msgstr ""
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7468,45 +7482,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "سٹرکچر صرف"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "سٹرکچر صرف"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
|
||||
134
po/uz.po
134
po/uz.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-07-22 02:31+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: uzbek_cyrillic <uz@li.org>\n"
|
||||
@ -49,7 +49,7 @@ msgstr "Қидириш"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -66,7 +66,7 @@ msgstr "Қидириш"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -865,14 +865,14 @@ msgstr ""
|
||||
"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %"
|
||||
"sдокументацияда%s келтирилган."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Файлни ўқиб бўлмади!!"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1501,13 +1501,13 @@ msgstr "секундига"
|
||||
msgid "Font size"
|
||||
msgstr "Шрифт ўлчами"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"Юкланаётган файл ҳажми PHP конфигурацион файлида (php.ini) кўрсатилган "
|
||||
"\"upload_max_filesize\" директиваси қийматидан катта!"
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1515,27 +1515,27 @@ msgstr ""
|
||||
"Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" "
|
||||
"директиваси қийматидан катта!"
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Юкланаётган файл фақатгина қисман юкланди."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Вақтинчалик файлларни сақлаш учун каталог топилмади."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Файлни дискка ёзишдахатолик юз берди."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Файлнинг юкланиши унинг кенгайтмаси сабали тўхтатилди."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1938,7 +1938,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1953,13 +1953,13 @@ msgstr ""
|
||||
"ни кўриб чиқинг. Кўп ҳолларда қўштирноқ ёки нуқта-вергул қолдириб кетилган "
|
||||
"бўлади.<br />Агар бўм-бўш саҳифа кўрсатилса, демак, ҳаммаси жойида."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr " \"%1$s\" файлидан андоза конфигурацияни юклаб бўлмади."
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1967,30 +1967,30 @@ msgstr ""
|
||||
"<tt>$cfg[\"PmaAbsoluteUrl\"]</tt> директиваси конфигурацион файлда созланиши "
|
||||
"ШАРТ!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Сервер рақами нотўғри: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
" %1$s сервери учун нотўғри хост номи кўрсатилган. phpMyAdmin конфигурацион "
|
||||
"файлида белгиланган созлашларни тўғирланг."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Сервер"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
"phpMyAdmin конфигурацион файлида нотўғри аутентификация усули белгиланган:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr " \"%s\" ни \"%s\" версияга ёки каттароқ версияга янгилаш зарур."
|
||||
@ -2234,11 +2234,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Тузилиши ва маълумотлари"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3331,7 +3331,7 @@ msgstr "Сервер танловини кўрсатиш"
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Жадваллар рўйхатида кўрсатиладиган жадвалларнинг максимал сони"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4616,7 +4616,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "Нотўғри IP-адрес: \"%s\""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4751,19 +4751,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Жорий оқим учун жадвални блокировку қилишга рухсат беради"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "\"%s\" маълумотлар базасида янги жадвал тузиш"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "\"%s\" маълумотлар базасида янги жадвал тузиш"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4772,6 +4772,16 @@ msgstr "\"%s\" маълумотлар базасида янги жадвал т
|
||||
msgid "Export Method:"
|
||||
msgstr "Эскпорт тури"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Customize default export options"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Экспорт афзалликларини созлаш"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4905,9 +4915,11 @@ msgstr "bzip ёрдамида сиқилган"
|
||||
msgid "Format:"
|
||||
msgstr "Формат"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "Ўгиришлар параметрлари"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -5011,6 +5023,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "Файл бошидаги эътибор бериш керак бўлмаган қаторлар (сўровлар) сони"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6363,7 +6379,7 @@ msgstr "тавсиф мавжуд эмас"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Тобе сервер конфигурацияси"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr "Бош серверни ўзгартириш ёки қайта конфигурация қилиш"
|
||||
|
||||
@ -8338,29 +8354,35 @@ msgstr "Барчасини тўхтатиш"
|
||||
msgid "Reset slave"
|
||||
msgstr "Тобе серверни тиклаш"
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
#: server_replication.php:326
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Фақат %s SQL кириш/чиқиш оқимини"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "Бошлаш"
|
||||
#: server_replication.php:328
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr "Фақат %s SQL кириш/чиқиш оқимини"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "Тўхтатиш"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Фақат %s қириш/чиқиш оқимини"
|
||||
|
||||
#: server_replication.php:330
|
||||
#: server_replication.php:333
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr "Фақат %s қириш/чиқиш оқимини"
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr "Хатоликларни бошқариш:"
|
||||
|
||||
#: server_replication.php:332
|
||||
#: server_replication.php:340
|
||||
#, fuzzy
|
||||
#| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
@ -8368,19 +8390,19 @@ msgstr ""
|
||||
"Хатолик(лар)ни ташлаб кетиш бош ва тобе серверларнинг тўла синхронизация "
|
||||
"қилинмаганлигига олиб келиши мумкин!"
|
||||
|
||||
#: server_replication.php:334
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr "Жорий хатоликларни ташлаб кетиш"
|
||||
|
||||
#: server_replication.php:335
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr "Кейингисини ташлаб кетиш"
|
||||
|
||||
#: server_replication.php:338
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr " хатоликлар."
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -10481,6 +10503,12 @@ msgstr "Ном кўриниши"
|
||||
msgid "Rename view to"
|
||||
msgstr "Кўриниш номини ўзгартириш"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Бошлаш"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "Тўхтатиш"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Display databases in a tree"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
134
po/uz@latin.po
134
po/uz@latin.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-07-22 02:30+0200\n"
|
||||
"Last-Translator: Marc Delisle <marc@infomarc.info>\n"
|
||||
"Language-Team: uzbek_latin <uz@latin@li.org>\n"
|
||||
@ -50,7 +50,7 @@ msgstr "Qidirish"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -67,7 +67,7 @@ msgstr "Qidirish"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -867,14 +867,14 @@ msgstr ""
|
||||
"Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning "
|
||||
"usullari %sdokumentatsiyada%s keltirilgan."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "Faylni o‘qib bo‘lmadi!!"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1507,13 +1507,13 @@ msgstr "sekundiga"
|
||||
msgid "Font size"
|
||||
msgstr "Shrift o‘lchami"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
"Yuklanayotgan fayl hajmi PHP konfiguratsion faylida (php.ini) ko‘rsatilgan "
|
||||
"\"upload_max_filesize\" direktivasi qiymatidan katta!"
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
@ -1521,27 +1521,27 @@ msgstr ""
|
||||
"Yuklanayotgan fayl hajmi HTML formada ko‘rsatilgan \"MAX_FILE_SIZE\" "
|
||||
"direktivasi qiymatidan katta!"
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Yuklanayotgan fayl faqatgina qisman yuklandi."
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Vaqtinchalik fayllarni saqlash uchun katalog topilmadi."
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "Faylni diskka yozishdaxatolik yuz berdi."
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "Faylning yuklanishi uning kengaytmasi sabali to‘xtatildi."
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi."
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1944,7 +1944,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1960,13 +1960,13 @@ msgstr ""
|
||||
"nuqta-vergul qoldirib ketilgan bo‘ladi.<br />Agar bo‘m-bo‘sh sahifa "
|
||||
"ko‘rsatilsa, demak, hammasi joyida."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr " \"%1$s\" faylidan andoza konfiguratsiyani yuklab bo‘lmadi."
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
@ -1974,31 +1974,31 @@ msgstr ""
|
||||
"<tt>$cfg[\"PmaAbsoluteUrl\"]</tt> direktivasi konfiguratsion faylda "
|
||||
"sozlanishi SHART!"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "Server raqami noto‘g‘ri: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr ""
|
||||
" %1$s serveri uchun noto‘g‘ri xost nomi ko‘rsatilgan. phpMyAdmin "
|
||||
"konfiguratsion faylida belgilangan sozlashlarni to‘g‘irlang."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "Server"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr ""
|
||||
"phpMyAdmin konfiguratsion faylida noto‘g‘ri autentifikatsiya usuli "
|
||||
"belgilangan:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr " \"%s\" ni \"%s\" versiyaga yoki kattaroq versiyaga yangilash zarur."
|
||||
@ -2242,11 +2242,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "Tuzilishi va ma`lumotlari"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3341,7 +3341,7 @@ msgstr "Server tanlovini ko‘rsatish"
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "Jadvallar ro‘yxatida ko‘rsatiladigan jadvallarning maksimal soni"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4637,7 +4637,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "Noto‘g‘ri IP-adres: \"%s\""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4772,19 +4772,19 @@ msgstr ""
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "Joriy oqim uchun jadvalni blokirovku qilishga ruxsat beradi"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "\"%s\" ma`lumotlar bazasida yangi jadval tuzish"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "\"%s\" ma`lumotlar bazasida yangi jadval tuzish"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4793,6 +4793,16 @@ msgstr "\"%s\" ma`lumotlar bazasida yangi jadval tuzish"
|
||||
msgid "Export Method:"
|
||||
msgstr "Eskport turi"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#, fuzzy
|
||||
#| msgid "Customize default export options"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "Eksport afzalliklarini sozlash"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4926,9 +4936,11 @@ msgstr "bzip yordamida siqilgan"
|
||||
msgid "Format:"
|
||||
msgstr "Format"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "O‘girishlar parametrlari"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -5033,6 +5045,10 @@ msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr ""
|
||||
"Fayl boshidagi e`tibor berish kerak bo‘lmagan qatorlar (so‘rovlar) soni"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -6393,7 +6409,7 @@ msgstr "tavsif mavjud emas"
|
||||
msgid "Slave configuration"
|
||||
msgstr "Tobе sеrvеr konfiguratsiyasi"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr "Bosh sеrvеrni o‘zgartirish yoki qayta konfiguratsiya qilish"
|
||||
|
||||
@ -8386,29 +8402,35 @@ msgstr "Barchasini to‘xtatish"
|
||||
msgid "Reset slave"
|
||||
msgstr "Tobе sеrvеrni tiklash"
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
#: server_replication.php:326
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "Faqat %s SQL kirish/chiqish oqimini"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "Boshlash"
|
||||
#: server_replication.php:328
|
||||
#, fuzzy
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr "Faqat %s SQL kirish/chiqish oqimini"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "To‘xtatish"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "Faqat %s qirish/chiqish oqimini"
|
||||
|
||||
#: server_replication.php:330
|
||||
#: server_replication.php:333
|
||||
#, fuzzy
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr "Faqat %s qirish/chiqish oqimini"
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr "Xatoliklarni boshqarish:"
|
||||
|
||||
#: server_replication.php:332
|
||||
#: server_replication.php:340
|
||||
#, fuzzy
|
||||
#| msgid "Skipping error(s) might lead into unsynchronized master and slave!"
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
@ -8416,19 +8438,19 @@ msgstr ""
|
||||
"Xatolik(lar)ni tashlab kеtish bosh va tobе sеrvеrlarning to‘la "
|
||||
"sinxronizatsiya qilinmaganligiga olib kеlishi mumkin!"
|
||||
|
||||
#: server_replication.php:334
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr "Joriy xatoliklarni tashlab kеtish"
|
||||
|
||||
#: server_replication.php:335
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr "Kеyingisini tashlab kеtish"
|
||||
|
||||
#: server_replication.php:338
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr " xatoliklar."
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -10547,6 +10569,12 @@ msgstr "Nom ko‘rinishi"
|
||||
msgid "Rename view to"
|
||||
msgstr "Ko‘rinish nomini o‘zgartirish"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Boshlash"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "To‘xtatish"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Display databases in a tree"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
215
po/zh_CN.po
215
po/zh_CN.po
@ -3,14 +3,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"PO-Revision-Date: 2010-11-22 09:26+0200\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-12-08 05:44+0200\n"
|
||||
"Last-Translator: shanyan baishui <Siramizu@gmail.com>\n"
|
||||
"Language-Team: chinese_simplified <zh_CN@li.org>\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Pootle 2.0.5\n"
|
||||
|
||||
@ -49,7 +49,7 @@ msgstr "搜索"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -66,7 +66,7 @@ msgstr "搜索"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -406,11 +406,11 @@ msgstr "您最少要选择显示一列"
|
||||
|
||||
#: db_qbe.php:182
|
||||
msgid "Switch to"
|
||||
msgstr ""
|
||||
msgstr "切换到"
|
||||
|
||||
#: db_qbe.php:186
|
||||
msgid "visual builder"
|
||||
msgstr ""
|
||||
msgstr "可视化查询生成器"
|
||||
|
||||
#: db_qbe.php:219 libraries/db_structure.lib.php:95
|
||||
#: libraries/display_tbl.lib.php:860
|
||||
@ -541,10 +541,10 @@ msgid "Delete"
|
||||
msgstr "删除"
|
||||
|
||||
#: db_search.php:260
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
#| msgid "Delete tracking data for this table"
|
||||
msgid "Delete the matches for the %s table?"
|
||||
msgstr "删除追踪数据"
|
||||
msgstr "删除 %s 表中所有匹配的记录?"
|
||||
|
||||
#: db_search.php:273
|
||||
#, php-format
|
||||
@ -830,14 +830,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。"
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "无法读取文件"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1090,7 +1090,7 @@ msgstr "选择要显示的字段"
|
||||
|
||||
#: js/messages.php:98
|
||||
msgid "Add an option for column "
|
||||
msgstr ""
|
||||
msgstr "给字段添加选项 "
|
||||
|
||||
#: js/messages.php:101
|
||||
msgid "Generate password"
|
||||
@ -1359,37 +1359,37 @@ msgstr "秒"
|
||||
msgid "Font size"
|
||||
msgstr "字号"
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr "上传文件的大小超过 php.ini 文件中 upload_max_filesize 的限制。"
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr "上传文件的大小超过 HTML 表单中指定的 MAX_FILE_SIZE 值。"
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "仅上传了文件的一部分内容。"
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "找不到临时文件夹。"
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr "将文件写入磁盘失败。"
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr "因扩展而停止文件上传。"
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr "上传文件时发生未知错误。"
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
"html#faq1_11@Documentation]FAQ 1.11[/a]"
|
||||
@ -1768,7 +1768,7 @@ msgstr "绘制图表需要 GD 扩展。"
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr "绘制图表气泡提示需要 JSON 扩展。"
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1782,37 +1782,37 @@ msgstr ""
|
||||
"常的错误都是因为某处漏了引号或分号。<br />如果您看到的是一个空白页,则代表没"
|
||||
"有任何问题。"
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, php-format
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "无法加载默认配置: %1$s"
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr "必须在您的配置文件中设置 <tt>$cfg['PmaAbsoluteUri']</tt> !"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, php-format
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "无效的服务器索引: %s"
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "无效的主机名 %1$s,请检查配置文件。"
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "服务器"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "配置文件中设置的认证方式无效:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "您应升级到 %s %s 或更高版本。"
|
||||
@ -2045,11 +2045,11 @@ msgstr "数据"
|
||||
msgid "structure and data"
|
||||
msgstr "结构和数据"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr "快速 - 仅显示必须的设置项"
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr "自定义 - 显示所有可用的设置项"
|
||||
|
||||
@ -2956,7 +2956,7 @@ msgstr "部分导入:允许中断"
|
||||
#: libraries/config/messages.inc.php:238 libraries/config/messages.inc.php:245
|
||||
#: libraries/import/csv.php:26 libraries/import/ldi.php:39
|
||||
msgid "Do not abort on INSERT error"
|
||||
msgstr ""
|
||||
msgstr "不在发生插入错误时中断"
|
||||
|
||||
#: libraries/config/messages.inc.php:239 libraries/config/messages.inc.php:247
|
||||
#: libraries/import/csv.php:25 libraries/import/ldi.php:38
|
||||
@ -3040,10 +3040,9 @@ msgid "Display servers selection"
|
||||
msgstr "显示服务器选择"
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
#, fuzzy
|
||||
#| msgid "Maximum number of tables displayed in table list"
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgstr "在数据表列表中最多显示的数据表个数"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr "显示快速搜索框的最少数据表数量"
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
msgid "String that separates databases into different tree levels"
|
||||
@ -4184,7 +4183,7 @@ msgstr "使用 PMA 数据时控制用户的密码不能为空"
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr "%s 是一个错误的 IP 地址"
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr "缺少 %s 扩展。请检查 PHP 配置。"
|
||||
@ -4308,23 +4307,36 @@ msgid "Could not load export plugins, please check your installation!"
|
||||
msgstr "无法加载导出插件,请检查安装!"
|
||||
|
||||
#: libraries/display_export.lib.php:87
|
||||
msgid "Exporting databases in the current server"
|
||||
msgstr "导出当前服务器中的数据库"
|
||||
#| msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "正在从当前服务器中导出数据库"
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, php-format
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgstr "导出数据库“%s”中的数据表"
|
||||
#| msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "正在导出数据库“%s”中的数据表"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, php-format
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgstr "导出数据表“%s”中的记录"
|
||||
#| msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "正在导出数据表“%s”中的记录"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
msgid "Export Method:"
|
||||
msgstr "导出方式"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
#| msgid "Quick - display only the minimal options to configure"
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr "快速 - 显示最少的选项"
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
#| msgid "Custom - display all possible options to configure"
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr "自定义 - 显示所有可用的选项"
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
msgid "Database(s):"
|
||||
msgstr "数据库:"
|
||||
@ -4428,8 +4440,9 @@ msgstr "bzip 压缩"
|
||||
msgid "Format:"
|
||||
msgstr "格式:"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
#: libraries/display_export.lib.php:336
|
||||
#| msgid "Format-Specific Options:"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "格式特定选项:"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
@ -4511,6 +4524,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "从首行起要跳过的行数:"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr "格式特定选项:"
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -4565,16 +4582,14 @@ msgid "Options"
|
||||
msgstr "选项"
|
||||
|
||||
#: libraries/display_tbl.lib.php:558 libraries/display_tbl.lib.php:568
|
||||
#, fuzzy
|
||||
#| msgid "Partial Texts"
|
||||
msgid "Partial texts"
|
||||
msgstr "部分文字"
|
||||
msgstr "部分内容"
|
||||
|
||||
#: libraries/display_tbl.lib.php:559 libraries/display_tbl.lib.php:572
|
||||
#, fuzzy
|
||||
#| msgid "Full Texts"
|
||||
msgid "Full texts"
|
||||
msgstr "完整文字"
|
||||
msgstr "完整内容"
|
||||
|
||||
#: libraries/display_tbl.lib.php:585
|
||||
msgid "Relational key"
|
||||
@ -5781,7 +5796,7 @@ msgstr "无说明"
|
||||
msgid "Slave configuration"
|
||||
msgstr "从服务器配置"
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr "修改或重新配置主服务器"
|
||||
|
||||
@ -6012,7 +6027,7 @@ msgstr "当前页所引用的表不存在了。您是否想要删除这些引用
|
||||
|
||||
#: libraries/schema/User_Schema.class.php:469
|
||||
msgid "Toggle scratchboard"
|
||||
msgstr "切换刮板"
|
||||
msgstr "切换草稿板"
|
||||
|
||||
#. l10n: Text direction, use either ltr or rtl
|
||||
#: libraries/select_lang.lib.php:482
|
||||
@ -6554,7 +6569,6 @@ msgstr ""
|
||||
"phpMyAdmin 中设置的时间要更短。"
|
||||
|
||||
#: main.php:279
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Your PHP parameter [a@http://php.net/manual/en/session.configuration."
|
||||
#| "php#ini.session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that "
|
||||
@ -6564,10 +6578,8 @@ msgid ""
|
||||
"Login cookie store is lower than cookie validity configured in phpMyAdmin, "
|
||||
"because of this, your login will expire sooner than configured in phpMyAdmin."
|
||||
msgstr ""
|
||||
"您的 PHP 配置参数 [a@http://php.net/manual/en/session.configuration.php#ini."
|
||||
"session.gc-maxlifetime@]session.gc_maxlifetime (外链,英文)[/a] 短于您在 "
|
||||
"phpMyAdmin 中设置的 Cookies 有效期,因此您的登录会话有效期将会比您在 "
|
||||
"phpMyAdmin 中设置的时间要更短。"
|
||||
"phpMyAdmin 中所设置的登录 cookie 存储小于 cookie 有效期,因此您的登录过期时间将会比您在 phpMyAdmin "
|
||||
"中设置的时间要更短。"
|
||||
|
||||
#: main.php:287
|
||||
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
|
||||
@ -6628,10 +6640,9 @@ msgid "Filter"
|
||||
msgstr "快速搜索"
|
||||
|
||||
#: navigation.php:292
|
||||
#, fuzzy
|
||||
#| msgid "Alter table order by"
|
||||
msgid "filter tables by name"
|
||||
msgstr "更改表的排序,根据"
|
||||
msgstr "请输入部分或完整的表名"
|
||||
|
||||
#: navigation.php:293 setup/frames/index.inc.php:219
|
||||
msgid "Clear"
|
||||
@ -6695,10 +6706,9 @@ msgid "Import/Export coordinates for PDF schema"
|
||||
msgstr "为 PDF 大纲导入/导出坐标"
|
||||
|
||||
#: pmd_general.php:122
|
||||
#, fuzzy
|
||||
#| msgid "Submit Query"
|
||||
msgid "Build Query"
|
||||
msgstr "提交查询"
|
||||
msgstr "生成查询"
|
||||
|
||||
#: pmd_general.php:127
|
||||
msgid "Move Menu"
|
||||
@ -6721,54 +6731,47 @@ msgid "Delete relation"
|
||||
msgstr "删除关系"
|
||||
|
||||
#: pmd_general.php:462 pmd_general.php:521
|
||||
#, fuzzy
|
||||
#| msgid "Relation deleted"
|
||||
msgid "Relation operator"
|
||||
msgstr "已删除关系"
|
||||
msgstr "关系运算符"
|
||||
|
||||
#: pmd_general.php:472 pmd_general.php:531 pmd_general.php:654
|
||||
#: pmd_general.php:771
|
||||
#, fuzzy
|
||||
#| msgid "Export"
|
||||
msgid "Except"
|
||||
msgstr "导出"
|
||||
msgstr "EXCEPT"
|
||||
|
||||
#: pmd_general.php:478 pmd_general.php:537 pmd_general.php:660
|
||||
#: pmd_general.php:777
|
||||
#, fuzzy
|
||||
#| msgid "in query"
|
||||
msgid "subquery"
|
||||
msgstr "查询中"
|
||||
msgstr "子查询"
|
||||
|
||||
#: pmd_general.php:482 pmd_general.php:578
|
||||
#, fuzzy
|
||||
#| msgid "Rename view to"
|
||||
msgid "Rename to"
|
||||
msgstr "将视图改名为"
|
||||
msgstr "改名为"
|
||||
|
||||
#: pmd_general.php:484 pmd_general.php:583
|
||||
#, fuzzy
|
||||
#| msgid "User name"
|
||||
msgid "New name"
|
||||
msgstr "用户名"
|
||||
msgstr "新名称"
|
||||
|
||||
#: pmd_general.php:487 pmd_general.php:702
|
||||
#, fuzzy
|
||||
#| msgid "Create"
|
||||
msgid "Aggregate"
|
||||
msgstr "创建"
|
||||
msgstr "聚合"
|
||||
|
||||
#: pmd_general.php:489 pmd_general.php:509 pmd_general.php:631
|
||||
#: pmd_general.php:644 pmd_general.php:707 pmd_general.php:761
|
||||
#: tbl_select.php:135
|
||||
msgid "Operator"
|
||||
msgstr "操作符"
|
||||
msgstr "运算符"
|
||||
|
||||
#: pmd_general.php:812
|
||||
#, fuzzy
|
||||
#| msgid "Table options"
|
||||
msgid "Active options"
|
||||
msgstr "表选项"
|
||||
msgstr "当前选项"
|
||||
|
||||
#: pmd_help.php:26
|
||||
msgid "To select relation, click :"
|
||||
@ -7545,7 +7548,7 @@ msgstr "控制从服务器:"
|
||||
|
||||
#: server_replication.php:323
|
||||
msgid "Full start"
|
||||
msgstr "全部开始"
|
||||
msgstr "全部启动"
|
||||
|
||||
#: server_replication.php:323
|
||||
msgid "Full stop"
|
||||
@ -7555,45 +7558,47 @@ msgstr "全部停止"
|
||||
msgid "Reset slave"
|
||||
msgstr "重置从服务器"
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr "仅%s SQL 线程"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Start"
|
||||
msgstr "开始"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr "停止"
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
msgstr "仅%s IO 线程"
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "仅启动 SQL 线程"
|
||||
|
||||
#: server_replication.php:330
|
||||
#: server_replication.php:328
|
||||
#| msgid "SQL Thread %s only"
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr "仅停止 SQL 线程"
|
||||
|
||||
#: server_replication.php:331
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "仅启动 IO 线程"
|
||||
|
||||
#: server_replication.php:333
|
||||
#| msgid "IO Thread %s only"
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr "仅停止 IO 线程"
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr "错误管理:"
|
||||
|
||||
#: server_replication.php:332
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr "忽略错误可能导致主从服务器间不同步!"
|
||||
|
||||
#: server_replication.php:334
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr "忽略当前错误"
|
||||
|
||||
#: server_replication.php:335
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr "忽略下"
|
||||
|
||||
#: server_replication.php:338
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr "个错误。"
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -8353,20 +8358,18 @@ msgid "Query type"
|
||||
msgstr "查询方式"
|
||||
|
||||
#: server_status.php:709 server_status.php:710
|
||||
#, fuzzy
|
||||
#| msgid "Show query box"
|
||||
msgid "Show query chart"
|
||||
msgstr "显示查询框"
|
||||
msgstr "显示查询图表"
|
||||
|
||||
#: server_status.php:714 server_status.php:715
|
||||
#, fuzzy
|
||||
#| msgid "Hide query box"
|
||||
msgid "Hide query chart"
|
||||
msgstr "隐藏查询框"
|
||||
msgstr "隐藏查询图表"
|
||||
|
||||
#: server_status.php:717
|
||||
msgid "Note: Generating the query chart can take a long time."
|
||||
msgstr ""
|
||||
msgstr "注意:生成查询图表可能需要一定的时间。"
|
||||
|
||||
#: server_status.php:855
|
||||
msgid "Replication status"
|
||||
@ -9468,6 +9471,12 @@ msgstr "视图名"
|
||||
msgid "Rename view to"
|
||||
msgstr "将视图改名为"
|
||||
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "开始"
|
||||
|
||||
#~ msgid "Stop"
|
||||
#~ msgstr "停止"
|
||||
|
||||
#~ msgid "Display table filter"
|
||||
#~ msgstr "显示数据表快速搜索框"
|
||||
|
||||
|
||||
147
po/zh_TW.po
147
po/zh_TW.po
@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: phpMyAdmin 3.4.0-alpha3-dev\n"
|
||||
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
|
||||
"POT-Creation-Date: 2010-12-04 15:22+0100\n"
|
||||
"POT-Creation-Date: 2010-12-07 09:47-0500\n"
|
||||
"PO-Revision-Date: 2010-11-05 14:13+0200\n"
|
||||
"Last-Translator: <terrytsai123@hotmail.com>\n"
|
||||
"Language-Team: chinese_traditional <zh_TW@li.org>\n"
|
||||
@ -49,7 +49,7 @@ msgstr "搜索"
|
||||
#: db_structure.php:522 js/messages.php:59 libraries/Config.class.php:1220
|
||||
#: libraries/Theme_Manager.class.php:305
|
||||
#: libraries/auth/cookie.auth.lib.php:279 libraries/common.lib.php:1304
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:544
|
||||
#: libraries/common.lib.php:2269 libraries/core.lib.php:541
|
||||
#: libraries/display_change_password.lib.php:72
|
||||
#: libraries/display_create_table.lib.php:61
|
||||
#: libraries/display_export.lib.php:352 libraries/display_import.lib.php:267
|
||||
@ -66,7 +66,7 @@ msgstr "搜索"
|
||||
#: server_binlog.php:128 server_privileges.php:665 server_privileges.php:1705
|
||||
#: server_privileges.php:2062 server_privileges.php:2109
|
||||
#: server_privileges.php:2149 server_replication.php:233
|
||||
#: server_replication.php:316 server_replication.php:339
|
||||
#: server_replication.php:316 server_replication.php:347
|
||||
#: server_synchronize.php:1207 tbl_change.php:322 tbl_change.php:1077
|
||||
#: tbl_change.php:1114 tbl_indexes.php:252 tbl_operations.php:262
|
||||
#: tbl_operations.php:299 tbl_operations.php:501 tbl_operations.php:563
|
||||
@ -847,14 +847,14 @@ msgid ""
|
||||
"s for ways to workaround this limit."
|
||||
msgstr "你正嘗試上載大容量檔案,請查看此 %s文件%s 如何略過此限制."
|
||||
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:566
|
||||
#: libraries/File.class.php:676
|
||||
#: import.php:277 import.php:330 libraries/File.class.php:501
|
||||
#: libraries/File.class.php:611
|
||||
msgid "File could not be read"
|
||||
msgstr "讀案無法讀取"
|
||||
|
||||
#: import.php:285 import.php:294 import.php:313 import.php:322
|
||||
#: libraries/File.class.php:746 libraries/File.class.php:754
|
||||
#: libraries/File.class.php:770 libraries/File.class.php:778
|
||||
#: libraries/File.class.php:681 libraries/File.class.php:689
|
||||
#: libraries/File.class.php:705 libraries/File.class.php:713
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You attempted to load file with unsupported compression (%s). Either support "
|
||||
@ -1456,37 +1456,37 @@ msgstr "每秒"
|
||||
msgid "Font size"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:315
|
||||
#: libraries/File.class.php:310
|
||||
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:318
|
||||
#: libraries/File.class.php:313
|
||||
msgid ""
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
|
||||
"the HTML form."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:321
|
||||
#: libraries/File.class.php:316
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:324
|
||||
#: libraries/File.class.php:319
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:327
|
||||
#: libraries/File.class.php:322
|
||||
msgid "Failed to write file to disk."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:330
|
||||
#: libraries/File.class.php:325
|
||||
msgid "File upload stopped by extension."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:333
|
||||
#: libraries/File.class.php:328
|
||||
msgid "Unknown error in file upload."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/File.class.php:624
|
||||
#: libraries/File.class.php:559
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Error moving the uploaded file, see [a@./Documentation."
|
||||
@ -1878,7 +1878,7 @@ msgstr ""
|
||||
msgid "JSON encoder is needed for chart tooltips."
|
||||
msgstr ""
|
||||
|
||||
#: libraries/common.inc.php:576
|
||||
#: libraries/common.inc.php:575
|
||||
msgid ""
|
||||
"phpMyAdmin was unable to read your configuration file!<br />This might "
|
||||
"happen if PHP finds a parse error in it or PHP cannot find the file.<br /"
|
||||
@ -1892,39 +1892,39 @@ msgstr ""
|
||||
"誤都來自某處漏了引號或分別.<br />如果按下連結後出現空白頁, 即代表沒有任何問"
|
||||
"題."
|
||||
|
||||
#: libraries/common.inc.php:587
|
||||
#: libraries/common.inc.php:586
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Could not load default configuration from: \"%1$s\""
|
||||
msgid "Could not load default configuration from: %1$s"
|
||||
msgstr "無法讀取預設設定: \"%1$s\""
|
||||
|
||||
#: libraries/common.inc.php:592
|
||||
#: libraries/common.inc.php:591
|
||||
msgid ""
|
||||
"The <tt>$cfg['PmaAbsoluteUri']</tt> directive MUST be set in your "
|
||||
"configuration file!"
|
||||
msgstr " 必須在設定檔內設定 <tt>$cfg['PmaAbsoluteUri']</tt> !"
|
||||
|
||||
#: libraries/common.inc.php:622
|
||||
#: libraries/common.inc.php:621
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Invalid server index: \"%s\""
|
||||
msgid "Invalid server index: %s"
|
||||
msgstr "伺服器索引錯誤: \"%s\""
|
||||
|
||||
#: libraries/common.inc.php:629
|
||||
#: libraries/common.inc.php:628
|
||||
#, php-format
|
||||
msgid "Invalid hostname for server %1$s. Please review your configuration."
|
||||
msgstr "伺服器 %1$s 主機名稱錯誤, 請翻查設定值."
|
||||
|
||||
#: libraries/common.inc.php:638 libraries/config/messages.inc.php:482
|
||||
#: libraries/common.inc.php:637 libraries/config/messages.inc.php:482
|
||||
#: libraries/header.inc.php:115 main.php:168 test/theme.php:56
|
||||
msgid "Server"
|
||||
msgstr "伺服器"
|
||||
|
||||
#: libraries/common.inc.php:826
|
||||
#: libraries/common.inc.php:825
|
||||
msgid "Invalid authentication method set in configuration:"
|
||||
msgstr "於設定內設定錯誤認證方式:"
|
||||
|
||||
#: libraries/common.inc.php:929
|
||||
#: libraries/common.inc.php:928
|
||||
#, php-format
|
||||
msgid "You should upgrade to %s %s or later."
|
||||
msgstr "您應該更新到 %s %s 或之後."
|
||||
@ -2165,11 +2165,11 @@ msgstr ""
|
||||
msgid "structure and data"
|
||||
msgstr "結構與資料"
|
||||
|
||||
#: libraries/config.values.php:99 libraries/display_export.lib.php:113
|
||||
#: libraries/config.values.php:99
|
||||
msgid "Quick - display only the minimal options to configure"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config.values.php:100 libraries/display_export.lib.php:129
|
||||
#: libraries/config.values.php:100
|
||||
msgid "Custom - display all possible options to configure"
|
||||
msgstr ""
|
||||
|
||||
@ -3204,7 +3204,7 @@ msgid "Display servers selection"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:267
|
||||
msgid "Mimimum number of tables to display table filter"
|
||||
msgid "Minimum number of tables to display the table filter box"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/config/messages.inc.php:268
|
||||
@ -4336,7 +4336,7 @@ msgstr ""
|
||||
msgid "Incorrect IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/core.lib.php:265
|
||||
#: libraries/core.lib.php:262
|
||||
#, php-format
|
||||
msgid "The %s extension is missing. Please check your PHP configuration."
|
||||
msgstr ""
|
||||
@ -4466,19 +4466,19 @@ msgstr "無法讀取載入的外掛程式, 請檢查安裝程序!"
|
||||
#: libraries/display_export.lib.php:87
|
||||
#, fuzzy
|
||||
#| msgid "Allows locking tables for the current thread."
|
||||
msgid "Exporting databases in the current server"
|
||||
msgid "Exporting databases from the current server"
|
||||
msgstr "容許鎖上現時連線之資料表."
|
||||
|
||||
#: libraries/display_export.lib.php:89
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting tables in the database \"%s\""
|
||||
msgid "Exporting tables from \"%s\" database"
|
||||
msgstr "建立新資料表於資料庫 %s"
|
||||
|
||||
#: libraries/display_export.lib.php:91
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Create table on database %s"
|
||||
msgid "Exporting rows in the table \"%s\""
|
||||
msgid "Exporting rows from \"%s\" table"
|
||||
msgstr "建立新資料表於資料庫 %s"
|
||||
|
||||
#: libraries/display_export.lib.php:97
|
||||
@ -4487,6 +4487,14 @@ msgstr "建立新資料表於資料庫 %s"
|
||||
msgid "Export Method:"
|
||||
msgstr "輸出方式"
|
||||
|
||||
#: libraries/display_export.lib.php:113
|
||||
msgid "Quick - display only the minimal options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:129
|
||||
msgid "Custom - display all possible options"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_export.lib.php:137
|
||||
#, fuzzy
|
||||
#| msgid "Databases"
|
||||
@ -4611,9 +4619,11 @@ msgstr "\"bzipped\""
|
||||
msgid "Format:"
|
||||
msgstr "格式"
|
||||
|
||||
#: libraries/display_export.lib.php:336 libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
#: libraries/display_export.lib.php:336
|
||||
#, fuzzy
|
||||
#| msgid "Transformation options"
|
||||
msgid "Format-specific options:"
|
||||
msgstr "轉換方式選項"
|
||||
|
||||
#: libraries/display_export.lib.php:345 libraries/display_import.lib.php:260
|
||||
#, fuzzy
|
||||
@ -4699,6 +4709,10 @@ msgstr ""
|
||||
msgid "Number of rows to skip, starting from the first row:"
|
||||
msgstr "開始時略過多少行記錄 (語法)"
|
||||
|
||||
#: libraries/display_import.lib.php:250
|
||||
msgid "Format-Specific Options:"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/display_select_lang.lib.php:44
|
||||
#: libraries/display_select_lang.lib.php:45 setup/frames/index.inc.php:71
|
||||
msgid "Language"
|
||||
@ -5993,7 +6007,7 @@ msgstr "沒有說明"
|
||||
msgid "Slave configuration"
|
||||
msgstr ""
|
||||
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:345
|
||||
#: libraries/replication_gui.lib.php:53 server_replication.php:353
|
||||
msgid "Change or reconfigure master server"
|
||||
msgstr ""
|
||||
|
||||
@ -7828,46 +7842,47 @@ msgstr ""
|
||||
msgid "Reset slave"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325
|
||||
#, php-format
|
||||
msgid "SQL Thread %s only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
#, fuzzy
|
||||
msgid "Start"
|
||||
msgstr "Sat"
|
||||
|
||||
#: server_replication.php:325 server_replication.php:326
|
||||
msgid "Stop"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:326
|
||||
#, php-format
|
||||
msgid "IO Thread %s only"
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start SQL Thread only"
|
||||
msgstr "只有結構"
|
||||
|
||||
#: server_replication.php:328
|
||||
msgid "Stop SQL Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:330
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
#: server_replication.php:331
|
||||
#, fuzzy
|
||||
#| msgid "Structure only"
|
||||
msgid "Start IO Thread only"
|
||||
msgstr "只有結構"
|
||||
|
||||
#: server_replication.php:332
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:334
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:335
|
||||
msgid "Skip next"
|
||||
#: server_replication.php:333
|
||||
msgid "Stop IO Thread only"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:338
|
||||
msgid "Error management:"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:340
|
||||
msgid "Skipping errors might lead into unsynchronized master and slave!"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:342
|
||||
msgid "Skip current error"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:343
|
||||
msgid "Skip next"
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:346
|
||||
msgid "errors."
|
||||
msgstr ""
|
||||
|
||||
#: server_replication.php:353
|
||||
#: server_replication.php:361
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This server is not configured as slave in a replication process. Would you "
|
||||
@ -9697,6 +9712,10 @@ msgstr ""
|
||||
msgid "Rename view to"
|
||||
msgstr "將檢視表改名為"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Start"
|
||||
#~ msgstr "Sat"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Displaying Column Comments"
|
||||
#~ msgid "Display table filter"
|
||||
|
||||
@ -134,8 +134,11 @@ fi
|
||||
if [ -f ./scripts/compress-js ] ; then
|
||||
echo "* Compressing javascript files"
|
||||
./scripts/compress-js
|
||||
rm -rf sources
|
||||
fi
|
||||
|
||||
echo "* Removing unneeded files"
|
||||
|
||||
# Remove test directory from package to avoid Path disclosure messages
|
||||
# if someone runs /test/wui.php and there are test failures
|
||||
rm -rf test
|
||||
@ -143,6 +146,11 @@ rm -rf test
|
||||
# Remove javascript compiler, no need to ship it
|
||||
rm -rf scripts/google-javascript-compiler/
|
||||
|
||||
# Remove scripts which are not useful for user
|
||||
for s in compress-js create-release.sh generate-mo mergepo.py php2gettext.sh remove_control_m.sh update-po upload-release ; do
|
||||
rm -f scripts/$s
|
||||
done
|
||||
|
||||
# Remove git metadata
|
||||
rm -rf .git
|
||||
find . -name .gitignore -print0 | xargs -0 -r rm -f
|
||||
@ -158,14 +166,20 @@ for kit in $KITS ; do
|
||||
# Cleanup translations
|
||||
cd phpMyAdmin-$version-$kit
|
||||
scripts/lang-cleanup.sh $kit
|
||||
rm -f scripts/lang-cleanup.sh
|
||||
cd ..
|
||||
|
||||
# Remove tar file possibly left from previous run
|
||||
rm -f $name.tar
|
||||
|
||||
# Prepare distributions
|
||||
for comp in $COMPRESSIONS ; do
|
||||
case $comp in
|
||||
tbz|tgz|txz)
|
||||
echo "* Creating $name.tar"
|
||||
tar cf $name.tar $name
|
||||
if [ ! -f $name.tar ] ; then
|
||||
echo "* Creating $name.tar"
|
||||
tar cf $name.tar $name
|
||||
fi
|
||||
if [ $comp = tbz ] ; then
|
||||
echo "* Creating $name.tar.bz2"
|
||||
bzip2 -9k $name.tar
|
||||
@ -178,7 +192,6 @@ for kit in $KITS ; do
|
||||
echo "* Creating $name.tar.gz"
|
||||
gzip -9c $name.tar > $name.tar.gz
|
||||
fi
|
||||
rm $name.tar
|
||||
;;
|
||||
zip)
|
||||
echo "* Creating $name.zip"
|
||||
@ -196,6 +209,9 @@ for kit in $KITS ; do
|
||||
echo "WARNING: ignoring compression '$comp', not known!"
|
||||
;;
|
||||
esac
|
||||
|
||||
# Cleanup
|
||||
rm -f $name.tar
|
||||
done
|
||||
|
||||
# Remove directory with current dist set
|
||||
|
||||
@ -1,35 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
export LANG=C
|
||||
set -e
|
||||
|
||||
# Simple script to find unused message strings by Michal Čihař
|
||||
|
||||
tmp1=`mktemp`
|
||||
tmp2=`mktemp`
|
||||
grep -o '^\$\<str[A-Z][a-zA-Z0-9_]*\>' libraries/messages.inc.php \
|
||||
| tr -d '$' \
|
||||
| grep -Ev '^str(Transformation_|ShowStatus)' | sort -u > $tmp1
|
||||
grep -ho '\<str[A-Z][a-zA-Z0-9_]*\>' `find . -type f -a -name '*.php' -a -not -path '*/libraries/messages.inc.php' -a -not -path '*/js/messages.php' -a -not -path '*.js'` \
|
||||
| grep -Ev '^str(Transformation_|ShowStatus|Setup)' | sort -u > $tmp2
|
||||
|
||||
echo Please note that you need to check results of this script, it doesn\'t
|
||||
echo understand PHP, it only tries to find what looks like message name.
|
||||
|
||||
echo
|
||||
echo Used messages not present in messages file:
|
||||
echo '(this contains generated messages and composed message names, so these'
|
||||
echo 'are not necessary a errors!)'
|
||||
echo
|
||||
|
||||
# filter out known false positives
|
||||
diff $tmp1 $tmp2 | awk '/^>/ {print $2}' | grep -Ev '(strEncto|strXkana|strDBLink|strPrivDesc|strPrivDescProcess|strTableListOptions|strMissingParameter|strAttribute|strDoSelectAll)'
|
||||
|
||||
echo
|
||||
echo Not used messages present in messages file:
|
||||
echo
|
||||
|
||||
diff $tmp1 $tmp2 | awk '/^</ {print $2}' | grep -Ev '(strConfig.*_(desc|name)|strConfigForm_|strConfigFormset_)'
|
||||
|
||||
|
||||
rm -f $tmp1 $tmp2
|
||||
@ -322,8 +322,16 @@ if (! isset($GLOBALS['repl_clear_scr'])) {
|
||||
echo ' <ul>';
|
||||
echo ' <li><a href="'. $slave_control_full_link . '">' . (($server_slave_replication[0]['Slave_IO_Running'] == 'No' || $server_slave_replication[0]['Slave_SQL_Running'] == 'No') ? __('Full start') : __('Full stop')) . ' </a></li>';
|
||||
echo ' <li><a href="'. $slave_control_reset_link . '">' . __('Reset slave') . '</a></li>';
|
||||
echo ' <li><a href="' . $slave_control_sql_link . '">' . sprintf(__('SQL Thread %s only'), ($server_slave_replication[0]['Slave_SQL_Running'] == 'No' ? __('Start') : __('Stop'))) . '</a></li>';
|
||||
echo ' <li><a href="' . $slave_control_io_link . '">' . sprintf(__('IO Thread %s only'), ($server_slave_replication[0]['Slave_IO_Running'] == 'No' ? __('Start') : __('Stop'))) . '</a></li>';
|
||||
if ($server_slave_replication[0]['Slave_SQL_Running'] == 'No') {
|
||||
echo ' <li><a href="' . $slave_control_sql_link . '">' . __('Start SQL Thread only') . '</a></li>';
|
||||
} else {
|
||||
echo ' <li><a href="' . $slave_control_sql_link . '">' . __('Stop SQL Thread only') . '</a></li>';
|
||||
}
|
||||
if ($server_slave_replication[0]['Slave_IO_Running'] == 'No') {
|
||||
echo ' <li><a href="' . $slave_control_io_link . '">' . __('Start IO Thread only') . '</a></li>';
|
||||
} else {
|
||||
echo ' <li><a href="' . $slave_control_io_link . '">' . __('Stop IO Thread only') . '</a></li>';
|
||||
}
|
||||
echo ' </ul>';
|
||||
echo ' </div>';
|
||||
echo ' </li>';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user